Fix per comment in r48720: Remove style from code and use same table stylings as...
authorRaimond Spekking <raymond@users.mediawiki.org>
Wed, 25 Mar 2009 08:09:08 +0000 (08:09 +0000)
committerRaimond Spekking <raymond@users.mediawiki.org>
Wed, 25 Mar 2009 08:09:08 +0000 (08:09 +0000)
includes/DefaultSettings.php
includes/specials/SpecialTags.php
skins/common/shared.css

index 24863b4..b4ed82c 100644 (file)
@@ -1469,7 +1469,7 @@ $wgCacheEpoch = '20030516000000';
  * to ensure that client-side caches don't keep obsolete copies of global
  * styles.
  */
-$wgStyleVersion = '206';
+$wgStyleVersion = '207';
 
 
 # Server-side caching:
index 4f4e94f..981eb2f 100644 (file)
@@ -36,7 +36,7 @@ class SpecialTags extends SpecialPage {
                        $html .= $this->doTagRow( $tag, 0 );
                }
 
-               $wgOut->addHTML( Xml::tags( 'table', array( 'style' => 'width: 80%', 'class' => 'mw-tags-table' ), $html ) );
+               $wgOut->addHTML( Xml::tags( 'table', array( 'class' => 'mw-tags-table' ), $html ) );
        }
 
        function doTagRow( $tag, $hitcount ) {
index 1a80176..bb08c64 100644 (file)
@@ -253,10 +253,12 @@ td.os-suggest-result-hl {
 /*
  * Special:ListGroupRights styling
  * Special:Statistics styling 
+ * Special:Tags styling 
 */
 
 table.mw-listgrouprights-table,
-table.mw-statistics-table {
+table.mw-statistics-table,
+table.mw-tags-table {
        border: 1px solid #ccc;
        border-collapse: collapse;
 }
@@ -266,7 +268,8 @@ table.mw-listgrouprights-table tr  {
 }
 
 table.mw-listgrouprights-table td, table.mw-listgrouprights-table th,
-table.mw-statistics-table td, table.mw-statistics-table th {
+table.mw-statistics-table td, table.mw-statistics-table th,
+table.mw-tags-table td, table.mw-tags-table th {
        padding: 0.5em 0.2em 0.5em 0.2em;
        border: 1px solid #ccc;
 }