From 9f1a2f3718ec31dc561a52e7ba0213e93063f851 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 19 Dec 2006 21:51:11 +0000 Subject: [PATCH] * Fix regression in thumb styles; size and padding didn't match with new arrangement. --- RELEASE-NOTES | 2 ++ includes/DefaultSettings.php | 2 +- skins/common/common.css | 3 ++- skins/monobook/main.css | 3 ++- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index f081d6dbe1..5b0c81900b 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -352,6 +352,8 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN it messes up on current versions of Safari but is ok in the latest nightlies. Checking the version number will allow it to automatically work when new releases of Safari appear. +* Fix regression in thumb styles; size and padding didn't match with + new arrangement. == Languages updated == diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 84a24565c3..d33be3728a 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -1041,7 +1041,7 @@ $wgCacheEpoch = '20030516000000'; * to ensure that client-side caches don't keep obsolete copies of global * styles. */ -$wgStyleVersion = '35'; +$wgStyleVersion = '36'; # Server-side caching: diff --git a/skins/common/common.css b/skins/common/common.css index 0eab607e24..05721a4aba 100644 --- a/skins/common/common.css +++ b/skins/common/common.css @@ -71,7 +71,8 @@ html .thumbcaption { border: none; text-align: left; line-height: 1.4em; - padding: .3em 0 .1em 0; + padding: 3px !important; + font-size: 94%; } div.magnify { float: right; diff --git a/skins/monobook/main.css b/skins/monobook/main.css index 3ae9e744d5..69ac0ebab0 100644 --- a/skins/monobook/main.css +++ b/skins/monobook/main.css @@ -445,7 +445,8 @@ html .thumbcaption { border: none; text-align: left; line-height: 1.4em; - padding: .3em 0 .1em 0; + padding: 3px !important; + font-size: 94%; } div.magnify { float: right; -- 2.20.1