Index: trunk/phase3/includes/Skin.php |
— | — | @@ -1390,7 +1390,7 @@ |
1391 | 1391 | $sp = wfMsg( 'specialpages' ); |
1392 | 1392 | $spp = $wgContLang->specialPage( 'Specialpages' ); |
1393 | 1393 | |
1394 | | - $s = '<form id="specialpages" method="get" class="inline" ' . |
| 1394 | + $s = '<form id="specialpages" method="get" ' . |
1395 | 1395 | 'action="' . htmlspecialchars( "{$wgServer}{$wgRedirectScript}" ) . "\">\n"; |
1396 | 1396 | $s .= "<select name=\"wpDropdown\">\n"; |
1397 | 1397 | $s .= "<option value=\"{$spp}\">{$sp}</option>\n"; |
Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -1385,7 +1385,7 @@ |
1386 | 1386 | * to ensure that client-side caches don't keep obsolete copies of global |
1387 | 1387 | * styles. |
1388 | 1388 | */ |
1389 | | -$wgStyleVersion = '180'; |
| 1389 | +$wgStyleVersion = '181'; |
1390 | 1390 | |
1391 | 1391 | |
1392 | 1392 | # Server-side caching: |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -259,6 +259,7 @@ |
260 | 260 | * (bug 15795) Special:Userrights is now listed on Special:SpecialPages when the |
261 | 261 | user can only change his rights |
262 | 262 | * (bug 15846) Categories "leak" from older revisions in certain circumstances |
| 263 | +* (bug 15928) Special pages dropdown should be inline in non-MonoBook skins |
263 | 264 | |
264 | 265 | === API changes in 1.14 === |
265 | 266 | |
Index: trunk/phase3/skins/common/oldshared.css |
— | — | @@ -416,3 +416,7 @@ |
417 | 417 | vertical-align: middle; |
418 | 418 | font-size: 90%; |
419 | 419 | } |
| 420 | + |
| 421 | +form#specialpages { |
| 422 | + display: inline; |
| 423 | +} |