diff options
| author | Chris Rebert <[email protected]> | 2016-02-07 11:51:39 -0800 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2016-02-07 11:51:39 -0800 |
| commit | 1dc6e4c9e50298faa1e137ef98b3ee627a5cb6d0 (patch) | |
| tree | 24dc9a06a0f93aec69854ae581256ed8215c13f3 | |
| parent | f30876c8bcf9fa2fa73b360a370b52fb61091093 (diff) | |
| parent | e7b0ccff63f75c264ae014186ee143b2ddb68038 (diff) | |
| download | bootstrap-1dc6e4c9e50298faa1e137ef98b3ee627a5cb6d0.tar.xz bootstrap-1dc6e4c9e50298faa1e137ef98b3ee627a5cb6d0.zip | |
Merge pull request #19115 from vsn4ik/v4-dev-fix-css3-not-selector
Fix css3 :not selector
| -rw-r--r-- | scss/_forms.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/_forms.scss b/scss/_forms.scss index 03f140906..5dbfbfb5e 100644 --- a/scss/_forms.scss +++ b/scss/_forms.scss @@ -55,7 +55,7 @@ } select.form-control { - &:not([size], [multiple]) { + &:not([size]):not([multiple]) { height: $input-height; } } |
