2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-20 20:00:36 +03:00

Merge pull request #20874 from twbs/select-height

Match the height of select.form-control with input.form-control
This commit is contained in:
Mark Otto
2016-10-09 18:08:29 -07:00
committed by GitHub
+2 -1
View File
@@ -66,7 +66,8 @@
select.form-control { select.form-control {
&:not([size]):not([multiple]) { &:not([size]):not([multiple]) {
height: $input-height; $select-border-width: ($border-width * 2);
height: calc(#{$input-height} - #{$select-border-width});
} }
&:focus::-ms-value { &:focus::-ms-value {