From deb14daf52541033873952932aa82e1c159cd8ca Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 8 Feb 2011 02:02:16 +0000 Subject: [PATCH] * (bug 27230) Alignment fix for Vector watch tab icon spinner in IE 7 The CSS for the loading tab had: background-position: center 60%; The 'center' apparently worked for other browsers, but in IE7 it was getting a bit off, and threw the image over a few pixels. 'center' keyword here is allegedly equivalent to 50% which I also tried, but with the same results. Instead, using the same fixed position that we specify for the regular rest-state icon works: background-position: 5px 60%; Resulting looks ok for me in: * IE 6 / XP * IE 7 / XP (fixes regression) * IE 8 / XP * Firefox 4b10 / Linux Shouldn't hurt anything else. --- skins/vector/screen.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skins/vector/screen.css b/skins/vector/screen.css index 27c46c13a9..054a418987 100644 --- a/skins/vector/screen.css +++ b/skins/vector/screen.css @@ -1173,7 +1173,7 @@ div#bodyContent { #ca-watch.icon a.loading { /* @embed */ background-image: url(images/watch-icon-loading.gif); - background-position: center 60%; + background-position: 5px 60%; } #ca-unwatch.icon a span, #ca-watch.icon a span { -- 2.20.1