Skip to content

Commit

Permalink
Support custom-select sizing in input-group (#27677)
Browse files Browse the repository at this point in the history
  • Loading branch information
ysds authored and XhmikosR committed Nov 17, 2018
1 parent 4734a92 commit 5042b3c
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions scss/_input-group.scss
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@
// manipulation.

.input-group-lg > .form-control,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
Expand All @@ -140,6 +141,7 @@
}

.input-group-sm > .form-control,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
Expand All @@ -151,6 +153,11 @@
@include border-radius($input-border-radius-sm);
}

.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
padding-right: ($custom-select-padding-x + $custom-select-indicator-padding);
}


// Prepend and append rounded corners
//
Expand Down

0 comments on commit 5042b3c

Please sign in to comment.