From 9c1768ddb2bb0f1f651a4a78448dac125f7981b2 Mon Sep 17 00:00:00 2001 From: Aneurin Barker Snook Date: Fri, 4 Sep 2026 13:43:57 +0100 Subject: [PATCH] Tint the kanban inbox column lighter than the status columns New --inbox-bg token (light and dark) applied via .kanban__col--inbox so the inbox reads as distinct from "To do" / "Doing" / "Done". Co-Authored-By: Claude Sonnet 5 --- web/src/style.css | 7 +++++++ web/src/views/ProjectView.vue | 7 ++++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/web/src/style.css b/web/src/style.css index 702399f..ee70493 100644 --- a/web/src/style.css +++ b/web/src/style.css @@ -11,6 +11,8 @@ --warn-bg: #fff4e5; --warn-border: #f0c48a; --error: #b3261e; + /* Kanban inbox column: a touch lighter than a status column (var(--bg)). */ + --inbox-bg: #fcfcfd; color-scheme: light dark; } @@ -24,6 +26,7 @@ --warn-bg: #2e2415; --warn-border: #6b5220; --error: #f2b8b5; + --inbox-bg: #202027; } } @@ -406,6 +409,10 @@ h1 { padding: 0.75rem; } +.kanban__col--inbox { + background: var(--inbox-bg); +} + .kanban__head { display: flex; align-items: center; diff --git a/web/src/views/ProjectView.vue b/web/src/views/ProjectView.vue index bbc84c1..921cd96 100644 --- a/web/src/views/ProjectView.vue +++ b/web/src/views/ProjectView.vue @@ -344,7 +344,12 @@ async function onCreateInbox() {

Loading…

-
+
{{ column.title }} {{ column.cards.length }}