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
This commit is contained in:
Florian Müllner 2012-10-25 18:24:30 +02:00
parent a4e29e1244
commit caa0f63e1f

View File

@ -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 {