* (bug 27230) Alignment fix for Vector watch tab icon spinner in IE 7
authorBrion Vibber <brion@users.mediawiki.org>
Tue, 8 Feb 2011 02:02:16 +0000 (02:02 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Tue, 8 Feb 2011 02:02:16 +0000 (02:02 +0000)
commitdeb14daf52541033873952932aa82e1c159cd8ca
tree86b80797c6d19891936bf7455d38f9dc256f6efc
parentf0fd318a4e0337ec47baf3d4b83372b99862dca3
* (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