From 727513d79bda6ebc89c57478627b26473e988d7b Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 20 Mar 2008 23:00:37 +0000 Subject: [PATCH] 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. --- includes/DefaultSettings.php | 2 +- skins/monobook/main.css | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) 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; -- 2.20.1