From df174952fdad1f8a92cf819b0ebb055342e22b0d Mon Sep 17 00:00:00 2001 From: Nadav Kavalerchik Date: Wed, 27 Aug 2014 11:55:26 +0300 Subject: [PATCH] MDL-45909 install/css: Left align input form fields on Install pages,in RTL mode --- install/css.php | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/install/css.php b/install/css.php index 6a30ceb6d6d..0228dff37d7 100644 --- a/install/css.php +++ b/install/css.php @@ -132,7 +132,9 @@ and remove the following. width: 245px; text-align: right; } - +html[dir=rtl] .fitemtitle { + float: right; +} label { font-weight: bold; display: inline-block; @@ -142,7 +144,11 @@ label { .fitemelement { margin-left: 265px; } - +html[dir=rtl] .fitemelement { + margin-right: 265px; + margin-left: 0; + direction: ltr; +} .alert, .alert h4 { color: #c09853; }