我有一个具有以下布局的 Python/Gtk+3.0 应用程序
Gtk.Window
Gtk.Box
CustomClass : Gtk.ScrolledWindow
Gtk.ViewPort # created automatically
Gtk.Grid
Gtk.Box # many of this
Gtk.ScrollBar # created automatically
Gtk.ScrollBar # created automatically
现在我正在尝试为它设置主题,但它不起作用,我想更改我的 Customclass 的背景,但我想用 CSS 更改它。
我正在努力:
#CustomClass,
#CustomClass > GtkBox,
#CustomClass > GtkViewPort,
#CustomClass > GtkGrid,
GtkScrolledWindow GtkGrid {
background-color: #000;
}
我在哪里可以找到一个很好的主题参考?当我查看系统中安装的主题时,我会看到类似
.custom-class { /* ... */}
GtkSomething.custom { /* ... */}
我如何将这种“类”选择器应用到来自代码和林间空地的我的元素,我正在使用两者。