@kolkrabbi/kol-theme 0.85.0 → 0.86.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 -3
- package/package.json +1 -1
|
@@ -1234,12 +1234,22 @@
|
|
|
1234
1234
|
.kol-view-toggle.kol-tone-sunken > button:not([aria-pressed="true"]):hover, .kol-view-toggle.kol-tone-inverse > button:not([aria-pressed="true"]):hover { background-color: color-mix(in srgb, var(--kol-color-absolute-white) 8%, transparent); }
|
|
1235
1235
|
.kol-control.kol-tone-sunken, .kol-control.kol-tone-inverse { background-color: var(--kol-fg-inverse-96); }
|
|
1236
1236
|
.kol-expand.kol-tone-sunken, .kol-expand.kol-tone-inverse { background-color: var(--kol-fg-inverse-96); }
|
|
1237
|
-
/*
|
|
1238
|
-
*
|
|
1237
|
+
/* NO HOVER STATE ON THE DROPDOWN (user ruling 2026-08-28). Rest and open are
|
|
1238
|
+
* its only states — and the three selectors are what ENFORCE that: the base
|
|
1239
|
+
* `.kol-dd-trigger:hover/:active` rules paint surface-secondary, so the tone
|
|
1240
|
+
* re-states its own fill on all three and nothing moves. Deleting them gives
|
|
1241
|
+
* the hover back. */
|
|
1239
1242
|
.kol-dd-trigger.kol-tone-sunken, .kol-dd-trigger.kol-tone-inverse,
|
|
1240
1243
|
.kol-dd-trigger.kol-tone-sunken:not(:disabled):hover, .kol-dd-trigger.kol-tone-inverse:not(:disabled):hover,
|
|
1241
1244
|
.kol-dd-trigger.kol-tone-sunken:not(:disabled):active, .kol-dd-trigger.kol-tone-inverse:not(:disabled):active { background-color: var(--kol-fg-inverse-96); }
|
|
1242
|
-
|
|
1245
|
+
/* THE PANEL IS OPAQUE (user 2026-08-28: "transparent doesn't work for
|
|
1246
|
+
* dropdown") — it floats over page content, and every `fg-*` stop is an alpha
|
|
1247
|
+
* wash that the content reads through. `oq-inverse-*`, the opaque tier, bakes
|
|
1248
|
+
* onto `surface-inverse` — the near-WHITE in dark theme — so even `oq-inverse-96`
|
|
1249
|
+
* lands ~23.5 against the #121215 page's 18: lighter than the page, the wrong
|
|
1250
|
+
* side of it. `surface-tertiary` is the flat twin of what the trigger renders:
|
|
1251
|
+
* #0e0e11 (14.0) in dark against the trigger's 14.2, #ffffff in light. */
|
|
1252
|
+
.kol-dd-panel.kol-tone-sunken, .kol-dd-panel.kol-tone-inverse { background-color: var(--kol-surface-tertiary); }
|
|
1243
1253
|
/* the rest of the set — Button (icon-only especially), IconFrame, ThemeToggle:
|
|
1244
1254
|
* the well, transparent edge, fg-96 ink; hover the white wash, pressed the
|
|
1245
1255
|
* fg-08 chip — both LAYERED over the well (a gradient image over the fill),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kolkrabbi/kol-theme",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.86.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",
|