Issue #2315459 by herom, seiplax: Fixed RTL for config translation form.
parent
6db8d05664
commit
0025ee452f
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue