[gnome-themes-standard] frame: set an 1px border and not a padding



commit a44e122d691cc9f30d9ae8f7f73aaced874711c1
Author: Cosimo Cecchi <cosimoc gnome org>
Date:   Tue Mar 27 15:50:50 2012 -0400

    frame: set an 1px border and not a padding
    
    In the past, we avoided showing borders for GtkFrame widgets. Turns out
    this is incompatible with legacy applications and some of the uses we
    have for GtkFrame in GNOME apps, so let's turn the border on again.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=660797

 themes/Adwaita/gtk-3.0/gtk-widgets.css |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)
---
diff --git a/themes/Adwaita/gtk-3.0/gtk-widgets.css b/themes/Adwaita/gtk-3.0/gtk-widgets.css
index 2241606..12e1891 100644
--- a/themes/Adwaita/gtk-3.0/gtk-widgets.css
+++ b/themes/Adwaita/gtk-3.0/gtk-widgets.css
@@ -681,8 +681,9 @@ GtkScale.trough:insensitive:backdrop {
  * Frames *
  **********/
 .frame {
-    padding: 2px;
-    border-width: 0;
+    border-width: 1px;
+    border-color: @borders;
+    border-style: solid;
     background-color: @theme_base_color;
 }
 



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