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/) + }) +})