User:Vergir/teststyles: Difference between revisionsGive feedback
Jump to navigation
Jump to search
Vergir created the page User:Vergir/teststyles using a non-default content model "Sanitized CSS": to test templatestyles without actually making templates and /styles pages |
Sanitizer probe: var(), custom property declarations, host-context selector rewriting (with help from vergir-bot LLM) |
||
| (4 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
.pi-value { | |||
color: #aaa; | |||
color: var(--dl-scaling-boon-value, #aaa); | |||
} | |||
.ss-value { | |||
--dl-local-test: #123456; | |||
color: var(--dl-local-test); | |||
} | |||
html[data-mode="light"] .pi-value { | |||
color: #4a4a4a; | |||
} | |||
:root[data-theme="brown"][data-mode="light"] .ss-value { | |||
color: #6035b0; | |||
} | |||