From 52750eec623fc261e98f3d4e14caa1dd16b302de Mon Sep 17 00:00:00 2001 From: qer Date: Wed, 10 Jun 2026 03:27:33 +0800 Subject: [PATCH] fix(web): remove sidebar header white background in modern theme --- .changeset/sidebar-header-border-fix.md | 5 +++++ apps/kimi-web/src/style.css | 7 ++++--- 2 files changed, 9 insertions(+), 3 deletions(-) create mode 100644 .changeset/sidebar-header-border-fix.md diff --git a/.changeset/sidebar-header-border-fix.md b/.changeset/sidebar-header-border-fix.md new file mode 100644 index 000000000..dbdc8bfaf --- /dev/null +++ b/.changeset/sidebar-header-border-fix.md @@ -0,0 +1,5 @@ +--- +"@moonshot-ai/kimi-web": patch +--- + +Remove the white background override on the sidebar header in Modern theme so the right border extends seamlessly from top to bottom. diff --git a/apps/kimi-web/src/style.css b/apps/kimi-web/src/style.css index 86b3efdac..3fd11c83d 100644 --- a/apps/kimi-web/src/style.css +++ b/apps/kimi-web/src/style.css @@ -208,9 +208,10 @@ html[data-theme="modern"] .se.on { box-shadow: inset 0 0 0 1px var(--bd); } -/* Tab bar + column header → clean white strips with a single hairline. */ -html[data-theme="modern"] .tabs, -html[data-theme="modern"] .ch { +/* Tab bar → clean white strip with a single hairline. + Sidebar header (.ch) keeps the sidebar body color so the right border + extends seamlessly from top to bottom. */ +html[data-theme="modern"] .tabs { background: #fff; }