Merge pull request #996 from supermueller/resolve-887

Fix multiple select in Internet Explorer 11
This commit is contained in:
Matt Triff 2022-01-11 20:07:58 -05:00 committed by GitHub
commit eef836a037
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -40,7 +40,7 @@ $choices-z-index: 1;
}
&.is-open {
overflow: initial;
overflow: visible;
}
&.is-disabled {
@ -191,6 +191,10 @@ $choices-z-index: 1;
margin: 0;
padding-left: 0;
list-style: none;
&[aria-expanded] {
@extend .choices__list--dropdown;
}
}
.#{$choices-selector}__list--single {