diff options
author | raveit65 <[email protected]> | 2013-10-27 16:22:42 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2013-10-27 16:22:42 +0100 |
commit | f556e2ad42d28188676a0eca494f0d40ff4f70d5 (patch) | |
tree | 45c2d17a9780ce1eda126a1a1ea82d619e5f5b7b /desktop-themes/ContrastHigh | |
parent | 9b4401babb89fdcb78c05f11791b1601b231b1cb (diff) | |
download | mate-themes-f556e2ad42d28188676a0eca494f0d40ff4f70d5.tar.bz2 mate-themes-f556e2ad42d28188676a0eca494f0d40ff4f70d5.tar.xz |
ContrastHigh: fix insensitive menu items
Diffstat (limited to 'desktop-themes/ContrastHigh')
-rw-r--r-- | desktop-themes/ContrastHigh/gtk-3.0/gtk-widgets.css | 30 |
1 files changed, 13 insertions, 17 deletions
diff --git a/desktop-themes/ContrastHigh/gtk-3.0/gtk-widgets.css b/desktop-themes/ContrastHigh/gtk-3.0/gtk-widgets.css index 4634a8d4..7eda046f 100644 --- a/desktop-themes/ContrastHigh/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/ContrastHigh/gtk-3.0/gtk-widgets.css @@ -501,38 +501,34 @@ GtkComboBox .button { /********* * Menus * *********/ +.menu { + border-style: solid; + border-color: @theme_fg_color; + border-width: 1px; + + color: @theme_fg_color; +} + .menuitem { color: @theme_fg_color; + background-color: transparent; } .menuitem:insensitive { color: @theme_button_insensitive_fg; } -.menubar .menuitem { - padding: 3px 5px; -} - -.menubar .menuitem:hover { - background-color: @theme_active_color; +.menuitem:hover { color: @theme_base_color; + background-color: @theme_active_color; } .menu .menuitem { padding: 4px; } -.menu .menuitem:hover { - background-color: @theme_active_color; - color: @theme_base_color; -} - -.menu { - border-style: solid; - border-color: @theme_fg_color; - border-width: 1px; - - color: @theme_fg_color; +.menubar .menuitem { + padding: 3px 5px; } .menuitem.separator { |