diff --git a/assets/scss/rtl/_main.scss b/assets/scss/rtl/_main.scss deleted file mode 100644 index de6de1067..000000000 --- a/assets/scss/rtl/_main.scss +++ /dev/null @@ -1,55 +0,0 @@ -body:lang(fa), -body:lang(ar), -body:lang(az), -body:lang(dv), -body:lang(he), -body:lang(ku), -body:lang(ur) { - @import "spacing"; - - direction: rtl; - text-align: right; - - .dropdown-menu { - text-align: right; - } - - .text-right { - text-align: left !important; - } - - pre { - text-align: left; - direction: ltr; - } - - .td-rss-button { - left: 1rem !important; - right: auto !important; - } -} - -body:lang(fa) { - @import url("https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v33.003/Vazirmatn-font-face.css"); - font-family: "Vazirmatn", "Open Sans", -apple-system, BlinkMacSystemFont, - "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", - "Segoe UI Emoji", "Segoe UI Symbol"; -} - -body:lang(he) { - @if $td-enable-google-fonts { - @import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700&display=swap"); - } - font-family: "Rubik", "Open Sans", -apple-system, BlinkMacSystemFont, - "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", - "Segoe UI Emoji", "Segoe UI Symbol"; -} - -body:lang(ar) { - @if $td-enable-google-fonts { - @import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700&display=swap"); - } - font-family: "Tajawal", "Open Sans", -apple-system, BlinkMacSystemFont, - "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", - "Segoe UI Emoji", "Segoe UI Symbol"; -} diff --git a/assets/scss/rtl/_spacing.scss b/assets/scss/rtl/_spacing.scss deleted file mode 100644 index 6ead6b0dd..000000000 --- a/assets/scss/rtl/_spacing.scss +++ /dev/null @@ -1,87 +0,0 @@ -@each $breakpoint in map-keys($grid-breakpoints) { - @include media-breakpoint-up($breakpoint) { - $infix: breakpoint-infix($breakpoint, $grid-breakpoints); - - @each $prop, $abbrev in (margin: m, padding: p) { - @each $size, $length in $spacers { - .#{$abbrev}#{$infix}-#{$size} { - #{$prop}: $length !important; - } - - .#{$abbrev}t#{$infix}-#{$size}, - .#{$abbrev}y#{$infix}-#{$size} { - #{$prop}-top: $length !important; - } - - .#{$abbrev}r#{$infix}-#{$size}, - .#{$abbrev}x#{$infix}-#{$size} { - #{$prop}-inline-end: $length !important; - } - - .#{$abbrev}b#{$infix}-#{$size}, - .#{$abbrev}y#{$infix}-#{$size} { - #{$prop}-bottom: $length !important; - } - - .#{$abbrev}l#{$infix}-#{$size}, - .#{$abbrev}x#{$infix}-#{$size} { - #{$prop}-inline-start: $length !important; - } - } - } - - // Negative margins (e.g., where `.mb-n1` is negative version of `.mb-1`) - @each $size, $length in $spacers { - @if $size !=0 { - .m#{$infix}-n#{$size} { - margin: -$length !important; - } - - .mt#{$infix}-n#{$size}, - .my#{$infix}-n#{$size} { - margin-top: -$length !important; - } - - .mr#{$infix}-n#{$size}, - .mx#{$infix}-n#{$size} { - margin-right: -$length !important; - } - - .mb#{$infix}-n#{$size}, - .my#{$infix}-n#{$size} { - margin-bottom: -$length !important; - } - - .ml#{$infix}-n#{$size}, - .mx#{$infix}-n#{$size} { - margin-left: -$length !important; - } - } - } - - // Some special margin utils - .m#{$infix}-auto { - margin: auto !important; - } - - .mt#{$infix}-auto, - .my#{$infix}-auto { - margin-top: auto !important; - } - - .mr#{$infix}-auto, - .mx#{$infix}-auto { - margin-right: auto !important; - } - - .mb#{$infix}-auto, - .my#{$infix}-auto { - margin-bottom: auto !important; - } - - .ml#{$infix}-auto, - .mx#{$infix}-auto { - margin-left: auto !important; - } - } -}