From 91398174e60e586fab27aa4aaf78555977de2787 Mon Sep 17 00:00:00 2001 From: Falkan Date: Tue, 17 Mar 2026 18:31:23 -0400 Subject: [PATCH] docs: log three backlog improvements --- BACKLOG.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/BACKLOG.md b/BACKLOG.md index 9dc9b97..fb72930 100644 --- a/BACKLOG.md +++ b/BACKLOG.md @@ -10,4 +10,19 @@ Issues and improvements to address eventually. Not blockers. ## Improvements -*(none yet)* +### UI: "Clear" button hover feedback in light/Dan mode +In dark mode the "Clear" button text lightens on hover, giving visual feedback. In light +mode and Dan mode it currently does nothing visible. Should have a matching subtle +highlight (e.g. text darkens, underline appears, or border darkens). + +### Admin: user-provided IDs for units and groups +When creating a unit or group, allow the user to optionally supply their own ID. +- If the ID field is left empty, auto-generate it by kebab-casing the label (live + preview as the user types the label). +- If the user types into the ID field, stop auto-generating and use what they typed. +- Validate: IDs must be unique and slug-safe. + +### Admin: "Delete" action in the bulk actions menu +Add a "Delete" option to the bulk action dropdown so multiple units can be deleted at +once. Should show a confirmation dialog listing the units to be deleted before +committing. Related to the immediate fix below (ungrouped bulk actions).