diff options
author | raveit65 <[email protected]> | 2015-04-18 20:00:27 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2015-04-18 20:00:27 +0200 |
commit | 4c81017dba22531d9b13380deab7f0136e91c467 (patch) | |
tree | 61be00109ca273803741536e0a9a72036638c882 /desktop-themes/GreenLaguna/gtk-3.0 | |
parent | 3208dc2a868d492bb7f9be537f0ac153b2d11f9a (diff) | |
download | mate-themes-4c81017dba22531d9b13380deab7f0136e91c467.tar.bz2 mate-themes-4c81017dba22531d9b13380deab7f0136e91c467.tar.xz |
GreenLaguna GTK3: add missing changes from previous commit
Diffstat (limited to 'desktop-themes/GreenLaguna/gtk-3.0')
-rw-r--r-- | desktop-themes/GreenLaguna/gtk-3.0/gtk-widgets.css | 39 |
1 files changed, 34 insertions, 5 deletions
diff --git a/desktop-themes/GreenLaguna/gtk-3.0/gtk-widgets.css b/desktop-themes/GreenLaguna/gtk-3.0/gtk-widgets.css index f656d9bf..4d31cc15 100644 --- a/desktop-themes/GreenLaguna/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/GreenLaguna/gtk-3.0/gtk-widgets.css @@ -36,7 +36,7 @@ outline-style: dashed; outline-offset: 2px; outline-width: 0px; /* disable ugly focus-line */ - -gtk-icon-style: regular; /* no symbolic icons */ + /*-gtk-icon-style: regular; *//* no symbolic icons */ } /*************** @@ -153,6 +153,10 @@ border-radius: 2px; } +GtkExpander { + -gtk-icon-style: regular; +} + /**************** * Floating Bar * ****************/ @@ -536,6 +540,7 @@ GtkCalendar { } GtkScrolledWindow.frame { + -gtk-icon-style: regular; border-style: solid; border-color: @borders; border-width: 1px; @@ -971,6 +976,7 @@ GtkTreeMenu .menuitem * { * Buttons * ***********/ .button { + -gtk-icon-style: regular; /* Due to a bug somewhere in gtk or cairo, a padding of zero (or even one) doesn't work always! */ padding: 2px; @@ -2163,12 +2169,10 @@ GtkPopover .separator { /* Due to a bug somewhere in gtk or cairo, a padding of zero (or even one) doesn't work always!!! */ padding: 4px 4px 4px 4px; - border-radius: 3px; border-width: 1px; border-style: solid; text-shadow: 0 -1px black; - color: #CCD9D0; background-image: -gtk-gradient (radial, 0.5 -2.0, 2.0, @@ -2176,7 +2180,18 @@ GtkPopover .separator { from (shade(@button_gradient_color_a, 1.5)), to (shade(@button_gradient_color_b, 1.1))); } - + +.titlebar .titlebutton { + /* fake request for hardcoded icons, + to avoid usage of regular window-close button*/ + -gtk-icon-style: requested; + border-width: 0px; + border-style: none; + border-image-source: none; + background-image: none; + padding: 4px 0px 4px 0px; +} + .titlebar .titlebutton:hover, .header-bar.frame.titlebar .button.image-button.titlebutton:hover, .button.text-button.titlebutton:hover { @@ -2187,7 +2202,21 @@ GtkPopover .separator { @button_hover_gradient_color_a, @button_hover_gradient_color_b); } - + +.titlebar .titlebutton:hover { + border-width: 0px; + border-style: none; + border-image-source: none; + border-color: transparent; + background-image: none; + background-color: transparent; +} + +/* avoid double displaying of window controls */ +.titlebar .button GtkImage { + color: transparent; +} + .titlebar .titlebutton:active, .titlebar .titlebutton:active:hover, .header-bar.frame.titlebar:active, |