mirror of https://github.com/ColorlibHQ/AdminLTE
Fix RTL for sidebar menu
parent
a84c1ee098
commit
060f9082a6
|
@ -9,6 +9,7 @@
|
||||||
|
|
||||||
.right {
|
.right {
|
||||||
@include transition(transform $transition-fn $transition-speed);
|
@include transition(transform $transition-fn $transition-speed);
|
||||||
|
transform: none #{"/*rtl:rotate(-180deg)*/"};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -57,7 +58,7 @@
|
||||||
> .nav-link {
|
> .nav-link {
|
||||||
svg.right,
|
svg.right,
|
||||||
i.right {
|
i.right {
|
||||||
@include rotate(-90deg);
|
transform: rotate(-90deg) #{"/*rtl:rotate(-90deg)*/"};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,9 +16,9 @@
|
||||||
// #{$property}: calc(#{$expression});
|
// #{$property}: calc(#{$expression});
|
||||||
// }
|
// }
|
||||||
|
|
||||||
@mixin rotate($value) {
|
// @mixin rotate($value) {
|
||||||
transform: rotate($value);
|
// transform: rotate($value);
|
||||||
}
|
// }
|
||||||
|
|
||||||
// @mixin animation($animation) {
|
// @mixin animation($animation) {
|
||||||
// animation: $animation;
|
// animation: $animation;
|
||||||
|
|
Loading…
Reference in New Issue