diff options
author | Chocobozzz <me@florianbigard.com> | 2021-06-07 17:38:31 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-06-07 18:14:05 +0200 |
commit | 27bc95867442c772841fb183a625bbda61dede51 (patch) | |
tree | 6fe20951f1109c1f5388d9a681f0df0758d463e0 /client/src/sass/bootstrap.scss | |
parent | 8beea2d37d90e9a12d895f4a9eebc1e532313d8c (diff) | |
download | PeerTube-27bc95867442c772841fb183a625bbda61dede51.tar.gz PeerTube-27bc95867442c772841fb183a625bbda61dede51.tar.zst PeerTube-27bc95867442c772841fb183a625bbda61dede51.zip |
Bidi support
Diffstat (limited to 'client/src/sass/bootstrap.scss')
-rw-r--r-- | client/src/sass/bootstrap.scss | 29 |
1 files changed, 24 insertions, 5 deletions
diff --git a/client/src/sass/bootstrap.scss b/client/src/sass/bootstrap.scss index 548e55e1e..501587eb2 100644 --- a/client/src/sass/bootstrap.scss +++ b/client/src/sass/bootstrap.scss | |||
@@ -62,7 +62,7 @@ $icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/'; | |||
62 | font-size: 15px; | 62 | font-size: 15px; |
63 | 63 | ||
64 | .dropdown-header { | 64 | .dropdown-header { |
65 | padding-left: 1rem; | 65 | @include padding-left(1rem); |
66 | } | 66 | } |
67 | 67 | ||
68 | .dropdown-item { | 68 | .dropdown-item { |
@@ -105,7 +105,7 @@ $icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/'; | |||
105 | } | 105 | } |
106 | 106 | ||
107 | .modal-dialog { | 107 | .modal-dialog { |
108 | text-align: left; | 108 | text-align: start; |
109 | 109 | ||
110 | &:not(.modal-lg):not(.modal-xl) { | 110 | &:not(.modal-lg):not(.modal-xl) { |
111 | min-width: 500px; | 111 | min-width: 500px; |
@@ -153,10 +153,10 @@ $icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/'; | |||
153 | 153 | ||
154 | .inputs { | 154 | .inputs { |
155 | margin-bottom: 0; | 155 | margin-bottom: 0; |
156 | text-align: right; | 156 | text-align: end; |
157 | 157 | ||
158 | > .peertube-button:not(:first-child) { | 158 | > .peertube-button:not(:first-child) { |
159 | margin-left: 10px; | 159 | @include margin-left(10px); |
160 | } | 160 | } |
161 | } | 161 | } |
162 | } | 162 | } |
@@ -342,7 +342,7 @@ ngb-tooltip-window { | |||
342 | position: relative; | 342 | position: relative; |
343 | 343 | ||
344 | input { | 344 | input { |
345 | padding-right: 1.5rem !important; | 345 | @include padding-right(1.5rem !important); |
346 | } | 346 | } |
347 | 347 | ||
348 | .form-control-clear { | 348 | .form-control-clear { |
@@ -392,3 +392,22 @@ ngb-tooltip-window { | |||
392 | border-left-color: pvar(--mainColor); | 392 | border-left-color: pvar(--mainColor); |
393 | } | 393 | } |
394 | } | 394 | } |
395 | |||
396 | // Override these properties for Bidi support | ||
397 | @each $size, $length in $spacers { | ||
398 | .ml-#{$size} { | ||
399 | @include margin-left($length); | ||
400 | } | ||
401 | |||
402 | .mr-#{$size} { | ||
403 | @include margin-right($length); | ||
404 | } | ||
405 | |||
406 | .pl-#{$size} { | ||
407 | @include padding-left($length); | ||
408 | } | ||
409 | |||
410 | .pr-#{$size} { | ||
411 | @include padding-right($length); | ||
412 | } | ||
413 | } | ||