From 040adeffb1a148c04fde0c076dc9d08f34efab74 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 19 Dec 2006 22:21:45 +0000 Subject: [PATCH] * (bug 8326) Fix regression in thumb styles of cached content --- RELEASE-NOTES | 1 + includes/DefaultSettings.php | 2 +- skins/common/common.css | 3 +++ skins/monobook/main.css | 3 +++ 4 files changed, 8 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 5b0c81900b..e3f5a6259b 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -354,6 +354,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN work when new releases of Safari appear. * Fix regression in thumb styles; size and padding didn't match with new arrangement. +* (bug 8326) Fix regression in thumb styles of cached content == Languages updated == diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index d33be3728a..dbe5937dc3 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 = '36'; +$wgStyleVersion = '37'; # Server-side caching: diff --git a/skins/common/common.css b/skins/common/common.css index 05721a4aba..46582bf363 100644 --- a/skins/common/common.css +++ b/skins/common/common.css @@ -56,6 +56,7 @@ div.thumb { border-color: white; width: auto; } +div.thumb div, div.thumbinner { border: 1px solid #ccc; padding: 3px !important; @@ -64,9 +65,11 @@ div.thumbinner { text-align: center; overflow: hidden; } +div.thumb div a img, html .thumbimage { border: 1px solid #ccc; } +div.thumb div div.thumbcaption, html .thumbcaption { border: none; text-align: left; diff --git a/skins/monobook/main.css b/skins/monobook/main.css index 69ac0ebab0..c791741891 100644 --- a/skins/monobook/main.css +++ b/skins/monobook/main.css @@ -430,6 +430,7 @@ div.thumb { border-color: white; width: auto; } +div.thumb div, div.thumbinner { border: 1px solid #ccc; padding: 3px !important; @@ -438,9 +439,11 @@ div.thumbinner { text-align: center; overflow: hidden; } +div.thumb div a img, html .thumbimage { border: 1px solid #ccc; } +div.thumb div div.thumbcaption, html .thumbcaption { border: none; text-align: left; -- 2.20.1