Index: trunk/phase3/skins/monobook/Opera7Fixes.css |
— | — | @@ -9,3 +9,8 @@ |
10 | 10 | background: url(external.png) center right no-repeat; |
11 | 11 | padding-right: 13px; |
12 | 12 | } |
| 13 | +/* Edit section links */ |
| 14 | +.editsection { |
| 15 | + margin-top: 0; |
| 16 | +} |
| 17 | + |
Index: trunk/phase3/skins/monobook/KHTMLFixes.css |
— | — | @@ -1,3 +1,9 @@ |
2 | 2 | /* KHTML fix stylesheet */ |
3 | 3 | /* work around the horizontal scrollbars */ |
4 | 4 | #column-content { margin-left: 0; } |
| 5 | + |
| 6 | +/* Edit section links */ |
| 7 | +.editsection { |
| 8 | + margin-top: 0; |
| 9 | +} |
| 10 | + |
Index: trunk/phase3/skins/common/shared.css |
— | — | @@ -23,6 +23,7 @@ |
24 | 24 | .editsection { |
25 | 25 | float: right; |
26 | 26 | margin-left: 5px; |
| 27 | + margin-top:-1.2em; |
27 | 28 | } |
28 | 29 | |
29 | 30 | /** |
Index: trunk/phase3/includes/Linker.php |
— | — | @@ -1225,7 +1225,7 @@ |
1226 | 1226 | * @return string HTML headline |
1227 | 1227 | */ |
1228 | 1228 | public function makeHeadline( $level, $attribs, $anchor, $text, $link ) { |
1229 | | - return "<a name=\"$anchor\"></a><h$level$attribs$link <span class=\"mw-headline\">$text</span></h$level>"; |
| 1229 | + return "<a name=\"$anchor\"></a><h$level$attribs<span class=\"mw-headline\">$text</span>$link </h$level>"; |
1230 | 1230 | } |
1231 | 1231 | |
1232 | 1232 | /** |
Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -1246,7 +1246,7 @@ |
1247 | 1247 | * to ensure that client-side caches don't keep obsolete copies of global |
1248 | 1248 | * styles. |
1249 | 1249 | */ |
1250 | | -$wgStyleVersion = '102'; |
| 1250 | +$wgStyleVersion = '103'; |
1251 | 1251 | |
1252 | 1252 | |
1253 | 1253 | # Server-side caching: |