From: Rotem Liss Date: Tue, 3 Jun 2008 12:07:46 +0000 (+0000) Subject: Fixing display of RTL Special:Specialpages: Display is not ideal yet (bullets are... X-Git-Tag: 1.31.0-rc.0~47222 X-Git-Url: http://git.cyclocoop.org/%40spipnet%40?a=commitdiff_plain;h=3e4b5fd03669346071f6cea43e1c5cea54267a29;p=lhc%2Fweb%2Fwiklou.git Fixing display of RTL Special:Specialpages: Display is not ideal yet (bullets are out of display, at least in Firefox), but is better. --- 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; +}