fix(styles): show graph hover branches only on gutter hover

Hover behavior for graph branch highlights was adjusted to limit the
opacity/transform changes to the gutter hover state. This prevents the
highlight from triggering when hovering over the graph rows, reducing
unintended visual effects.
This commit is contained in:
Christoph Brandau
2026-07-06 11:35:46 +02:00
parent eac0f059fa
commit 3e2885f64d
+1 -2
View File
@@ -2223,8 +2223,7 @@
transform: translateY(-50%) translateX(-4px);
transition: opacity 120ms ease, transform 120ms ease;
}
.graph-gutter:hover .graph-hover-branches,
.graph-row:hover .graph-hover-branches {
.graph-gutter:hover .graph-hover-branches {
opacity: 1;
transform: translateY(-50%) translateX(0);
}