mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-08 04:50:12 +02:00
add VirtualMultiSelect component for filters
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
.container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
.list-container {
|
||||
position: relative;
|
||||
flex-shrink: 0;
|
||||
overflow: hidden;
|
||||
background-color: var(--theme-colors-surface);
|
||||
}
|
||||
|
||||
.search-input {
|
||||
border-bottom: 1px solid var(--theme-colors-border);
|
||||
}
|
||||
|
||||
.selected-option {
|
||||
cursor: pointer;
|
||||
transition: background-color 0.15s ease;
|
||||
}
|
||||
|
||||
.selected-option:hover {
|
||||
background-color: alpha(var(--theme-colors-surface), 0.6);
|
||||
}
|
||||
Reference in New Issue
Block a user