diff options
author | raveit65 <[email protected]> | 2014-11-02 16:59:51 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2014-11-02 19:26:44 +0100 |
commit | 2d7eb177b6cdb8e1ad2df693630bf9c70be690aa (patch) | |
tree | ceb5780d0a8000eba69d7ebf9b6a14936eb52909 /desktop-themes/BlackMATE | |
parent | 0585997b31b661860be5c0764a20f9266f490574 (diff) | |
download | mate-themes-2d7eb177b6cdb8e1ad2df693630bf9c70be690aa.tar.bz2 mate-themes-2d7eb177b6cdb8e1ad2df693630bf9c70be690aa.tar.xz |
BlackMate GTK3-3.14: fix notebook background with GTK3-3.14
Diffstat (limited to 'desktop-themes/BlackMATE')
-rw-r--r-- | desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css b/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css index 0452be23..3cd71fdc 100644 --- a/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css @@ -58,9 +58,17 @@ /*************** * Base States * ***************/ -* { +.background { color: @theme_fg_color; background-color: @theme_bg_color; + border-style: none; + border-width: 0px; + border-radius: 0px; +} + +.background:backdrop { + text-shadow: none; + icon-shadow: none; } *:hover { @@ -78,9 +86,13 @@ color: @theme_selected_fg_color; } +*:selected:backdrop { + text-shadow: none; + icon-shadow: none; +} + *:insensitive { - /* no need to a different background */ - background-color: @theme_bg_color; /*@insensitive_bg_color;*/ + background-color: @less_dark_color; /*@insensitive_bg_color;*/ color: @insensitive_fg_color; border-color: @insensitive_border_color; } @@ -89,12 +101,6 @@ background-color: shade(@theme_bg_color, 0.915); } -.background { - border-style: none; - border-width: 0px; - border-radius: 0px; -} - .tooltip { padding: 4px 4px; border-style: none; |