Don't force a white background on <table>s appearing in a <fieldset>;
authorBrion Vibber <brion@users.mediawiki.org>
Thu, 20 Mar 2008 23:00:37 +0000 (23:00 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Thu, 20 Mar 2008 23:00:37 +0000 (23:00 +0000)
this'll take care of most uses of table layouts in special forms on
sites like English Wikipedia which add a non-white background color
to the special page namespace.

includes/DefaultSettings.php
skins/monobook/main.css

index 6a8b156..76d492a 100644 (file)
@@ -1325,7 +1325,7 @@ $wgCacheEpoch = '20030516000000';
  * to ensure that client-side caches don't keep obsolete copies of global
  * styles.
  */
-$wgStyleVersion = '123';
+$wgStyleVersion = '124';
 
 
 # Server-side caching:
index 1f8015e..ba53bf2 100644 (file)
@@ -67,6 +67,10 @@ table {
           floated tables */
        background-color: white;
 }
+fieldset table {
+       /* but keep table layouts in forms clean... */
+       background: none;
+}
 a {
        text-decoration: none;
        color: #002bb8;