@kolkrabbi/kol-theme 0.112.0 → 0.114.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/kol-animation.css +8 -1
- package/kol-components-molecules.css +12 -0
- package/package.json +1 -1
package/kol-animation.css
CHANGED
|
@@ -272,8 +272,15 @@
|
|
|
272
272
|
.kol-card-feature-visual {
|
|
273
273
|
transition: transform 300ms ease;
|
|
274
274
|
}
|
|
275
|
+
/* THE AMOUNT IS THE ARTWORK'S, NOT THE CARD'S (CardFeatureZoomScale,
|
|
276
|
+
* kol-website 2026-08-31). `1.03` was hardcoded here with no prop and no token:
|
|
277
|
+
* a good number on a dense photographic visual and INVISIBLE on a sparse one.
|
|
278
|
+
* Same component, same set, same page — line-art specimens on a white ground
|
|
279
|
+
* showed nothing at 3% while dark UI screenshots beside them read correctly.
|
|
280
|
+
* The card publishes `--kol-card-feature-zoom` from its `zoom` prop; 1.03 is
|
|
281
|
+
* the fallback, so nothing moves for anyone who does not set it. */
|
|
275
282
|
.kol-card-feature:hover .kol-card-feature-visual {
|
|
276
|
-
transform: scale(1.03);
|
|
283
|
+
transform: scale(var(--kol-card-feature-zoom, 1.03));
|
|
277
284
|
}
|
|
278
285
|
@media (prefers-reduced-motion: reduce) {
|
|
279
286
|
.kol-card-feature-visual { transition: none; }
|
|
@@ -956,6 +956,18 @@
|
|
|
956
956
|
border-color 300ms var(--kol-ease-house);
|
|
957
957
|
}
|
|
958
958
|
|
|
959
|
+
/* A FIXED RUNG, not a floor (ContentRowRosterVariant, kol-chess 2026-08-31).
|
|
960
|
+
* Every other row in the family follows its content; `roster` is a grid of
|
|
961
|
+
* pick-targets, and a target whose height drifts with its own copy reads as
|
|
962
|
+
* broken — measured at 34 · 40 · 50 · 58 across four passes of one component,
|
|
963
|
+
* where a single long meta line pushed a tile out of line with its neighbours.
|
|
964
|
+
* Both properties: `height` alone loses to the `min-height` above it whenever
|
|
965
|
+
* the content is taller, which is the case this exists to stop. */
|
|
966
|
+
.kol-row--fixed {
|
|
967
|
+
height: var(--kol-row-h);
|
|
968
|
+
min-height: var(--kol-row-h);
|
|
969
|
+
}
|
|
970
|
+
|
|
959
971
|
/* the divider is its OWN longhand, declared after the shorthand above so it
|
|
960
972
|
* wins on order — `default`'s bottom rule is not the same thing as a framed
|
|
961
973
|
* variant's border, and one property cannot carry both. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kolkrabbi/kol-theme",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.114.0",
|
|
4
4
|
"description": "KOL (Kolkrabbi) design-system tokens + base CSS — brand-neutral. The canonical token/cascade layer every other KOL package and consumer builds on.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|