discourse/app/assets/stylesheets/common/base/rtl.scss

41 lines
1.4 KiB
SCSS
Raw Normal View History

// Right to left styles.
// *** These styles are all going to be flipped by the r2 gem ***
// There may be a 'do not flip' flag that can be used, but I haven't found it.
2014-07-10 12:36:19 -04:00
// Keep the topic admin menu on the page
.rtl .topic-admin-menu {
right: 0 !important;
}
2014-07-10 12:36:19 -04:00
// This is used to flip the .fa-caret-right icon
@mixin rotate( $degrees ) {
-webkit-transform: rotate(#{$degrees}deg);
-moz-transform: rotate(#{$degrees}deg);
-ms-transform: rotate(#{$degrees}deg);
-o-transform: rotate(#{$degrees}deg);
transform: rotate(#{$degrees}deg);
filter: progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=#{cos($degrees)}, M12=-#{sin($degrees)}, M21=#{sin($degrees)}, M22=#{cos($degrees)});
-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-10 12:36:19 -04:00
// Get the right caret to point left
.rtl .fa-caret-right {
@include rotate(180);
}
2014-07-10 12:36:19 -04:00
// Changes the triangle arrow direction in .nav-stacked .active
// The 'left' and 'right' in these selectors is not being flipped by r2.
.rtl .nav-stacked .active > a::after {
border-left-color: transparent !important;
border-right-color: $secondary !important;
2014-07-10 12:36:19 -04:00
}
.rtl code {
2015-05-09 09:56:00 -04:00
direction: ltr !important;
text-aligh: left !important;
}
.rtl .pull-left {
2015-05-09 09:56:00 -04:00
float:right !important;
}