From 851917cd8102f3adeacb637f11a1bdc0cf5a0846 Mon Sep 17 00:00:00 2001 From: Yukon <126093594+baseGame@users.noreply.github.com> Date: Sat, 26 Sep 2026 16:06:49 +0800 Subject: [PATCH] Match peek panel button fill to capture #f0f0f0 --- src/styles/main.css | 2 +- src/styles/peekOptionsDensity.test.ts | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/styles/main.css b/src/styles/main.css index 46f523e9..26b20d4f 100644 --- a/src/styles/main.css +++ b/src/styles/main.css @@ -4233,7 +4233,7 @@ html[data-show-path-bars='0'] .path-pair-bar { padding: 0 6px !important; border: 1px solid #c9cdd3 !important; border-radius: 0 !important; - background: #f3f3f3 !important; + background: #f0f0f0 !important; color: #1a1a1a !important; font-size: 11px !important; line-height: 18px !important; diff --git a/src/styles/peekOptionsDensity.test.ts b/src/styles/peekOptionsDensity.test.ts index 11e8d82c..999c63e3 100644 --- a/src/styles/peekOptionsDensity.test.ts +++ b/src/styles/peekOptionsDensity.test.ts @@ -216,3 +216,9 @@ describe('peek-column fill', () => { expect(css).toMatch(/\.peek-column\s*\{[\s\S]*?background:\s*#f0f0f0/) }) }) + +describe('peek button fill', () => { + it('matches capture peek button fill #f0f0f0', () => { + expect(css).toMatch(/\.folder-peek-panel header button,[\s\S]*?background:\s*#f0f0f0/) + }) +})