diff options
author | Horst3180 | 2016-09-19 18:51:19 +0200 |
---|---|---|
committer | Horst3180 | 2016-09-19 18:51:19 +0200 |
commit | 871f7752940f94f47d27a63060dd588bff5ee7e2 (patch) | |
tree | 89e96a432d67e2b9420313205cba9ad4eba5a47b /common/gtk-2.0 | |
parent | 3fd402cc39af37d113c2eeb30a9c793818c35092 (diff) | |
download | solarc-theme-871f7752940f94f47d27a63060dd588bff5ee7e2.tar.gz solarc-theme-871f7752940f94f47d27a63060dd588bff5ee7e2.tar.xz solarc-theme-871f7752940f94f47d27a63060dd588bff5ee7e2.zip |
gtk2: fix unreadable text in VMware horizon client (#628)
Diffstat (limited to 'common/gtk-2.0')
-rw-r--r-- | common/gtk-2.0/main.rc | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/common/gtk-2.0/main.rc b/common/gtk-2.0/main.rc index 5effd1f..8b8f824 100644 --- a/common/gtk-2.0/main.rc +++ b/common/gtk-2.0/main.rc @@ -2245,10 +2245,15 @@ style "chrome_menu_item" { } # Text Style -style "text" { +style "text" = "default" { engine "murrine" { textstyle = 0 } } +style "menu_text" = "menu_item" { + engine "murrine" { textstyle = 0 } +} + + style "null" { engine "pixmap" { @@ -2337,7 +2342,8 @@ widget "xfwm4-tabwin*" style "xfwm- widget "xfwm4-tabwin*GtkButton*" style "xfwm-tabwin-button" # Fixes ugly text shadows for insensitive text -widget_class "*<GtkLabel>" style "text" +widget_class "*<GtkLabel>" style "text" +widget_class "*<GtkMenu>*<GtkLabel>" style "menu_text" widget_class "*<GtkComboBox>*<GtkCellLayout>" style "text" widget_class "*<GtkNotebook>*<GtkLabel>" style "text" widget_class "*<GtkNotebook>*<GtkCellLayout>" style "text" |