diff options
| author | Gaƫl Poupard <[email protected]> | 2020-06-26 17:06:20 +0300 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2020-12-04 07:52:03 +0200 |
| commit | 9488978fb55286ba83e8193a871d1ff9815045b9 (patch) | |
| tree | abb461d46722f107e54156709c88cf37ed9e24a6 /scss/forms/_input-group.scss | |
| parent | 71ecc3323fb60ea05456470d10d17b614fe6dc04 (diff) | |
| download | bootstrap-9488978fb55286ba83e8193a871d1ff9815045b9.tar.xz bootstrap-9488978fb55286ba83e8193a871d1ff9815045b9.zip | |
feat(RTL): implement RTL
Using RTLCSS directives, renaming things to use logical names and following best practices.
Diffstat (limited to 'scss/forms/_input-group.scss')
| -rw-r--r-- | scss/forms/_input-group.scss | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scss/forms/_input-group.scss b/scss/forms/_input-group.scss index 2729eccbd..140052936 100644 --- a/scss/forms/_input-group.scss +++ b/scss/forms/_input-group.scss @@ -98,14 +98,14 @@ &:not(.has-validation) { > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu), > .dropdown-toggle:nth-last-child(n + 3) { - @include border-right-radius(0); + @include border-end-radius(0); } } &.has-validation { > :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu), > .dropdown-toggle:nth-last-child(n + 4) { - @include border-right-radius(0); + @include border-end-radius(0); } } @@ -116,6 +116,6 @@ > :not(:first-child):not(.dropdown-menu)#{$validation-messages} { margin-left: -$input-border-width; - @include border-left-radius(0); + @include border-start-radius(0); } } |
