@kolkrabbi/kol-theme 0.75.0 → 0.76.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-atoms.css
CHANGED
|
@@ -153,7 +153,7 @@
|
|
|
153
153
|
.kol-overlay {
|
|
154
154
|
position: fixed;
|
|
155
155
|
inset: 0;
|
|
156
|
-
z-index: 100;
|
|
156
|
+
z-index: var(--kol-z-modal, 100); /* the modal tier — the overlay contract (EditorOverlaysOnFullscreenOverlay, 2026-08-27) */
|
|
157
157
|
background: var(--kol-surface-primary);
|
|
158
158
|
display: grid;
|
|
159
159
|
place-items: center;
|
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
border-radius: var(--kol-radius-sm);
|
|
112
112
|
box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.4),
|
|
113
113
|
0 2px 6px -2px rgba(0, 0, 0, 0.3);
|
|
114
|
-
z-index: 1000
|
|
114
|
+
z-index: var(--kol-z-tooltip, 300); /* the ladder's float tier, not nav's 1000 (EditorOverlaysOnFullscreenOverlay, user ruling 2026-08-27) */
|
|
115
115
|
outline: none;
|
|
116
116
|
}
|
|
117
117
|
|
|
@@ -130,7 +130,7 @@
|
|
|
130
130
|
line-height: 1;
|
|
131
131
|
white-space: nowrap;
|
|
132
132
|
pointer-events: none;
|
|
133
|
-
z-index: 1000
|
|
133
|
+
z-index: var(--kol-z-tooltip, 300); /* the ladder's float tier, not nav's 1000 (EditorOverlaysOnFullscreenOverlay, user ruling 2026-08-27) */
|
|
134
134
|
box-shadow: 0 6px 16px -4px rgba(0, 0, 0, 0.5);
|
|
135
135
|
}
|
|
136
136
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kolkrabbi/kol-theme",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.76.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",
|