diff options
author | Wolfgang Ulbrich <[email protected]> | 2015-10-21 17:27:09 +0200 |
---|---|---|
committer | Wolfgang Ulbrich <[email protected]> | 2015-10-21 17:27:09 +0200 |
commit | 5db8d234d12711f9f3dfb3e612af14e012a95aae (patch) | |
tree | 96b6d2d7c38c69fb0865b39fe0bb7d3d58cda8d6 /desktop-themes/Blue-Submarine | |
parent | bc900fdeba128f2425d662f473411318f477c598 (diff) | |
download | mate-themes-5db8d234d12711f9f3dfb3e612af14e012a95aae.tar.bz2 mate-themes-5db8d234d12711f9f3dfb3e612af14e012a95aae.tar.xz |
Gtk+-3.18 submarine themes: fix menu items in dropdown menus of GtkComboBox
Diffstat (limited to 'desktop-themes/Blue-Submarine')
-rw-r--r-- | desktop-themes/Blue-Submarine/gtk-3.0/menu.css | 28 |
1 files changed, 22 insertions, 6 deletions
diff --git a/desktop-themes/Blue-Submarine/gtk-3.0/menu.css b/desktop-themes/Blue-Submarine/gtk-3.0/menu.css index 35c67f45..21ea28c9 100644 --- a/desktop-themes/Blue-Submarine/gtk-3.0/menu.css +++ b/desktop-themes/Blue-Submarine/gtk-3.0/menu.css @@ -162,16 +162,32 @@ GtkTreeMenu .menuitem { border-width: 0px; } -/* Workaround for lp:949368 */ -.toolbar GtkComboBox .menuitem *, -GtkComboBox .menuitem * { - transition: all 300ms ease-out; +.toolbar GtkComboBox .menuitem, +GtkComboBox .menuitem { + transition: all 500ms ease-out; color: @menu_fg_dark_color; text-shadow: 0px 1px @menu_shadow_dark_color; } -GtkComboBox .menuitem:hover * { - background-color: shade (@theme_bg_dark_color, 1.2); +/* needed for .menuitem with gtk+-3.18 */ +GtkTreeMenu.menu .menuitem GtkCellView { + background-image: none; + background-color: transparent; + color: @menu_fg_dark_color; + text-shadow: 0px 1px @menu_shadow_dark_color; +} + +GtkTreeMenu.menu .menuitem:hover, +GtkComboBox .menuitem:hover { + background-image: -gtk-gradient (linear, + left top, left bottom, + from (shade(@menu_bg_dark_color, 2.03)), + to (shade(@menu_bg_dark_color, 1.17))); + color: shade (@theme_selected_bg_color, 1.6); + text-shadow: 0px 1px @theme_selected_shadow_color; +} + +GtkTreeMenu.menu .menuitem:hover GtkCellView { color: shade (@theme_selected_bg_color, 1.6); text-shadow: 0px 1px @theme_selected_shadow_color; } |