From 83a64b88e7054dc9c9535c2e37bda7d19538120b Mon Sep 17 00:00:00 2001 From: Andy <119136210+AndyMik90@users.noreply.github.com> Date: Tue, 27 Jan 2026 12:52:14 +0100 Subject: [PATCH] auto-claude: subtask-1-1 - Remove amber lock indicator line from kanban resize handle (#1557) Replace bg-amber-500/20 and hover:bg-amber-500/30 with bg-transparent so the resize handle is invisible when a column is locked. Keeps cursor-not-allowed and tooltip behavior intact. Co-authored-by: Claude Opus 4.5 --- apps/frontend/src/renderer/components/KanbanBoard.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/frontend/src/renderer/components/KanbanBoard.tsx b/apps/frontend/src/renderer/components/KanbanBoard.tsx index 53d92b10..8440f546 100644 --- a/apps/frontend/src/renderer/components/KanbanBoard.tsx +++ b/apps/frontend/src/renderer/components/KanbanBoard.tsx @@ -597,7 +597,7 @@ const DroppableColumn = memo(function DroppableColumn({ status, tasks, onTaskCli "absolute right-0 top-0 bottom-0 w-1 touch-none z-10", "transition-colors duration-150", isLocked - ? "cursor-not-allowed bg-amber-500/20 hover:bg-amber-500/30" + ? "cursor-not-allowed bg-transparent" : "cursor-col-resize hover:bg-primary/40", isResizing && !isLocked && "bg-primary/60" )}