diff --git a/src/components/workbench/SessionPathActions.vue b/src/components/workbench/SessionPathActions.vue index 4a648018..51ec01a8 100644 --- a/src/components/workbench/SessionPathActions.vue +++ b/src/components/workbench/SessionPathActions.vue @@ -108,7 +108,7 @@ const { t } = useI18n() .bc-path-action:hover:not(:disabled) { border-color: #a0a0a0; - background: #f3f3f3; + background: #f0f0f0; } .bc-path-action:disabled { diff --git a/src/styles/pathStatusDensity.test.ts b/src/styles/pathStatusDensity.test.ts index c52b7d31..5072888f 100644 --- a/src/styles/pathStatusDensity.test.ts +++ b/src/styles/pathStatusDensity.test.ts @@ -212,3 +212,9 @@ describe('path-pair-bar fill', () => { expect(css).toMatch(/\.path-pair-bar\s*\{[\s\S]*?background:\s*#f0f0f0/) }) }) + +describe('path actions fill', () => { + it('matches capture path action fill #f0f0f0', () => { + expect(pathActions).toMatch(/background:\s*#f0f0f0/) + }) +})