Index: trunk/phase3/skins/monobook/main.css |
— | — | @@ -1419,29 +1419,7 @@ |
1420 | 1420 | text-align: center; |
1421 | 1421 | } |
1422 | 1422 | |
1423 | | -/** Special:Version */ |
1424 | 1423 | |
1425 | | -table#sv-ext, table#sv-hooks, table#sv-software { |
1426 | | - margin: 1em; |
1427 | | - padding:0em; |
1428 | | -} |
1429 | | - |
1430 | | -#sv-ext td, #sv-hooks td, #sv-software td, |
1431 | | -#sv-ext th, #sv-hooks th, #sv-software th { |
1432 | | - border: 1px solid #A0A0A0; |
1433 | | - padding: 0 0.15em 0 0.15em; |
1434 | | -} |
1435 | | -#sv-ext th, #sv-hooks th, #sv-software th { |
1436 | | - background-color: #F0F0F0; |
1437 | | - color: black; |
1438 | | - padding: 0 0.15em 0 0.15em; |
1439 | | -} |
1440 | | -tr.sv-space{ |
1441 | | - height: 0.8em; |
1442 | | - border:none; |
1443 | | -} |
1444 | | -tr.sv-space td { display: none; } |
1445 | | - |
1446 | 1424 | /* |
1447 | 1425 | Table pager (e.g. Special:Imagelist) |
1448 | 1426 | - remove underlines from the navigation link |
Index: trunk/phase3/skins/modern/main.css |
— | — | @@ -929,29 +929,6 @@ |
930 | 930 | text-align: center; |
931 | 931 | } |
932 | 932 | |
933 | | -/** Special:Version */ |
934 | | - |
935 | | -table#sv-ext, table#sv-hooks, table#sv-software { |
936 | | - margin: 1em; |
937 | | - padding:0em; |
938 | | -} |
939 | | - |
940 | | -#sv-ext td, #sv-hooks td, #sv-software td, |
941 | | -#sv-ext th, #sv-hooks th, #sv-software th { |
942 | | - border: 1px solid #A0A0A0; |
943 | | - padding: 0 0.15em 0 0.15em; |
944 | | -} |
945 | | -#sv-ext th, #sv-hooks th, #sv-software th { |
946 | | - background-color: #F0F0F0; |
947 | | - color: black; |
948 | | - padding: 0 0.15em 0 0.15em; |
949 | | -} |
950 | | -tr.sv-space{ |
951 | | - height: 0.8em; |
952 | | - border:none; |
953 | | -} |
954 | | -tr.sv-space td { display: none; } |
955 | | - |
956 | 933 | /* |
957 | 934 | Table pager (e.g. Special:Imagelist) |
958 | 935 | - remove underlines from the navigation link |
Index: trunk/phase3/skins/common/shared.css |
— | — | @@ -32,16 +32,9 @@ |
33 | 33 | /** |
34 | 34 | * File histories |
35 | 35 | */ |
36 | | -table.filehistory { |
37 | | - border:1px solid #ccc; |
38 | | - border-collapse:collapse; |
39 | | -} |
40 | | - |
41 | 36 | table.filehistory th, |
42 | 37 | table.filehistory td { |
43 | | - padding: 0 0.2em 0 0.2em; |
44 | 38 | vertical-align:top; |
45 | | - border:1px solid #ccc; |
46 | 39 | } |
47 | 40 | table.filehistory th { |
48 | 41 | text-align: left; |
— | — | @@ -406,30 +399,12 @@ |
407 | 400 | font-weight: bold; |
408 | 401 | } |
409 | 402 | |
410 | | -/* |
411 | | - * Special:ListGroupRights styling |
412 | | - * Special:Statistics styling |
413 | | - * Special:Tags styling |
414 | | -*/ |
415 | | - |
416 | | -table.mw-listgrouprights-table, |
417 | | -table.mw-statistics-table, |
418 | | -table.mw-tags-table { |
419 | | - border: 1px solid #ccc; |
420 | | - border-collapse: collapse; |
421 | | -} |
422 | | - |
| 403 | +/* Special:ListGroupRights styling */ |
423 | 404 | table.mw-listgrouprights-table tr { |
424 | 405 | vertical-align: top; |
425 | 406 | } |
426 | 407 | |
427 | | -table.mw-listgrouprights-table td, table.mw-listgrouprights-table th, |
428 | | -table.mw-statistics-table td, table.mw-statistics-table th, |
429 | | -table.mw-tags-table td, table.mw-tags-table th { |
430 | | - padding: 0.5em 0.2em 0.5em 0.2em; |
431 | | - border: 1px solid #ccc; |
432 | | -} |
433 | | - |
| 408 | +/* Special:Statistics styling */ |
434 | 409 | td.mw-statistics-numbers { |
435 | 410 | text-align: right; |
436 | 411 | } |
Index: trunk/phase3/includes/ImagePage.php |
— | — | @@ -809,7 +809,7 @@ |
810 | 810 | . "<div id=\"mw-imagepage-section-filehistory\">\n" |
811 | 811 | . $wgOut->parse( wfMsgNoTrans( 'filehist-help' ) ) |
812 | 812 | . $navLinks . "\n" |
813 | | - . Xml::openElement( 'table', array( 'class' => 'filehistory' ) ) . "\n" |
| 813 | + . Xml::openElement( 'table', array( 'class' => 'wikitable filehistory' ) ) . "\n" |
814 | 814 | . '<tr><td></td>' |
815 | 815 | . ( $this->current->isLocal() && ($wgUser->isAllowed('delete') || $wgUser->isAllowed('deleterevision') ) ? '<td></td>' : '' ) |
816 | 816 | . '<th>' . wfMsgHtml( 'filehist-datetime' ) . '</th>' |
Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -1486,7 +1486,7 @@ |
1487 | 1487 | * to ensure that client-side caches do not keep obsolete copies of global |
1488 | 1488 | * styles. |
1489 | 1489 | */ |
1490 | | -$wgStyleVersion = '225'; |
| 1490 | +$wgStyleVersion = '226'; |
1491 | 1491 | |
1492 | 1492 | |
1493 | 1493 | # Server-side caching: |
Index: trunk/phase3/includes/specials/SpecialStatistics.php |
— | — | @@ -56,7 +56,7 @@ |
57 | 57 | $this->doRawOutput(); |
58 | 58 | } |
59 | 59 | |
60 | | - $text = Xml::openElement( 'table', array( 'class' => 'mw-statistics-table' ) ); |
| 60 | + $text = Xml::openElement( 'table', array( 'class' => 'wikitable mw-statistics-table' ) ); |
61 | 61 | |
62 | 62 | # Statistic - pages |
63 | 63 | $text .= $this->getPageStats(); |
Index: trunk/phase3/includes/specials/SpecialListgrouprights.php |
— | — | @@ -33,7 +33,7 @@ |
34 | 34 | $this->outputHeader(); |
35 | 35 | |
36 | 36 | $wgOut->addHTML( |
37 | | - Xml::openElement( 'table', array( 'class' => 'mw-listgrouprights-table' ) ) . |
| 37 | + Xml::openElement( 'table', array( 'class' => 'wikitable mw-listgrouprights-table' ) ) . |
38 | 38 | '<tr>' . |
39 | 39 | Xml::element( 'th', null, wfMsg( 'listgrouprights-group' ) ) . |
40 | 40 | Xml::element( 'th', null, wfMsg( 'listgrouprights-rights' ) ) . |
Index: trunk/phase3/includes/specials/SpecialVersion.php |
— | — | @@ -102,7 +102,7 @@ |
103 | 103 | wfRunHooks( 'SoftwareInfo', array( &$software ) ); |
104 | 104 | |
105 | 105 | $out = Xml::element( 'h2', array( 'id' => 'mw-version-software' ), wfMsg( 'version-software' ) ) . |
106 | | - Xml::openElement( 'table', array( 'id' => 'sv-software' ) ) . |
| 106 | + Xml::openElement( 'table', array( 'class' => 'wikitable', 'id' => 'sv-software' ) ) . |
107 | 107 | "<tr> |
108 | 108 | <th>" . wfMsg( 'version-software-product' ) . "</th> |
109 | 109 | <th>" . wfMsg( 'version-software-version' ) . "</th> |
— | — | @@ -174,7 +174,7 @@ |
175 | 175 | wfRunHooks( 'SpecialVersionExtensionTypes', array( &$this, &$extensionTypes ) ); |
176 | 176 | |
177 | 177 | $out = Xml::element( 'h2', array( 'id' => 'mw-version-ext' ), wfMsg( 'version-extensions' ) ) . |
178 | | - Xml::openElement( 'table', array( 'id' => 'sv-ext' ) ); |
| 178 | + Xml::openElement( 'table', array( 'class' => 'wikitable', 'id' => 'sv-ext' ) ); |
179 | 179 | |
180 | 180 | foreach ( $extensionTypes as $type => $text ) { |
181 | 181 | if ( isset ( $wgExtensionCredits[$type] ) && count ( $wgExtensionCredits[$type] ) ) { |
— | — | @@ -291,7 +291,7 @@ |
292 | 292 | ksort( $myWgHooks ); |
293 | 293 | |
294 | 294 | $ret = Xml::element( 'h2', array( 'id' => 'mw-version-hooks' ), wfMsg( 'version-hooks' ) ) . |
295 | | - Xml::openElement( 'table', array( 'id' => 'sv-hooks' ) ) . |
| 295 | + Xml::openElement( 'table', array( 'class' => 'wikitable', 'id' => 'sv-hooks' ) ) . |
296 | 296 | "<tr> |
297 | 297 | <th>" . wfMsg( 'version-hook-name' ) . "</th> |
298 | 298 | <th>" . wfMsg( 'version-hook-subscribedby' ) . "</th> |
Index: trunk/phase3/includes/specials/SpecialTags.php |
— | — | @@ -36,7 +36,7 @@ |
37 | 37 | $html .= $this->doTagRow( $tag, 0 ); |
38 | 38 | } |
39 | 39 | |
40 | | - $wgOut->addHTML( Xml::tags( 'table', array( 'class' => 'mw-tags-table' ), $html ) ); |
| 40 | + $wgOut->addHTML( Xml::tags( 'table', array( 'class' => 'wikitable mw-tags-table' ), $html ) ); |
41 | 41 | } |
42 | 42 | |
43 | 43 | function doTagRow( $tag, $hitcount ) { |