Issue #2315459 by herom, seiplax: Fixed RTL for config translation form.

8.0.x
webchick 2014-08-29 23:05:35 -07:00
parent 6db8d05664
commit 0025ee452f
1 changed files with 8 additions and 2 deletions

View File

@ -22,11 +22,17 @@
@media all and (min-width: 851px) {
.config-translation-form .translation-element-wrapper .source {
width: 48%;
float: left;
float: left; /* LTR */
}
[dir="rtl"] .config-translation-form .translation-element-wrapper .source {
float: right;
}
.config-translation-form .translation-element-wrapper .translation {
width: 48%;
float: right;
float: right; /* LTR */
}
[dir="rtl"] .config-translation-form .translation-element-wrapper .translation {
float: left;
}
.config-translation-form .translation-element-wrapper .translation label {
position: static !important;