[gnome-shell] style: Fix close button size



commit caa0f63e1fcd663897d4a7eb27a58606743080e8
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 d13e3ec..95cf6a8 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]