2015-04-14 19:19:11 -07:00
|
|
|
// Right to left styles.
|
2014-07-10 19:36:19 +03:00
|
|
|
|
2023-05-31 01:27:38 +03:00
|
|
|
.rtl {
|
|
|
|
.d-icon-align-right,
|
|
|
|
.d-icon-angle-double-right,
|
|
|
|
.d-icon-angle-right,
|
|
|
|
.d-icon-arrow-right,
|
|
|
|
.d-icon-caret-right,
|
|
|
|
.d-icon-chevron-right,
|
|
|
|
.d-icon-hand-point-right,
|
|
|
|
.d-icon-quote-right {
|
|
|
|
transform: rotate(180deg);
|
|
|
|
}
|
2014-07-10 19:36:19 +03:00
|
|
|
|
2023-05-31 01:27:38 +03:00
|
|
|
.d-icon-align-left,
|
|
|
|
.d-icon-angle-double-left,
|
|
|
|
.d-icon-angle-left,
|
|
|
|
.d-icon-arrow-left,
|
|
|
|
.d-icon-caret-left,
|
|
|
|
.d-icon-chevron-left,
|
|
|
|
.d-icon-hand-point-left,
|
|
|
|
.d-icon-quote-left {
|
|
|
|
transform: rotate(180deg);
|
|
|
|
}
|
2015-07-15 15:18:20 +04:30
|
|
|
}
|
|
|
|
|
2021-11-26 12:32:45 -05:00
|
|
|
// For the support_mixed_text_direction setting
|
|
|
|
html:not(.rtl) .cooked ul[dir="rtl"],
|
|
|
|
html:not(.rtl) .d-editor-preview ul[dir="rtl"],
|
2021-03-03 18:09:48 +02:00
|
|
|
.rtl .cooked ul[dir="ltr"],
|
|
|
|
.rtl .d-editor-preview ul[dir="ltr"] {
|
|
|
|
padding-left: 0;
|
2021-11-26 12:32:45 -05:00
|
|
|
padding-right: 1.25em;
|
|
|
|
margin-right: 1.25em;
|
2018-07-19 02:32:36 -07:00
|
|
|
}
|
2019-10-28 11:09:42 -07:00
|
|
|
|
2021-01-22 16:03:43 +01:00
|
|
|
.rtl .ace_placeholder {
|
|
|
|
direction: rtl !important;
|
|
|
|
text-align: right !important;
|
|
|
|
|
|
|
|
[dir="ltr"] {
|
|
|
|
text-align: left !important;
|
|
|
|
}
|
|
|
|
}
|