feat(KB-047): add column filter to list view

- Add selectedColumn state for filtering tasks by column
- Make drop zones clickable to filter by column
- Add visual active state styling for selected column filter
- Add 'Clear' button to reset column filter
- Integrate column filter with existing hideDoneTasks feature
- Add comprehensive tests for column filter functionality
This commit is contained in:
gsxdsm
2026-03-29 19:49:28 -07:00
parent 435d261a58
commit 6ef6de3ba9
3 changed files with 224 additions and 9 deletions

View File

@@ -2407,6 +2407,12 @@ body {
border-color: var(--text-muted);
}
.list-drop-zone.active {
border-color: var(--todo);
background: rgba(88, 166, 255, 0.15);
box-shadow: 0 0 0 1px var(--todo);
}
.list-drop-zone.drag-over {
border-color: var(--todo);
box-shadow: 0 0 0 1px var(--todo);