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 <[email protected]>
This commit is contained in:
Andy
2026-02-09 12:31:33 +02:00
committed by StillKnotKnown
co-authored by Claude Opus 4.5
parent ec3cf5f7f0
commit 6b6116a7d5
@@ -606,7 +606,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"
)}