@kolkrabbi/kol-theme 0.71.0 → 0.73.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.
@@ -1145,6 +1145,26 @@ a.kol-icon-frame {
1145
1145
  border: 1px solid transparent;
1146
1146
  }
1147
1147
 
1148
+ /* PlayDisc — the Finder play/pause disc on a media tile (PlayDiscAndVideoBar,
1149
+ * kol-r2b2 2026-08-27): a round `IconFrame secondary lg radius="full"`, hidden
1150
+ * at rest, shown on hover of the tile (`.kol-media-tile`) or on focus, over
1151
+ * full-bleed artwork. Declared AFTER the variants so it wins in-layer — the
1152
+ * consumer no longer restates bg-fg-inverse-64 / border-fg-96 beside the
1153
+ * variant. Absolute colours: it sits on artwork, not on the theme. NO
1154
+ * backdrop-filter — it flips the tile onto a composited layer on hover and the
1155
+ * artwork's saturation jumps (Chrome). */
1156
+ .kol-play-disc {
1157
+ background-color: color-mix(in srgb, var(--kol-surface-on-inverse) 64%, transparent);
1158
+ color: var(--kol-color-absolute-white);
1159
+ border: 2px solid color-mix(in srgb, var(--kol-surface-on-primary) 96%, transparent);
1160
+ box-shadow: 0 0 4px 3.5px rgba(0, 0, 0, 0.4);
1161
+ opacity: 0;
1162
+ transition: opacity var(--kol-transition-base);
1163
+ }
1164
+ .kol-play-disc svg { color: inherit; }
1165
+ .kol-media-tile:hover .kol-play-disc,
1166
+ .kol-play-disc:focus-visible { opacity: 1; }
1167
+
1148
1168
  /* ═══════════════════════════════════════════════════════════════
1149
1169
  * ThemeToggle — .kol-theme-toggle
1150
1170
  *
@@ -1112,7 +1112,12 @@
1112
1112
  .kol-media-zoom > img,
1113
1113
  .kol-media-zoom > video {
1114
1114
  transition: transform 600ms var(--kol-ease-house);
1115
- transform-origin: center;
1115
+ /* THE ANCHOR IS THE CONSUMER'S (ContentMediaFocusBinding, kol-monitor
1116
+ * 2026-08-27): `--kol-media-focus`, bound once on a repo's :root, is where
1117
+ * the image pins for the fit (ContentMedia natural / compact read the same
1118
+ * token, default top left) and from where the zoom grows. Unset = center,
1119
+ * today's value. Monitor binds `top left`. */
1120
+ transform-origin: var(--kol-media-focus, center);
1116
1121
  }
1117
1122
 
1118
1123
  @media (hover: hover) {
@@ -678,6 +678,27 @@
678
678
  .kol-table-sort:hover svg { opacity: 0.6; }
679
679
  [aria-sort] .kol-table-sort svg { opacity: 1; }
680
680
 
681
+ /* ─────────────────────────────────────────────────────────────────────
682
+ * ContentFilters — the FIRST group's column (ContentFiltersFirstGroupFixedWidth,
683
+ * kol-monitor 2026-08-27 — user ruling: "nope not hug, fix a size … if columns,
684
+ * maybe just use one?"). ONE CATALOG COLUMN: the `1fr` of `repeat(6, 1fr)` gap
685
+ * 24 — `(width − 5 × 24px) / 6`, a fraction, never a px — so the first group
686
+ * sits over the first card and the flowing groups start over the second. The
687
+ * header row is the CONTAINER (`100cqw`): the count + LIST/GRID strip beside
688
+ * the groups narrows the groups' box, and a `%` measured inside it came out
689
+ * short by the strip + gap. A page without a 6-column catalog (/work, a list)
690
+ * gets the same fraction of its own row, so the number is one everywhere.
691
+ * Components layer — a consumer's `group.className` width utility still wins
692
+ * on the odd page. Overrules the WIDTH of the 0.104.3 hug; by-position stands.
693
+ * ───────────────────────────────────────────────────────────────────── */
694
+ .kol-filters-row {
695
+ container-type: inline-size;
696
+ }
697
+ .kol-filters-first {
698
+ flex: none;
699
+ width: calc((100cqw - 120px) / 6);
700
+ }
701
+
681
702
  /* ─────────────────────────────────────────────────────────────────────
682
703
  * ContentCollection — src/organisms/ContentCollection.jsx (2026-08-15)
683
704
  * The enter stagger the collection owns; cards never animate themselves.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kolkrabbi/kol-theme",
3
- "version": "0.71.0",
3
+ "version": "0.73.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",