Commit 546149f0 authored by Mark Otto's avatar Mark Otto
Browse files

Fixes #19771: Enable .form-control-sm/lg on select.form-control

parent d8c898b1
Showing with 12 additions and 0 deletions
+12 -0
......@@ -153,12 +153,24 @@ select.form-control {
@include border-radius($input-border-radius-sm);
}
select.form-control-sm {
&:not([size]):not([multiple]) {
height: $input-height-sm;
}
}
.form-control-lg {
padding: $input-padding-y-lg $input-padding-x-lg;
font-size: $font-size-lg;
@include border-radius($input-border-radius-lg);
}
select.form-control-lg {
&:not([size]):not([multiple]) {
height: $input-height-lg;
}
}
// Form groups
//
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment