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 <noreply@anthropic.com>
This commit is contained in:
Andy
2026-01-27 12:52:14 +01:00
committed by GitHub
parent 1c6266025f
commit 83a64b88e7
@@ -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"
)}