From: Mark Otto Date: Sun, 11 Feb 2018 23:09:05 +0000 (-0800) Subject: Fix border-radius on Browse button for custom file input inside input groups (#25356) X-Git-Tag: v4.1.0~112 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8dd1fe38932c47d9aa93e401aa1fc65f26207add;p=thirdparty%2Fbootstrap.git Fix border-radius on Browse button for custom file input inside input groups (#25356) --- diff --git a/scss/_input-group.scss b/scss/_input-group.scss index 2f7b05d5d8..78d7bc99aa 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); } } }