Index: trunk/phase3/skins/common/shared.css |
— | — | @@ -244,8 +244,3 @@ |
245 | 245 | #shared-image-dup, #shared-image-conflict { |
246 | 246 | font-style: italic; |
247 | 247 | } |
248 | | - |
249 | | -span.mw-pager-pagerlink-disabled { |
250 | | - color: #989898; |
251 | | -} |
252 | | - |
Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -1328,7 +1328,7 @@ |
1329 | 1329 | * to ensure that client-side caches don't keep obsolete copies of global |
1330 | 1330 | * styles. |
1331 | 1331 | */ |
1332 | | -$wgStyleVersion = '147'; |
| 1332 | +$wgStyleVersion = '148'; |
1333 | 1333 | |
1334 | 1334 | |
1335 | 1335 | # Server-side caching: |
Index: trunk/phase3/includes/Pager.php |
— | — | @@ -405,17 +405,11 @@ |
406 | 406 | $links = array(); |
407 | 407 | foreach ( $queries as $type => $query ) { |
408 | 408 | if ( $query !== false ) { |
409 | | - $links[$type] = "<span class='mw-pager-pagerlink-enabled'>" . |
410 | | - $this->makeLink( $linkTexts[$type], $queries[$type], $type ) . |
411 | | - "</span>"; |
| 409 | + $links[$type] = $this->makeLink( $linkTexts[$type], $queries[$type], $type ); |
412 | 410 | } elseif ( isset( $disabledTexts[$type] ) ) { |
413 | | - $links[$type] = "<span class='mw-pager-pagerlink-disabled'>" . |
414 | | - $disabledTexts[$type] . |
415 | | - "</span>"; |
| 411 | + $links[$type] = $disabledTexts[$type]; |
416 | 412 | } else { |
417 | | - $links[$type] = "<span class='mw-pager-pagerlink-disabled'>" . |
418 | | - $linkTexts[$type] . |
419 | | - "</span>"; |
| 413 | + $links[$type] = $linkTexts[$type]; |
420 | 414 | } |
421 | 415 | } |
422 | 416 | return $links; |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -127,8 +127,6 @@ |
128 | 128 | * (bug 13095) Search by first letters or digits in [[Special:Categories]] |
129 | 129 | * Users moving a page can now move all subpages automatically as well |
130 | 130 | * Sidebar is now cached for all languages |
131 | | -* Paging links on special pages now have CSS classes and are greyed out by default |
132 | | - when disabled |
133 | 131 | * (bug 14259) Localisation message for upload button on Special:Import is now 'import-upload' |
134 | 132 | instead of 'upload' |
135 | 133 | |