From: Brion Vibber Date: Thu, 20 Mar 2008 23:00:37 +0000 (+0000) Subject: Don't force a white background on s appearing in a
; X-Git-Tag: 1.31.0-rc.0~48910 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=727513d79bda6ebc89c57478627b26473e988d7b;p=lhc%2Fweb%2Fwiklou.git Don't force a white background on
s appearing in a
; 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. --- diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 6a8b156f56..76d492aab8 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -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: diff --git a/skins/monobook/main.css b/skins/monobook/main.css index 1f8015e4dc..ba53bf26be 100644 --- a/skins/monobook/main.css +++ b/skins/monobook/main.css @@ -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;