From: Rotem Liss Date: Mon, 9 Apr 2007 08:31:00 +0000 (+0000) Subject: Float the unblock and ipblocklist links in Special:Blockip to the left instead of... X-Git-Tag: 1.31.0-rc.0~53444 X-Git-Url: http://git.cyclocoop.org/%22.%24redirect_annul.%22?a=commitdiff_plain;h=10516953dc2766d4010fe21091cbdf1c5d30e573;p=lhc%2Fweb%2Fwiklou.git Float the unblock and ipblocklist links in Special:Blockip to the left instead of the right in RTL interface. --- diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 7f780c9607..ca9d96d9da 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -1120,7 +1120,7 @@ $wgCacheEpoch = '20030516000000'; * to ensure that client-side caches don't keep obsolete copies of global * styles. */ -$wgStyleVersion = '62'; +$wgStyleVersion = '63'; # Server-side caching: diff --git a/skins/common/common_rtl.css b/skins/common/common_rtl.css index 54186bb882..0c08de5571 100644 --- a/skins/common/common_rtl.css +++ b/skins/common/common_rtl.css @@ -25,4 +25,8 @@ div.tright, div.floatright { } div.tleft, div.floatleft { clear: left; -} \ No newline at end of file +} +/* Unblock and Ipblocklist links of Special:Blockip */ +p.mw-ipb-conveniencelinks { + float: left; +} diff --git a/skins/monobook/rtl.css b/skins/monobook/rtl.css index c3266d1e48..ce87855d3a 100644 --- a/skins/monobook/rtl.css +++ b/skins/monobook/rtl.css @@ -215,3 +215,7 @@ input#wpSave, input#wpDiff { float: right; margin: 0 0 1em 3em; } +/* Unblock and Ipblocklist links of Special:Blockip */ +p.mw-ipb-conveniencelinks { + float: left; +}