From 74cfe776744c7aa4ca5c820f0a60cb852a650700 Mon Sep 17 00:00:00 2001 From: Seokrin Taron Sung Date: Thu, 29 Jan 2026 16:51:51 +0900 Subject: [PATCH] fix(web): remove unwanted border on sticky elements in dark mode (#31699) --- web/app/styles/monaco-sticky-fix.css | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/web/app/styles/monaco-sticky-fix.css b/web/app/styles/monaco-sticky-fix.css index 66bb5921ce..ac928cf246 100644 --- a/web/app/styles/monaco-sticky-fix.css +++ b/web/app/styles/monaco-sticky-fix.css @@ -9,8 +9,7 @@ html[data-theme="dark"] .monaco-editor .sticky-line-content:hover { background-color: var(--color-components-sticky-header-bg-hover) !important; } -/* Fallback: any app sticky header using input-bg variables should use the sticky header bg when sticky */ -html[data-theme="dark"] .sticky, html[data-theme="dark"] .is-sticky { +/* Monaco editor specific sticky scroll styles in dark mode */ +html[data-theme="dark"] .monaco-editor .sticky-line-root { background-color: var(--color-components-sticky-header-bg) !important; - border-bottom: 1px solid var(--color-components-sticky-header-border) !important; } \ No newline at end of file