feat(spa): search-screen mutation surface — add-to, multi-select, add-all, smart collection (#208)

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
2026-07-10 00:11:24 +02:00
co-authored by Claude Fable 5
parent 4c6b10a751
commit 6426c01efa
6 changed files with 695 additions and 6 deletions
+16
View File
@@ -4148,3 +4148,19 @@
border-color: var(--ctv-accent);
color: var(--ctv-text);
}
/* Search multi-select action bar (#208): appears below the actionbar while items are selected. */
.ctv-search-selectbar {
display: flex;
align-items: center;
gap: var(--space-5, 10px);
border: 1px solid var(--ctv-accent);
border-radius: var(--radius-md, 7px);
background: var(--ctv-accent-soft);
padding: var(--space-4, 8px) var(--space-7, 16px);
}
.ctv-search-selectbar-count {
font-weight: 600;
color: var(--ctv-text);
}