diff options
author | infirit <[email protected]> | 2015-01-12 14:28:42 +0100 |
---|---|---|
committer | infirit <[email protected]> | 2015-01-12 22:26:39 +0100 |
commit | 3ae60ca0f55378d707bbcec9adbd58165075bd82 (patch) | |
tree | b7daca7dfb9ffcc3ffcbb32f82388d2741624f70 | |
parent | 5d95db7549762c52bf861c19460ac1319c0f3f05 (diff) | |
download | mate-themes-3ae60ca0f55378d707bbcec9adbd58165075bd82.tar.bz2 mate-themes-3ae60ca0f55378d707bbcec9adbd58165075bd82.tar.xz |
Traditional*: Update for CSD apps
* Add dropshadow
* No border-radius if tiled
3 files changed, 31 insertions, 0 deletions
diff --git a/desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css b/desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css index e3b66935..9381dea4 100644 --- a/desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css @@ -1807,9 +1807,19 @@ GtkInfoBar:last-child, border-width: 0px; border-radius: 7px 7px 0 0; border-style: solid; + box-shadow: 0 2px 8px 3px alpha(black, 0.5); margin: 0px; } +.window-frame:backdrop { + box-shadow: 0 2px 5px 1px alpha(black, 0.5); +} + +.window-frame.tiled { + border-radius: 0; + background-color: @theme_bg_color; +} + /************ * Popovers * ************/ diff --git a/desktop-themes/TraditionalOk/gtk-3.0/gtk-widgets.css b/desktop-themes/TraditionalOk/gtk-3.0/gtk-widgets.css index e3b66935..14d74a1a 100644 --- a/desktop-themes/TraditionalOk/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/TraditionalOk/gtk-3.0/gtk-widgets.css @@ -1807,9 +1807,20 @@ GtkInfoBar:last-child, border-width: 0px; border-radius: 7px 7px 0 0; border-style: solid; + box-shadow: 0 2px 8px 3px alpha(black, 0.5); margin: 0px; } + +.window-frame:backdrop { + box-shadow: 0 2px 5px 1px alpha(black, 0.5); +} + +.window-frame.tiled { + border-radius: 0; + background-color: @theme_bg_color; +} + /************ * Popovers * ************/ diff --git a/desktop-themes/TraditionalOkTest/gtk-3.0/gtk-widgets.css b/desktop-themes/TraditionalOkTest/gtk-3.0/gtk-widgets.css index e3b66935..9381dea4 100644 --- a/desktop-themes/TraditionalOkTest/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/TraditionalOkTest/gtk-3.0/gtk-widgets.css @@ -1807,9 +1807,19 @@ GtkInfoBar:last-child, border-width: 0px; border-radius: 7px 7px 0 0; border-style: solid; + box-shadow: 0 2px 8px 3px alpha(black, 0.5); margin: 0px; } +.window-frame:backdrop { + box-shadow: 0 2px 5px 1px alpha(black, 0.5); +} + +.window-frame.tiled { + border-radius: 0; + background-color: @theme_bg_color; +} + /************ * Popovers * ************/ |