From 98acb79a200128889564e7525ce60d1641d5b25a Mon Sep 17 00:00:00 2001 From: Codex Date: Wed, 17 Jun 2026 11:51:14 +0800 Subject: [PATCH] fix(ecommerce): align product set count stepper with local light theme Add local-theme-parity overrides for .clone-ai-count-stepper container and count value so they match the page's light palette. --- src/styles/pages/local-theme-parity.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/styles/pages/local-theme-parity.css b/src/styles/pages/local-theme-parity.css index 884189d..4e257ee 100644 --- a/src/styles/pages/local-theme-parity.css +++ b/src/styles/pages/local-theme-parity.css @@ -371,3 +371,14 @@ border-color: rgba(var(--accent-rgb), 0.42); background: var(--bg-panel); } + +/* ── Product set count stepper: align with local light theme ── */ +.product-clone-page[data-tool="clone"] .clone-ai-count-stepper { + border-color: var(--border-subtle); + background: var(--bg-inset); + color: var(--fg-body); +} + +.product-clone-page[data-tool="clone"] .clone-ai-count-stepper b { + color: var(--fg-body); +}