implement list multiselection

This commit is contained in:
jeffvli
2025-11-08 15:35:10 -08:00
parent 7a4326f98d
commit a87d5ef8d8
6 changed files with 217 additions and 20 deletions
@@ -1,13 +1,26 @@
.container {
position: relative;
display: flex;
flex-direction: column;
width: 100%;
padding: var(--theme-spacing-md);
overflow: hidden;
user-select: none;
background-color: var(--theme-colors-surface);
border-radius: var(--theme-radius-md);
}
.container.previewed {
outline: 2px dashed var(--theme-colors-primary);
outline-offset: 2px;
opacity: 0.7;
}
.container.selected {
outline: 2px solid var(--theme-colors-primary);
outline-offset: 2px;
}
.image-container {
position: relative;
width: 100%;