[gnome-shell/gnome-3-6] style: Fix close button size



commit a7f61753a7cf8a906239a10435f34cb41affc966
Author: Florian MÃllner <fmuellner gnome org>
Date:   Thu Oct 25 18:24:30 2012 +0200

    style: Fix close button size
    
    The image is actually 32px, so we end up with a slightly fuzzy
    button when scaling up to 34px. Don't do that.
    
    Spotted by lamefun.xOr<at>gmail.com
    
    https://bugzilla.gnome.org/show_bug.cgi?id=686574

 data/theme/gnome-shell.css |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/data/theme/gnome-shell.css b/data/theme/gnome-shell.css
index bb57126..b715a1f 100644
--- a/data/theme/gnome-shell.css
+++ b/data/theme/gnome-shell.css
@@ -614,9 +614,9 @@ StScrollBar StButton#vhandle:active {
 
 .window-close, .notification-close {
     background-image: url("close-window.svg");
-    background-size: 34px;
-    height: 34px;
-    width: 34px;
+    background-size: 32px;
+    height: 32px;
+    width: 32px;
 }
 
 .window-close {



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