add VirtualMultiSelect component for filters

This commit is contained in:
jeffvli
2026-01-17 16:25:12 -08:00
parent d793e67b56
commit 8c5188dfd0
4 changed files with 453 additions and 0 deletions
@@ -0,0 +1,29 @@
.row {
padding: var(--theme-spacing-xs) var(--theme-spacing-sm);
border: 1px solid transparent;
border-radius: var(--theme-radius-md);
}
.row:hover {
cursor: pointer;
background-color: alpha(var(--theme-colors-background), 0.5);
}
.row-image {
flex-shrink: 0;
width: 40px;
height: 40px;
}
.row-content {
flex: 1;
min-width: 0;
}
.row.selected {
background-color: var(--theme-colors-surface);
}
.row[data-focused='true'] {
border: 1px solid var(--theme-colors-primary);
}