Fixed #29045 -- Fixed admin CSS so that select multiple elements honor the HTML size attribute.

This commit is contained in:
Jonah Bishop 2018-07-10 11:10:05 -04:00 committed by Tim Graham
parent 952f05a6db
commit 263e039411
1 changed files with 2 additions and 0 deletions

View File

@ -441,6 +441,8 @@ select {
}
select[multiple] {
/* Allow HTML size attribute to override the height in the rule above. */
height: auto;
min-height: 150px;
}