Fix input options max-height

This commit is contained in:
Konstantinos Triantafyllou 2022-06-20 13:29:41 +03:00
parent 91ffc2ccce
commit 5940eee3a0
2 changed files with 6 additions and 6 deletions

View File

@ -194,7 +194,7 @@
/* Options */ /* Options */
.uk-dropdown.options { .uk-dropdown.options {
max-height: 216px; /* 34px each line height, 5+5 margin top+bottom, 1+1 border top+bottom */ max-height: 198px; /* 31px each line height, 5+5 margin top+bottom, 1+1 border top+bottom */
overflow: auto; overflow: auto;
} }

View File

@ -207,11 +207,6 @@
line-height: 18px; line-height: 18px;
} }
& .uk-dropdown.options {
max-height: 216px; /* 34px each line height, 5+5 margin top+bottom, 1+1 border top+bottom */
overflow: auto;
}
&:not(.focused) > .input-box .input.search { &:not(.focused) > .input-box .input.search {
opacity: 0; opacity: 0;
} }
@ -272,3 +267,8 @@
} }
} }
.uk-dropdown.options {
max-height: 198px; /* 31px each line height, 5+5 margin top+bottom, 1+1 border top+bottom */
overflow: auto;
}