2015-04-14 21:19:11 -05:00
|
|
|
// Right to left styles.
|
2014-07-10 11:36:19 -05:00
|
|
|
|
2023-05-30 17:27:38 -05: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 11:36:19 -05:00
|
|
|
|
2023-05-30 17:27:38 -05: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 05:48:20 -05:00
|
|
|
}
|
|
|
|
|
2017-10-30 13:13:49 -05:00
|
|
|
.rtl .admin-customize .current-style .toggle-mobile {
|
2018-06-08 04:49:31 -05:00
|
|
|
position: static !important;
|
|
|
|
float: left !important;
|
2015-07-15 05:48:20 -05:00
|
|
|
}
|
2017-10-30 13:13:49 -05:00
|
|
|
.rtl .admin-customize .current-style .toggle-maximize {
|
2018-06-08 04:49:31 -05:00
|
|
|
position: static !important;
|
|
|
|
float: left !important;
|
2015-07-15 05:48:20 -05:00
|
|
|
}
|
2018-07-19 04:32:36 -05:00
|
|
|
|
2021-11-26 11:32:45 -06: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 10:09:48 -06:00
|
|
|
.rtl .cooked ul[dir="ltr"],
|
|
|
|
.rtl .d-editor-preview ul[dir="ltr"] {
|
|
|
|
padding-left: 0;
|
2021-11-26 11:32:45 -06:00
|
|
|
padding-right: 1.25em;
|
|
|
|
margin-right: 1.25em;
|
2018-07-19 04:32:36 -05:00
|
|
|
}
|
2019-10-28 13:09:42 -05:00
|
|
|
|
2020-02-11 14:23:12 -06:00
|
|
|
.rtl {
|
|
|
|
$mobile-breakpoint: 700px;
|
|
|
|
|
|
|
|
.admin-detail.mobile-open {
|
|
|
|
@media (max-width: $mobile-breakpoint) {
|
|
|
|
transition: transform 0.3s ease;
|
|
|
|
@include transform(translateX(-250px));
|
|
|
|
}
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
transition: transform 0.3s ease;
|
|
|
|
@include transform(translateX(-50%));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.admin-detail.mobile-closed {
|
|
|
|
@media (max-width: $mobile-breakpoint) {
|
|
|
|
transition: transform 0.3s ease;
|
|
|
|
@include transform(translateX(0));
|
|
|
|
margin-left: -10px !important;
|
|
|
|
padding-left: 10px !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.admin-nav {
|
|
|
|
.nav-stacked {
|
|
|
|
margin: 0 -10px 0 10px !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-01-22 09:03:43 -06:00
|
|
|
|
|
|
|
.rtl .ace_placeholder {
|
|
|
|
direction: rtl !important;
|
|
|
|
text-align: right !important;
|
|
|
|
|
|
|
|
[dir="ltr"] {
|
|
|
|
text-align: left !important;
|
|
|
|
}
|
|
|
|
}
|