diff --git a/src/styles/main.css b/src/styles/main.css index eff31526..7f967121 100644 --- a/src/styles/main.css +++ b/src/styles/main.css @@ -3367,7 +3367,7 @@ html[data-show-path-bars='0'] .path-pair-bar { padding: 2px 4px; border: 1px solid #a0a0a0; border-radius: 0; - background: #f3f3f3; + background: #f0f0f0; } .app-shell-single-session .table-compare-header > div:first-child, diff --git a/src/styles/tableChromeDensity.test.ts b/src/styles/tableChromeDensity.test.ts index 64c836c6..f10812da 100644 --- a/src/styles/tableChromeDensity.test.ts +++ b/src/styles/tableChromeDensity.test.ts @@ -167,3 +167,11 @@ describe('dense-data-table th fill', () => { expect(css).toMatch(/\.dense-data-table th[\s\S]*?background:\s*#f0f0f0/) }) }) + +describe('table-compare-header fill', () => { + it('matches capture table header fill #f0f0f0', () => { + expect(css).toMatch( + /\.app-shell-single-session \.table-compare-header\s*\{[\s\S]*?background:\s*#f0f0f0/, + ) + }) +})