From 65be92ba430004874d67c1916e4e1ad715e69c6d Mon Sep 17 00:00:00 2001 From: Codex Date: Wed, 17 Jun 2026 11:56:30 +0800 Subject: [PATCH] fix(ecommerce): strengthen product set count stepper theme override Use html body #root .ecommerce-standalone prefix and !important to ensure the stepper matches the local light theme. --- src/styles/pages/local-theme-parity.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/styles/pages/local-theme-parity.css b/src/styles/pages/local-theme-parity.css index 4e257ee..b5fda92 100644 --- a/src/styles/pages/local-theme-parity.css +++ b/src/styles/pages/local-theme-parity.css @@ -373,12 +373,12 @@ } /* ── 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); +html body #root .ecommerce-standalone .product-clone-page[data-tool="clone"] .clone-ai-count-stepper { + border-color: var(--border-subtle) !important; + background: var(--bg-inset) !important; + color: var(--fg-body) !important; } -.product-clone-page[data-tool="clone"] .clone-ai-count-stepper b { - color: var(--fg-body); +html body #root .ecommerce-standalone .product-clone-page[data-tool="clone"] .clone-ai-count-stepper b { + color: var(--fg-body) !important; }