diff options
author | raveit65 <[email protected]> | 2015-02-10 20:23:58 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2015-02-10 20:24:37 +0100 |
commit | 9a1ef9c69bf02e12bb09881290a4eafdbd51e7d8 (patch) | |
tree | d5c8386f8d88051c0a648a2f422d18bfa637d5e1 | |
parent | a74dbf487dda7b9d5f6a4268a6de1eec8884b3bb (diff) | |
download | mate-themes-9a1ef9c69bf02e12bb09881290a4eafdbd51e7d8.tar.bz2 mate-themes-9a1ef9c69bf02e12bb09881290a4eafdbd51e7d8.tar.xz |
ContrastHigh GTK3: fix menu item hover borders
-rw-r--r-- | desktop-themes/ContrastHigh/gtk-3.0/gtk-widgets.css | 23 |
1 files changed, 18 insertions, 5 deletions
diff --git a/desktop-themes/ContrastHigh/gtk-3.0/gtk-widgets.css b/desktop-themes/ContrastHigh/gtk-3.0/gtk-widgets.css index c88b586a..2c9944a7 100644 --- a/desktop-themes/ContrastHigh/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/ContrastHigh/gtk-3.0/gtk-widgets.css @@ -516,18 +516,30 @@ GtkComboBox .button { color: @theme_fg_color; } -.menuitem { +.menuitem, +.menu .menuitem { color: @theme_fg_color; background-color: transparent; } -.menuitem:insensitive { +.menuitem:insensitive, +.menu .menuitem:insensitive { color: @theme_button_insensitive_fg; } -.menuitem:hover { - color: @theme_base_color; +.menubar .menuitem:hover { + color: @theme_fg_color; + background-color: @theme_active_color; +} + +.menu .menuitem:hover { + color: @theme_fg_color; background-color: @theme_active_color; + border-style: solid; + border-left-width: 1px; + border-right-width: 1px; + border-left-color: @theme_fg_color; + border-right-color: @theme_fg_color; } .menu .menuitem { @@ -538,7 +550,8 @@ GtkComboBox .button { padding: 3px 5px; } -.menuitem.separator { +.menuitem.separator, +.menu .menuitem.separator { -GtkMenuItem-horizontal-padding: 0; } |