From 40b871f888097d950f1d70716fc2c5dc9c98a5d4 Mon Sep 17 00:00:00 2001 From: Christoph Brandau Date: Fri, 11 Sep 2026 14:26:43 +0200 Subject: [PATCH] style(graph): use graph-supplied lane color for behind segments Remove hardcoded stroke and drop-shadow for "behind" graph segments. This allows the lane color provided by the graph to determine the stroke. Keep the dashed stroke pattern so "behind" status remains visually clear. - Remove explicit stroke and filter for behind segments - Add clarifying comment and retain dash pattern --- src/app.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/app.css b/src/app.css index f93b945..fe46bab 100644 --- a/src/app.css +++ b/src/app.css @@ -3368,10 +3368,9 @@ stroke: var(--color-sync-ahead); filter: drop-shadow(0 0 3px color-mix(in srgb, var(--color-sync-ahead) 24%, transparent)); } + /* Keep the lane color supplied by the graph; dashes indicate behind status. */ .graph-svg path.graph-segment-behind { - stroke: var(--color-sync-behind); stroke-dasharray: 4 4; - filter: drop-shadow(0 0 3px color-mix(in srgb, var(--color-sync-behind) 20%, transparent)); } .graph-svg path.graph-ref-connector { opacity: 0.35;