@kolkrabbi/kol-theme 0.31.0 → 0.31.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.
@@ -34,15 +34,19 @@
34
34
  gap: var(--kol-spacing-1);
35
35
  width: 100%;
36
36
  }
37
- /* REST AND OPEN ARE THE ONLY STATES (2026-07-15 ruling, re-called 2026-08-09).
38
- * The trigger wears button chrome, and button chrome hovers — so every
39
- * kol-btn variant hover is PINNED BACK TO REST here. This sheet loads after
40
- * atoms in the same layer, so the tie resolves to these rules. */
41
- .kol-dd-trigger.kol-btn-primary:hover {
37
+ /* REST AND OPEN ARE THE ONLY STATES (2026-07-15 ruling, re-called twice
38
+ * 2026-08-09). The trigger wears button chrome, and button chrome hovers AND
39
+ * presses — so every kol-btn variant :hover and :active is PINNED BACK TO
40
+ * REST here. The :not(:disabled) carries the weight of the atoms :active
41
+ * selectors; this sheet loads after atoms in the same layer, so ties resolve
42
+ * to these rules. */
43
+ .kol-dd-trigger.kol-btn-primary:not(:disabled):hover,
44
+ .kol-dd-trigger.kol-btn-primary:not(:disabled):active {
42
45
  background: var(--kol-surface-secondary);
43
46
  color: var(--kol-surface-on-primary);
44
47
  }
45
- .kol-dd-trigger.kol-btn-outline:hover {
48
+ .kol-dd-trigger.kol-btn-outline:not(:disabled):hover,
49
+ .kol-dd-trigger.kol-btn-outline:not(:disabled):active {
46
50
  background: transparent;
47
51
  color: var(--kol-surface-on-primary);
48
52
  border-color: var(--kol-oq-16);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kolkrabbi/kol-theme",
3
- "version": "0.31.0",
3
+ "version": "0.31.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",