From: Chris Rebert Date: Sun, 15 Nov 2015 22:09:12 +0000 (-0800) Subject: Fix #17001 in v4 X-Git-Tag: v4.0.0-alpha.2~96^2~2^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1e6f23ce922b0310bda5a4a9cf9ebd4ae6881f0c;p=thirdparty%2Fbootstrap.git Fix #17001 in v4 Refs #18253 [skip sauce] --- diff --git a/scss/_input-group.scss b/scss/_input-group.scss index 3b4ef632cb..ad09d28a89 100644 --- a/scss/_input-group.scss +++ b/scss/_input-group.scss @@ -19,6 +19,10 @@ // proper border colors. position: relative; z-index: 2; + // Bring the "active" form control to the front + @include hover-focus-active { + z-index: 3; + } @if $enable-flex { flex: 1; } @else { @@ -160,7 +164,7 @@ } // Bring the "active" button to the front @include hover-focus-active { - z-index: 2; + z-index: 3; } } @@ -176,6 +180,10 @@ > .btn-group { z-index: 2; margin-left: -1px; + // Because specificity + @include hover-focus-active { + z-index: 3; + } } } }