[gnome-themes-standard] Don't round corners of tiled windows



commit b13089f61e825e7c612a40581b1b267d1a16e2b2
Author: Matthias Clasen <mclasen redhat com>
Date:   Sun Oct 6 00:42:32 2013 -0400

    Don't round corners of tiled windows
    
    A tiled window should completely fill its half of the screen.
    Rounded corners are unexpected here. GTK+ 3.11 sets style classes
    to identify tiled and maximized windows, use those.

 themes/Adwaita/gtk-3.0/gtk-widgets.css |   14 ++++++++++++++
 1 files changed, 14 insertions(+), 0 deletions(-)
---
diff --git a/themes/Adwaita/gtk-3.0/gtk-widgets.css b/themes/Adwaita/gtk-3.0/gtk-widgets.css
index 55ef90e..3cd36bc 100644
--- a/themes/Adwaita/gtk-3.0/gtk-widgets.css
+++ b/themes/Adwaita/gtk-3.0/gtk-widgets.css
@@ -3997,6 +3997,14 @@ GtkBubbleWindow .toolbar {
     border-radius: 7px 7px 0px 0px;
 }
 
+.tiled .titlebar {
+    border-radius: 0;
+}
+
+.maximized .titlebar {
+    border-radius: 0;
+}
+
 /* this is the default titlebar that is added by GTK
  * when client-side decorations are in use and the application
  * did not set a custom titlebar.
@@ -4079,10 +4087,16 @@ GtkBubbleWindow .toolbar {
     margin: 10px;
 }
 
+.window-frame.tiled {
+    border-radius: 0;
+    background-color: @theme_bg_color;
+}
+
 .window-frame:backdrop {
     box-shadow: 0 2px 5px 1px @wm_shadow;
 }
 
+
 /**********************
  * Fallback Mode Panel
  **********************/


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]