@kolkrabbi/kol-theme 0.80.0 → 0.81.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-components-molecules.css +13 -0
- package/package.json +1 -1
|
@@ -1253,6 +1253,19 @@
|
|
|
1253
1253
|
.kol-playback-scrub::-moz-range-track { height: 2px; border-radius: 1px; background: color-mix(in srgb, var(--kol-color-absolute-white) 40%, transparent); }
|
|
1254
1254
|
.kol-playback-scrub::-moz-range-thumb { width: 4px; height: 28px; border: 0; border-radius: 2px; background: var(--kol-color-absolute-white); }
|
|
1255
1255
|
|
|
1256
|
+
/* ColumnBrowser rows — ONE SELECTED STATE (ColumnBrowserSeams, kol-r2b2
|
|
1257
|
+
* 2026-08-28; user: "ONLY one selected state can exist, not TWO"). The row's
|
|
1258
|
+
* fill lives here, keyed on its state classes, not on a `bg-fg-04` utility a
|
|
1259
|
+
* consumer had to hang rules off. Hover and the keyboard cursor are the fill;
|
|
1260
|
+
* a selected row is the TRAIL at half strength unless its column is the
|
|
1261
|
+
* deepest one holding a selection — then it is the selection, full strength.
|
|
1262
|
+
* `:has(~ …)` says what a positional selector cannot: "no later column has a
|
|
1263
|
+
* selected row". */
|
|
1264
|
+
.kol-column-browser-row:hover,
|
|
1265
|
+
.kol-column-browser-row.is-cursor { background-color: var(--kol-fg-04); }
|
|
1266
|
+
.kol-column-browser-row.is-selected { background-color: var(--kol-fg-02); }
|
|
1267
|
+
.kol-column-browser-column:not(:has(~ .kol-column-browser-column .is-selected)) > .is-selected { background-color: var(--kol-fg-04); }
|
|
1268
|
+
|
|
1256
1269
|
/* ColumnBrowser resize handles (ColumnBrowserResize, kol-r2b2 2026-08-27 —
|
|
1257
1270
|
* Finder's edge handles, user ruling "that should be a set in ds"; native CSS
|
|
1258
1271
|
* `resize:` rejected). The column border already there is the visual; the
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kolkrabbi/kol-theme",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.81.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",
|