diff options
| author | Mark Otto <[email protected]> | 2018-02-11 15:09:05 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2018-02-11 15:09:05 -0800 |
| commit | 8dd1fe38932c47d9aa93e401aa1fc65f26207add (patch) | |
| tree | 879977433b511f96bee2cea1546950ad1c819da6 | |
| parent | 98111214c270768606cb6ca9d8b4db675bb96ad1 (diff) | |
| download | bootstrap-8dd1fe38932c47d9aa93e401aa1fc65f26207add.tar.xz bootstrap-8dd1fe38932c47d9aa93e401aa1fc65f26207add.zip | |
Fix border-radius on Browse button for custom file input inside input groups (#25356)
| -rw-r--r-- | scss/_input-group.scss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scss/_input-group.scss b/scss/_input-group.scss index 2f7b05d5d..78d7bc99a 100644 --- a/scss/_input-group.scss +++ b/scss/_input-group.scss @@ -46,9 +46,9 @@ align-items: center; &:not(:last-child) .custom-file-label, - &:not(:last-child) .custom-file-label::before { @include border-right-radius(0); } + &:not(:last-child) .custom-file-label::after { @include border-right-radius(0); } &:not(:first-child) .custom-file-label, - &:not(:first-child) .custom-file-label::before { @include border-left-radius(0); } + &:not(:first-child) .custom-file-label::after { @include border-left-radius(0); } } } |
