From bd858f0ceb3989e7266d75be97e625ece62c81bd Mon Sep 17 00:00:00 2001 From: Lodder Date: Tue, 3 Oct 2017 05:00:57 +0100 Subject: [PATCH] Fix custom-select with "multiple" attribute (#23055) --- scss/_custom-forms.scss | 5 +++++ 1 file changed, 5 insertions(+) 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;