From f218d2c469d95d446d1bccca3c28468f51d7ad7c Mon Sep 17 00:00:00 2001 From: Amadeus Demarzi Date: Wed, 20 May 2026 12:24:22 -0700 Subject: [PATCH 1/2] Revert "bugfix: gutter button highlight issue fix" This reverts commit d97d9c13504136398b6433ff1c9dedd2d41fa569. --- packages/diffs/src/style.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/packages/diffs/src/style.css b/packages/diffs/src/style.css index 4cda16a95..090f43f4d 100644 --- a/packages/diffs/src/style.css +++ b/packages/diffs/src/style.css @@ -1712,7 +1712,13 @@ position: relative; z-index: 4; touch-action: none; - overflow: hidden; + + &::before { + content: ''; + display: block; + position: absolute; + inset: 0 -4px; + } } /* Decoration Bars */ From ef8e71b8894f189bc6444c52870673515fc623e1 Mon Sep 17 00:00:00 2001 From: Amadeus Demarzi Date: Wed, 20 May 2026 12:35:06 -0700 Subject: [PATCH 2/2] Better fix for the overlay bug --- packages/diffs/src/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/diffs/src/style.css b/packages/diffs/src/style.css index 090f43f4d..85a15f21c 100644 --- a/packages/diffs/src/style.css +++ b/packages/diffs/src/style.css @@ -1717,7 +1717,7 @@ content: ''; display: block; position: absolute; - inset: 0 -4px; + inset: 0 0 0 -4px; } }