From dc5ba144f1caffdd89f63c0c588c88e2da35f6b6 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Mon, 24 Feb 2020 12:40:06 +0100 Subject: [PATCH] ui: fix height of multiple select input --- passbook/static/static/passbook/pf.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/passbook/static/static/passbook/pf.css b/passbook/static/static/passbook/pf.css index 483c05d08..8ba1ae9d8 100644 --- a/passbook/static/static/passbook/pf.css +++ b/passbook/static/static/passbook/pf.css @@ -16,6 +16,11 @@ max-height: var(--pf-c-login__main-footer-links-item-link-svg--Height); } +/* fix multiple selects height */ +select[multiple] { + height: initial; +} + /* Selector */ .selector { display: flex;