From 4e0b7ff29a9e93e2dfe64881cd5ca6854cdaef2c Mon Sep 17 00:00:00 2001 From: Nadav Kavalerchik Date: Sat, 22 Sep 2012 17:58:20 +0300 Subject: [PATCH] MDL-35578 - Left justify LTR Form input fields (email, idnumber, url, phone...), when in RTL mode --- theme/base/style/core.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/theme/base/style/core.css b/theme/base/style/core.css index ce835c1650d..2ded7802f01 100644 --- a/theme/base/style/core.css +++ b/theme/base/style/core.css @@ -663,6 +663,11 @@ body.tag .managelink {padding: 5px;} .dir-rtl .felement.feditor select {margin-right:18.75%;margin-left:auto;} .dir-rtl .mform .fitem .felement {margin-right: 16%;margin-left:auto;text-align: right;} +.dir-rtl .mform .fitem .felement input[name=email], +.dir-rtl .mform .fitem .felement input[name=url], +.dir-rtl .mform .fitem .felement input[name=idnumber], +.dir-rtl .mform .fitem .felement input[name=phone1], +.dir-rtl .mform .fitem .felement input[name=phone2] {text-align: left; direction: ltr;} /* Audio player size in 'block' mode (can only change width, height is hardcoded in JS) */ .resourcecontent .mediaplugin_mp3 object {height:25px; width: 600px}