diff options
author | raveit65 <[email protected]> | 2015-08-13 21:17:26 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2015-08-13 21:18:32 +0200 |
commit | e7447f66c1c5839a2e29cebbaa4884139a77e7c5 (patch) | |
tree | 8bc3faa3c1fb88225988c93e6792076bc8be603d /desktop-themes/TraditionalOkTest | |
parent | a2d9562ee8030111d50670f0217dadf270c5f547 (diff) | |
download | mate-themes-e7447f66c1c5839a2e29cebbaa4884139a77e7c5.tar.bz2 mate-themes-e7447f66c1c5839a2e29cebbaa4884139a77e7c5.tar.xz |
GTK3 traditional themes: do not use a background for insensitive buttons
Diffstat (limited to 'desktop-themes/TraditionalOkTest')
-rw-r--r-- | desktop-themes/TraditionalOkTest/gtk-3.0/gtk-widgets.css | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/desktop-themes/TraditionalOkTest/gtk-3.0/gtk-widgets.css b/desktop-themes/TraditionalOkTest/gtk-3.0/gtk-widgets.css index 504217f9..dc950b83 100644 --- a/desktop-themes/TraditionalOkTest/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/TraditionalOkTest/gtk-3.0/gtk-widgets.css @@ -823,16 +823,13 @@ GtkColorChooserWidget #add-color-button:hover { } /* Insensitive button background */ +/* Insensitive button background */ .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 */ |