2015-04-15 10:19:11 +08:00
|
|
|
// Right to left styles.
|
|
|
|
// *** These styles are all going to be flipped by the r2 gem ***
|
2015-07-17 09:03:48 +08:00
|
|
|
// Adding the !important declaration to a rule prevents it from being flipped.
|
2014-07-11 00:36:19 +08:00
|
|
|
|
2017-11-24 00:14:51 +08:00
|
|
|
// This is used to flip the .d-icon-caret-right
|
2018-06-08 17:49:31 +08:00
|
|
|
@mixin rotate($degrees) {
|
2015-04-15 10:19:11 +08:00
|
|
|
-webkit-transform: rotate(#{$degrees}deg);
|
|
|
|
-moz-transform: rotate(#{$degrees}deg);
|
|
|
|
-ms-transform: rotate(#{$degrees}deg);
|
|
|
|
-o-transform: rotate(#{$degrees}deg);
|
|
|
|
transform: rotate(#{$degrees}deg);
|
|
|
|
|
2018-06-08 17:49:31 +08:00
|
|
|
filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=#{cos($degrees)}, M12=-#{sin($degrees)}, M21=#{sin($degrees)}, M22=#{cos($degrees)})";
|
2015-04-15 10:19:11 +08:00
|
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=#{cos($degrees)}, M12=-#{sin($degrees)}, M21=#{sin($degrees)}, M22=#{cos($degrees)})";
|
|
|
|
zoom: 1;
|
|
|
|
}
|
2014-07-11 00:36:19 +08:00
|
|
|
|
2015-04-15 10:19:11 +08:00
|
|
|
// Get the right caret to point left
|
2017-11-24 00:14:51 +08:00
|
|
|
.rtl .d-icon-caret-right {
|
2015-04-15 10:19:11 +08:00
|
|
|
@include rotate(180);
|
|
|
|
}
|
2014-07-11 00:36:19 +08:00
|
|
|
|
2015-04-15 10:19:11 +08:00
|
|
|
// Changes the triangle arrow direction in .nav-stacked .active
|
|
|
|
// The 'left' and 'right' in these selectors is not being flipped by r2.
|
2017-08-30 23:01:01 +08:00
|
|
|
.rtl .nav-stacked a.active::after {
|
2015-04-15 10:19:11 +08:00
|
|
|
border-left-color: transparent !important;
|
2020-08-04 10:57:10 +08:00
|
|
|
border-right-color: var(--secondary) !important;
|
2014-07-11 00:36:19 +08:00
|
|
|
}
|
2015-05-11 15:52:30 +08:00
|
|
|
.rtl code {
|
2018-06-08 17:49:31 +08:00
|
|
|
direction: ltr !important;
|
|
|
|
text-align: left !important;
|
2015-05-09 21:56:00 +08:00
|
|
|
}
|
2015-05-11 15:52:30 +08:00
|
|
|
.rtl .pull-left {
|
2015-07-17 09:03:48 +08:00
|
|
|
float: right !important;
|
2015-05-09 21:56:00 +08:00
|
|
|
}
|
2017-08-30 23:01:01 +08:00
|
|
|
.rtl .autocomplete {
|
|
|
|
left: 27px;
|
2015-07-15 18:48:20 +08:00
|
|
|
}
|
|
|
|
|
2017-10-31 02:13:49 +08:00
|
|
|
.rtl .admin-customize .current-style .toggle-mobile {
|
2018-06-08 17:49:31 +08:00
|
|
|
position: static !important;
|
|
|
|
float: left !important;
|
2015-07-15 18:48:20 +08:00
|
|
|
}
|
2017-10-31 02:13:49 +08:00
|
|
|
.rtl .admin-customize .current-style .toggle-maximize {
|
2018-06-08 17:49:31 +08:00
|
|
|
position: static !important;
|
|
|
|
float: left !important;
|
2015-07-15 18:48:20 +08:00
|
|
|
}
|
|
|
|
.rtl .dashboard-left {
|
|
|
|
float: right !important;
|
|
|
|
}
|
|
|
|
.rtl .dashboard-right {
|
|
|
|
float: left !important;
|
2015-05-15 18:03:00 +08:00
|
|
|
}
|
2018-07-19 17:32:36 +08:00
|
|
|
|
|
|
|
// This is for the support_mixed_text_direction setting
|
2018-07-19 17:55:40 +08:00
|
|
|
.cooked ul[dir="ltr"],
|
|
|
|
.d-editor-preview ul[dir="ltr"],
|
|
|
|
.cooked ul[dir="rtl"],
|
|
|
|
.d-editor-preview ul[dir="rtl"] {
|
2018-07-19 17:32:36 +08:00
|
|
|
padding-right: 40px;
|
|
|
|
padding-left: 40px;
|
|
|
|
}
|
2019-10-29 02:09:42 +08:00
|
|
|
|
|
|
|
// Fixes github oneboxes for RTL sites
|
|
|
|
.rtl aside.onebox.githubblob {
|
|
|
|
padding: 12px 25px 12px 12px !important;
|
|
|
|
direction: ltr !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rtl aside.onebox.githubblob .source {
|
|
|
|
background-position: 0 50% !important;
|
|
|
|
padding-right: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rtl pre.onebox code ol.lines {
|
|
|
|
margin: 0 0 0 40px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rtl pre.onebox code ol.lines li:before {
|
|
|
|
right: -40px;
|
|
|
|
padding-left: 5px;
|
|
|
|
padding-right: 0;
|
|
|
|
text-align: right !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rtl pre.onebox code ol.lines li {
|
|
|
|
padding-right: 5px;
|
|
|
|
padding-left: 0;
|
|
|
|
margin-right: 0;
|
|
|
|
border-right: 1px solid #cfcfcf;
|
|
|
|
border-left: none !important;
|
|
|
|
}
|
2020-02-12 04:23:12 +08: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 23:03:43 +08:00
|
|
|
|
|
|
|
.rtl .ace_placeholder {
|
|
|
|
direction: rtl !important;
|
|
|
|
text-align: right !important;
|
|
|
|
|
|
|
|
[dir="ltr"] {
|
|
|
|
text-align: left !important;
|
|
|
|
}
|
|
|
|
}
|