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.
This commit is contained in:
Codex
2026-06-17 11:56:30 +08:00
parent 98acb79a20
commit 65be92ba43
+6 -6
View File
@@ -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;
}