style(graph): use graph-supplied lane color for behind segments
publish / Build and publish Windows installer (release) Successful in 13m10s
publish / Build and publish Ubuntu AppImage (release) Successful in 16m55s
publish / Build and publish AUR packages (release) Successful in 19m49s

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
This commit is contained in:
2026-09-11 14:26:43 +02:00
parent be073a8f39
commit 40b871f888
+1 -2
View File
@@ -3368,10 +3368,9 @@
stroke: var(--color-sync-ahead); stroke: var(--color-sync-ahead);
filter: drop-shadow(0 0 3px color-mix(in srgb, var(--color-sync-ahead) 24%, transparent)); 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 { .graph-svg path.graph-segment-behind {
stroke: var(--color-sync-behind);
stroke-dasharray: 4 4; 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 { .graph-svg path.graph-ref-connector {
opacity: 0.35; opacity: 0.35;