1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-09-02 09:52:43 +02:00

Fix incorrect select height calculation (#21171)

This commit is contained in:
Florian Schlittenbauer
2016-11-28 22:33:11 +01:00
committed by Mark Otto
parent bccbc4f0c3
commit 959c4e527c
2 changed files with 2 additions and 2 deletions

View File

@@ -67,7 +67,7 @@
select.form-control {
&:not([size]):not([multiple]) {
$select-border-width: ($border-width * 2);
height: calc(#{$input-height} - #{$select-border-width});
height: calc(#{$input-height} + #{$select-border-width});
}
&:focus::-ms-value {