From 60d418abe50e4f9bfdabd0d6249a0efc5bf3281a Mon Sep 17 00:00:00 2001 From: Yukon <126093594+baseGame@users.noreply.github.com> Date: Sat, 26 Sep 2026 16:22:54 +0800 Subject: [PATCH] Match path action button fill to capture #f0f0f0 --- src/components/workbench/SessionPathActions.vue | 2 +- src/styles/pathStatusDensity.test.ts | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) 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/) + }) +})