From b0e1801e47a0836e6d597a59dd3f1ce401ee6a17 Mon Sep 17 00:00:00 2001 From: Yukon <126093594+baseGame@users.noreply.github.com> Date: Sat, 26 Sep 2026 15:50:09 +0800 Subject: [PATCH] Match path-pair-bar fill to capture #f0f0f0 --- src/styles/main.css | 2 +- src/styles/pathStatusDensity.test.ts | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/styles/main.css b/src/styles/main.css index eff31526..d595f379 100644 --- a/src/styles/main.css +++ b/src/styles/main.css @@ -907,7 +907,7 @@ select { grid-template-columns: minmax(0, 1fr) 20px minmax(0, 1fr) auto; min-height: 20px; padding: 0 1px; - background: #f3f3f3; + background: #f0f0f0; } .path-pair-field { diff --git a/src/styles/pathStatusDensity.test.ts b/src/styles/pathStatusDensity.test.ts index 215b353e..c52b7d31 100644 --- a/src/styles/pathStatusDensity.test.ts +++ b/src/styles/pathStatusDensity.test.ts @@ -206,3 +206,9 @@ describe('bc-path-row fill', () => { expect(css).toMatch(/\.bc-path-row\s*\{[\s\S]*?background:\s*#f0f0f0/) }) }) + +describe('path-pair-bar fill', () => { + it('matches capture path-pair-bar fill #f0f0f0', () => { + expect(css).toMatch(/\.path-pair-bar\s*\{[\s\S]*?background:\s*#f0f0f0/) + }) +})