Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Berg <benjamin@sipsolutions.net>2008-03-21 22:24:53 (GMT)
committer Benjamin Berg <benjamin@sipsolutions.net>2008-03-21 22:24:53 (GMT)
commit69ee4bec2df6e8aaadc86d43470172e4e8c93f68 (patch)
tree0930a618a5eec774790d4f7c6016ed3c1638695f
parent932dec5a830bd9cf24809d3a497b143c5ed5d21b (diff)
Forgot about the special SugarFrame style. It also needs to define the parent colors.
-rw-r--r--gtk/theme/gtkrc.em23
1 files changed, 19 insertions, 4 deletions
diff --git a/gtk/theme/gtkrc.em b/gtk/theme/gtkrc.em
index d79f1b8..b7f8941 100644
--- a/gtk/theme/gtkrc.em
+++ b/gtk/theme/gtkrc.em
@@ -417,6 +417,11 @@ style "spinbutton"
style "frame"
{
bg[NORMAL] = $toolbar_grey
+
+ engine "sugar" {
+ parent_bg_color = $toolbar_grey
+ parent_fg_color = $white
+ }
}
style "notebook-tab"
@@ -478,6 +483,15 @@ style "toolbar"
{
xthickness = 0
ythickness = 0
+
+ bg[NORMAL] = $toolbar_grey
+ bg[INSENSITIVE] = $toolbar_grey
+ base[INSENSITIVE] = $toolbar_grey
+
+ engine "sugar" {
+ parent_fg_color = $white
+ parent_bg_color = $toolbar_grey
+ }
}
style "toolbox"
@@ -764,8 +778,9 @@ widget_class "*<GtkToolbar>" style "toolbar"
widget_class "*<SugarTrayIcon>*" style "trayicon"
# Widgets that should get the background color from the parent
-widget_class "*<GtkEventBox>" style "parent-bg"
-widget_class "*<GtkLayout>" style "parent-bg"
-widget_class "*<GtkViewport>" style "parent-bg"
-widget_class "*<GtkDrawingArea>" style "parent-bg"
+widget_class "*<GtkEventBox>" style "parent-bg"
+widget_class "*<GtkLayout>" style "parent-bg"
+widget_class "*<GtkViewport>" style "parent-bg"
+widget_class "*<GtkDrawingArea>" style "parent-bg"
+widget_class "*<GtkScrolledWindow>" style "parent-bg"