From 9d8910100e32236d874b90830a15c426daf7a44e Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 4 Jun 2008 23:36:02 +0000 Subject: [PATCH] Login & signup form float fixes: * right float for RTL * clear floats for the post-form text! The float is only used to get the box to size nicely, as far as I can tell. There ought to be a nice clean way to get boxes to auto-size nicely without making them tables or floats. --- includes/DefaultSettings.php | 2 +- skins/monobook/main.css | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 52fd2ac628..51a4d7d857 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -1337,7 +1337,7 @@ $wgCacheEpoch = '20030516000000'; * to ensure that client-side caches don't keep obsolete copies of global * styles. */ -$wgStyleVersion = '152'; +$wgStyleVersion = '153'; # Server-side caching: diff --git a/skins/monobook/main.css b/skins/monobook/main.css index 249898aeca..f6ea2aa3fe 100644 --- a/skins/monobook/main.css +++ b/skins/monobook/main.css @@ -1070,6 +1070,10 @@ div#userlogin form#userlogin2 { background-color: #f9f9f9; float: left; } +.rtl div#userloginForm form, +.rtl div#userlogin form#userlogin2 { + float: right; +} div#userloginForm table, div#userlogin form#userlogin2 table { @@ -1088,6 +1092,9 @@ div#userloginForm .captcha { background-color: white; } +#loginend, #signupend { + clear: both; +} #userloginprompt, #languagelinks { font-size: 85%; -- 2.20.1