@kolkrabbi/kol-theme 0.79.0 → 0.79.1
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.
|
@@ -1029,9 +1029,16 @@
|
|
|
1029
1029
|
|
|
1030
1030
|
/* The card's rest colours, for the same reason as .kol-row — an inline
|
|
1031
1031
|
* background/borderColor outranks .kol-content-hover:hover, so the step
|
|
1032
|
-
* silently never rendered.
|
|
1032
|
+
* silently never rendered.
|
|
1033
|
+
* `background-clip: padding-box` (CardCornerLeak, kol-monitor 2026-08-28,
|
|
1034
|
+
* verified on a pixel crop): the fill and the border are both translucent
|
|
1035
|
+
* ink, and with the default border-box the fill runs UNDER the 1px border —
|
|
1036
|
+
* an opaque media child clips to the inner radius, the browser antialiases
|
|
1037
|
+
* the clip path and the border path separately, and a hairline of the
|
|
1038
|
+
* lighter fill bleeds through on the arc, bright only on the curve. */
|
|
1033
1039
|
.kol-card {
|
|
1034
1040
|
background: var(--kol-card-bg);
|
|
1041
|
+
background-clip: padding-box;
|
|
1035
1042
|
border-color: var(--kol-card-border);
|
|
1036
1043
|
transition: background-color 300ms var(--kol-ease-house),
|
|
1037
1044
|
border-color 300ms var(--kol-ease-house);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kolkrabbi/kol-theme",
|
|
3
|
-
"version": "0.79.
|
|
3
|
+
"version": "0.79.1",
|
|
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",
|