diff options
| author | Jonah Bishop <git@borngeek.com> | 2018-07-10 11:10:05 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2018-07-10 16:22:09 -0400 |
| commit | 263e03941187f4ffdd09b7e7ecee442717064083 (patch) | |
| tree | 2c7b4d5be6504014be5d670dd7219ee1449247d2 | |
| parent | 952f05a6db2665d83c04075119285f2164b03432 (diff) | |
Fixed #29045 -- Fixed admin CSS so that select multiple elements honor the HTML size attribute.
| -rw-r--r-- | django/contrib/admin/static/admin/css/base.css | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/django/contrib/admin/static/admin/css/base.css b/django/contrib/admin/static/admin/css/base.css index 34c0b90e40..fd011a3f9a 100644 --- a/django/contrib/admin/static/admin/css/base.css +++ b/django/contrib/admin/static/admin/css/base.css @@ -441,6 +441,8 @@ select { } select[multiple] { + /* Allow HTML size attribute to override the height in the rule above. */ + height: auto; min-height: 150px; } |
