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 20fe5bc1..ea007488 100644 --- a/src/styles/pathStatusDensity.test.ts +++ b/src/styles/pathStatusDensity.test.ts @@ -218,3 +218,9 @@ describe('path input border', () => { expect(css).toMatch(/\.picture-path-panel input,[\s\S]*?border:\s*1px solid #c0c0c0/) }) }) + +describe('path actions fill', () => { + it('matches capture path action fill #f0f0f0', () => { + expect(pathActions).toMatch(/background:\s*#f0f0f0/) + }) +})