From 3e2885f64d1be2869bcc873c75bfd33c98ae1faa Mon Sep 17 00:00:00 2001 From: Christoph Brandau Date: Mon, 6 Jul 2026 11:35:46 +0200 Subject: [PATCH] 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. --- src/app.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/app.css b/src/app.css index 6dac7bd..8f4b380 100644 --- a/src/app.css +++ b/src/app.css @@ -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); } -- 2.54.0