raleigh: Don't set bg-color for all widgets

Just set oit for things that need it.
(FIXME: Buttons should probably not need it, but spinbuttons and
treeview headers don't have a proper background without it.)
This commit is contained in:
Benjamin Otte 2012-02-02 00:04:08 +01:00
parent 95f5ca062b
commit 4dd9a73c8a

View File

@ -18,13 +18,16 @@
@define-color error_bg_color rgb (237, 54, 54);
* {
background-color: @bg_color;
color: @fg_color;
border-color: shade (@bg_color, 0.6);
padding: 2;
border-width: 0;
}
GtkWindow, .button, .slider {
background-color: @bg_color;
}
*:prelight {
background-color: shade (@bg_color, 1.05);
color: shade (@fg_color, 1.3);