Deleted CSS left its modifiers behind — restore six base rules, and check for the rest #98

Merged
bvandeusen merged 4 commits from dev into main 2026-08-05 09:41:19 -04:00
Showing only changes of commit 6ac821178f - Show all commits
+7
View File
@@ -259,6 +259,13 @@ function ruleWidth(value: string): string {
completely, and a 15% tint shows exactly as much of them as it should. completely, and a 15% tint shows exactly as much of them as it should.
Layering the fill as a gradient is what lets one element do both. */ Layering the fill as a gradient is what lets one element do both. */
.tp-swatch { .tp-swatch {
/* Declared here, overridden inline per swatch. Two reasons it is a real
default rather than a formality: a token that resolves to nothing renders
as bare checks instead of an invalid gradient, and a custom property that
exists ONLY as an inline style is invisible to the CI token check — which
reads it as an unresolvable reference, correctly, since nothing in any
stylesheet declares it. */
--tp-fill: transparent;
width: 100%; width: 100%;
height: 100%; height: 100%;
border-radius: calc(var(--fs-radius-sm) - 2px); border-radius: calc(var(--fs-radius-sm) - 2px);