Index: trunk/phase3/skins/vector/main-ltr.css |
— | — | @@ -1111,8 +1111,10 @@ |
1112 | 1112 | outline: none; |
1113 | 1113 | display: block; |
1114 | 1114 | width: 26px; |
1115 | | - height: 3.1em; |
1116 | | - text-indent: -9999px; |
| 1115 | + /* This hides the text but shows the background image */ |
| 1116 | + padding-top: 3.1em; |
| 1117 | + height: 0; |
| 1118 | + overflow: hidden; |
1117 | 1119 | } |
1118 | 1120 | #ca-unwatch.icon a { |
1119 | 1121 | background-image: url(images/watch-icons.png?1); |
Index: trunk/phase3/skins/vector/main-rtl.css |
— | — | @@ -1111,8 +1111,10 @@ |
1112 | 1112 | outline: none; |
1113 | 1113 | display: block; |
1114 | 1114 | width: 26px; |
1115 | | - height: 3.1em; |
1116 | | - text-indent: -9999px; |
| 1115 | + /* This hides the text but shows the background image */ |
| 1116 | + padding-top: 3.1em; |
| 1117 | + height: 0; |
| 1118 | + overflow: hidden; |
1117 | 1119 | } |
1118 | 1120 | #ca-unwatch.icon a { |
1119 | 1121 | background-image: url(images/watch-icons.png?1); |
Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -1547,7 +1547,7 @@ |
1548 | 1548 | * to ensure that client-side caches do not keep obsolete copies of global |
1549 | 1549 | * styles. |
1550 | 1550 | */ |
1551 | | -$wgStyleVersion = '298'; |
| 1551 | +$wgStyleVersion = '299'; |
1552 | 1552 | |
1553 | 1553 | /** |
1554 | 1554 | * This will cache static pages for non-logged-in users to reduce |