@kolkrabbi/kol-theme 0.95.0 → 0.96.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.
@@ -962,6 +962,39 @@
962
962
  .kol-row--divided {
963
963
  border-bottom: 1px solid var(--kol-fg-08);
964
964
  }
965
+ /* `specs` — the row's trailing label/value column (RowVariantNamesAndSpecs,
966
+ * 2026-08-29). It rides every horizontal variant because year · material ·
967
+ * edition is a CONTENT difference, not a geometry one; a seventh page-named
968
+ * variant for it would repeat the mistake that ticket opens with.
969
+ * Type is declared HERE, not as `kol-mono-12` on the element — ARCHITECTURE §5:
970
+ * a utility class on the markup ties at specificity and loses to whichever
971
+ * sheet loads last. Values match the family's meta voice (kol-mono-12). */
972
+ .kol-row-specs {
973
+ display: flex;
974
+ flex-direction: column;
975
+ gap: var(--kol-spacing-1);
976
+ margin: 0;
977
+ }
978
+ .kol-row-specs > div {
979
+ display: flex;
980
+ justify-content: space-between;
981
+ gap: var(--kol-spacing-3);
982
+ }
983
+ .kol-row-specs dt,
984
+ .kol-row-specs dd {
985
+ margin: 0;
986
+ font-family: var(--kol-font-family-mono);
987
+ font-size: 12px;
988
+ line-height: 16px;
989
+ font-weight: 400;
990
+ }
991
+ .kol-row-specs dt {
992
+ color: var(--kol-fg-meta);
993
+ }
994
+ .kol-row-specs dd {
995
+ color: var(--kol-fg-emphasis);
996
+ text-align: right;
997
+ }
965
998
  /* THE THUMB IS A FIXED SQUARE BOX (ContentRowsAndPrintCard, kol-website
966
999
  * 2026-08-27 — user: "the image should not control height, image should fit
967
1000
  * the row image placeholder"). Verbatim from the /stack + /prints tune: the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kolkrabbi/kol-theme",
3
- "version": "0.95.0",
3
+ "version": "0.96.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",