Index: trunk/phase3/skins/common/shared.css |
— | — | @@ -253,10 +253,12 @@ |
254 | 254 | /* |
255 | 255 | * Special:ListGroupRights styling |
256 | 256 | * Special:Statistics styling |
| 257 | + * Special:Tags styling |
257 | 258 | */ |
258 | 259 | |
259 | 260 | table.mw-listgrouprights-table, |
260 | | -table.mw-statistics-table { |
| 261 | +table.mw-statistics-table, |
| 262 | +table.mw-tags-table { |
261 | 263 | border: 1px solid #ccc; |
262 | 264 | border-collapse: collapse; |
263 | 265 | } |
— | — | @@ -266,7 +268,8 @@ |
267 | 269 | } |
268 | 270 | |
269 | 271 | table.mw-listgrouprights-table td, table.mw-listgrouprights-table th, |
270 | | -table.mw-statistics-table td, table.mw-statistics-table th { |
| 272 | +table.mw-statistics-table td, table.mw-statistics-table th, |
| 273 | +table.mw-tags-table td, table.mw-tags-table th { |
271 | 274 | padding: 0.5em 0.2em 0.5em 0.2em; |
272 | 275 | border: 1px solid #ccc; |
273 | 276 | } |
Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -1469,7 +1469,7 @@ |
1470 | 1470 | * to ensure that client-side caches don't keep obsolete copies of global |
1471 | 1471 | * styles. |
1472 | 1472 | */ |
1473 | | -$wgStyleVersion = '206'; |
| 1473 | +$wgStyleVersion = '207'; |
1474 | 1474 | |
1475 | 1475 | |
1476 | 1476 | # Server-side caching: |
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( 'style' => 'width: 80%', 'class' => 'mw-tags-table' ), $html ) ); |
| 40 | + $wgOut->addHTML( Xml::tags( 'table', array( 'class' => 'mw-tags-table' ), $html ) ); |
41 | 41 | } |
42 | 42 | |
43 | 43 | function doTagRow( $tag, $hitcount ) { |