feat (ui): series onthouden in pulldown menu

This commit is contained in:
kodi
2026-03-09 14:52:36 +01:00
parent 0a294e9bd5
commit 836d89f80e
4 changed files with 67 additions and 18 deletions
+21
View File
@@ -120,6 +120,27 @@ body {
padding-right: 8px;
}
.search-combobox {
position: relative;
}
.combobox-dropdown {
position: absolute;
left: 0;
right: 0;
top: calc(100% - 6px);
z-index: 20;
background: #ffffff;
border: 1px solid #d7dee9;
border-radius: 6px;
box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
padding: 6px;
}
#rememberedDropdownList {
max-height: 220px;
}
.stack {
display: flex;
flex-direction: column;