diff options
author | raveit65 <[email protected]> | 2015-08-13 21:17:26 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2015-08-13 21:18:06 +0200 |
commit | 61ac79d4c46c7164abba6779034b4bc7dcae7fdd (patch) | |
tree | 351c9c40443d301b7b2944ded1ed5902cc432261 /desktop-themes/TraditionalGreen/gtk-3.0 | |
parent | 745875a33ac26e08d05f879ff8963399ecef3730 (diff) | |
download | mate-themes-61ac79d4c46c7164abba6779034b4bc7dcae7fdd.tar.bz2 mate-themes-61ac79d4c46c7164abba6779034b4bc7dcae7fdd.tar.xz |
GTK3 traditional themes: do not use a background for insensitive buttons
Diffstat (limited to 'desktop-themes/TraditionalGreen/gtk-3.0')
-rw-r--r-- | desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css b/desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css index ee44494c..f02af2cc 100644 --- a/desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css @@ -1017,13 +1017,9 @@ GtkColorChooserWidget #add-color-button:hover { .button:insensitive, .toolbar GtkComboBox .button:insensitive, .combobox-entry .button:insensitive { - background-image: linear-gradient(to bottom, - @button_insensitive_inner_border_color 1px, - @button_insensitive_gradient_a 2px, - @button_insensitive_gradient_b 50%, - @button_insensitive_gradient_c 50%, - @button_insensitive_gradient_d); - background-color: @insensitive_bg_color; + background-image: none; + background-color: transparent; + color: @insensitive_fg_color; } /* Pushed + Insensitive button background */ |