Fixed #29045 -- Fixed admin CSS so that select multiple elements honor the HTML size attribute.
This commit is contained in:
parent
952f05a6db
commit
263e039411
|
@ -441,6 +441,8 @@ select {
|
|||
}
|
||||
|
||||
select[multiple] {
|
||||
/* Allow HTML size attribute to override the height in the rule above. */
|
||||
height: auto;
|
||||
min-height: 150px;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue