From: Lodder Date: Tue, 3 Oct 2017 04:00:57 +0000 (+0100) Subject: Fix custom-select with "multiple" attribute (#23055) X-Git-Tag: v4.0.0-beta.2~117 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bd858f0ceb3989e7266d75be97e625ece62c81bd;p=thirdparty%2Fbootstrap.git Fix custom-select with "multiple" attribute (#23055) --- diff --git a/scss/_custom-forms.scss b/scss/_custom-forms.scss index f471be6227..41dae4d760 100644 --- a/scss/_custom-forms.scss +++ b/scss/_custom-forms.scss @@ -162,6 +162,11 @@ } } + &[multiple] { + height: auto; + background-image: none; + } + &:disabled { color: $custom-select-disabled-color; background-color: $custom-select-disabled-bg;