From f88e2596c2ab2a94c1f7a416e5ed86dc44824597 Mon Sep 17 00:00:00 2001 From: Yukon <126093594+baseGame@users.noreply.github.com> Date: Sat, 26 Sep 2026 04:04:35 +0800 Subject: [PATCH] Match dense table header fill to capture #f0f0f0 --- src/styles/main.css | 2 +- src/styles/tableChromeDensity.test.ts | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/styles/main.css b/src/styles/main.css index a27d038c..0da1154a 100644 --- a/src/styles/main.css +++ b/src/styles/main.css @@ -1592,7 +1592,7 @@ select { .report-head, .table-grid-header, .metadata-grid-heading { - background: #f7f7f7 !important; + background: #f0f0f0 !important; color: #111111 !important; font-weight: 400 !important; } diff --git a/src/styles/tableChromeDensity.test.ts b/src/styles/tableChromeDensity.test.ts index f9c9efeb..64c836c6 100644 --- a/src/styles/tableChromeDensity.test.ts +++ b/src/styles/tableChromeDensity.test.ts @@ -161,3 +161,9 @@ describe('table grid cell border', () => { ) }) }) + +describe('dense-data-table th fill', () => { + it('matches capture dense table header fill #f0f0f0', () => { + expect(css).toMatch(/\.dense-data-table th[\s\S]*?background:\s*#f0f0f0/) + }) +})