Skip to content

Commit c4dca44

Browse files
samejrclaude
andcommitted
fix(webapp): use indigo for the column reorder drop indicator
The drop line was blue-500 while every selection control around it (the row checkboxes, the dialog's radios) is indigo. Note bg-primary is apple/green in this theme, so this uses indigo-500 directly — the token those controls use. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
1 parent a8f55e4 commit c4dca44

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/webapp/app/components/runs/v3/RunsDisplayOptions.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ function ColumnRow({
337337
onDrop();
338338
}}
339339
>
340-
{isOver && <div className="absolute inset-x-0 top-0 h-0.5 bg-blue-500" />}
340+
{isOver && <div className="absolute inset-x-0 top-0 h-0.5 bg-indigo-500" />}
341341
{/* Native label so the whole name area toggles the column, matching CheckboxWithLabel. */}
342342
<label
343343
className={cn(

0 commit comments

Comments
 (0)