diff options
| author | ysds <[email protected]> | 2018-05-07 17:30:43 +0900 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2018-05-07 11:30:43 +0300 |
| commit | 788f3e6802df884acc0276cf8ba24b9a58d5b3c5 (patch) | |
| tree | 06b3a4fa6cc8c6eade3f23817f47d6aefc6469c0 | |
| parent | e5e6d0c86d1456ce43fb2ae84983f7cbe2e707f6 (diff) | |
| download | bootstrap-788f3e6802df884acc0276cf8ba24b9a58d5b3c5.tar.xz bootstrap-788f3e6802df884acc0276cf8ba24b9a58d5b3c5.zip | |
Fix z-index target (#26361)
| -rw-r--r-- | scss/_input-group.scss | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/scss/_input-group.scss b/scss/_input-group.scss index a559f15df..a8b0e59ed 100644 --- a/scss/_input-group.scss +++ b/scss/_input-group.scss @@ -21,11 +21,6 @@ width: 1%; margin-bottom: 0; - // Bring the "active" form control to the top of surrounding elements - &:focus { - z-index: 3; - } - + .form-control, + .custom-select, + .custom-file { @@ -33,6 +28,13 @@ } } + // Bring the "active" form control to the top of surrounding elements + > .form-control:focus, + > .custom-select:focus, + > .custom-file .custom-file-input:focus ~ .custom-file-label { + z-index: 3; + } + > .form-control, > .custom-select { &:not(:last-child) { @include border-right-radius(0); } |
