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