From 3e4b5fd03669346071f6cea43e1c5cea54267a29 Mon Sep 17 00:00:00 2001 From: Rotem Liss Date: Tue, 3 Jun 2008 12:07:46 +0000 Subject: [PATCH] Fixing display of RTL Special:Specialpages: Display is not ideal yet (bullets are out of display, at least in Firefox), but is better. --- includes/DefaultSettings.php | 2 +- skins/common/common_rtl.css | 5 +++++ skins/modern/rtl.css | 5 +++++ skins/monobook/rtl.css | 5 +++++ 4 files changed, 16 insertions(+), 1 deletion(-) diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 219459dca2..5f60a08b1d 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -1324,7 +1324,7 @@ $wgCacheEpoch = '20030516000000'; * to ensure that client-side caches don't keep obsolete copies of global * styles. */ -$wgStyleVersion = '150'; +$wgStyleVersion = '151'; # Server-side caching: diff --git a/skins/common/common_rtl.css b/skins/common/common_rtl.css index d6629624ac..8f11b110b4 100644 --- a/skins/common/common_rtl.css +++ b/skins/common/common_rtl.css @@ -48,3 +48,8 @@ html > body div#article ul { html > body div#article ol { display: table; } + +/* Special:SpecialPages styling */ +.mw-specialpages-page { + float: right; +} diff --git a/skins/modern/rtl.css b/skins/modern/rtl.css index e286a3f429..0e59517198 100644 --- a/skins/modern/rtl.css +++ b/skins/modern/rtl.css @@ -156,3 +156,8 @@ html > body div#mw_contentholder ol { html > body div#mw_contentholder ul#filetoc { display: block; } + +/* Special:SpecialPages styling */ +.mw-specialpages-page { + float: right; +} diff --git a/skins/monobook/rtl.css b/skins/monobook/rtl.css index 73bc1451f7..cd81ac19e2 100644 --- a/skins/monobook/rtl.css +++ b/skins/monobook/rtl.css @@ -242,3 +242,8 @@ html > body div#bodyContent ol { html > body div#bodyContent ul#filetoc { display: block; } + +/* Special:SpecialPages styling */ +.mw-specialpages-page { + float: right; +} -- 2.20.1