From ae17f2749d16c56bac073fab0f7f1b2090152a50 Mon Sep 17 00:00:00 2001 From: CaIon Date: Sat, 25 Jul 2026 19:23:18 +0800 Subject: [PATCH] fix(json-code-editor): remove opaque line-number layer background hiding editor content The line-number layer spans the full editor, so giving it an opaque background and raised z-index covered the highlighted content. Reverts the gutter background added in 88868002f; the horizontal-scroll gutter overlap it targeted returns as a known cosmetic issue. --- web/src/styles/index.css | 5 ----- 1 file changed, 5 deletions(-) diff --git a/web/src/styles/index.css b/web/src/styles/index.css index 23391dda..ea317c97 100644 --- a/web/src/styles/index.css +++ b/web/src/styles/index.css @@ -64,11 +64,6 @@ For commercial licensing, please contact support@quantumnous.com white-space: pre !important; } - .json-code-editor-lines { - background: var(--background); - z-index: 1; - } - .json-code-editor-highlight .yace-tok--str { color: var(--chart-5); }