@kolkrabbi/kol-theme 0.70.0 → 0.71.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 -1
- package/package.json +1 -1
|
@@ -19,7 +19,9 @@
|
|
|
19
19
|
* dropdown/menu/tooltip opened INSIDE a FullscreenOverlay stacks under the
|
|
20
20
|
* sheet and its options intercept nothing. */
|
|
21
21
|
.kol-popover-float {
|
|
22
|
-
z
|
|
22
|
+
/* above the ShellDrawer sheet (z 200) — a Dropdown in the settings drawer
|
|
23
|
+
* opened BEHIND it (SettingsPanelApproved, 2026-08-27) */
|
|
24
|
+
z-index: 210;
|
|
23
25
|
}
|
|
24
26
|
|
|
25
27
|
/* ── Dropdown — .kol-dd-* ─────────────────────────────────────────────────
|
|
@@ -1171,3 +1173,13 @@
|
|
|
1171
1173
|
transform: none;
|
|
1172
1174
|
}
|
|
1173
1175
|
}
|
|
1176
|
+
|
|
1177
|
+
/* Markdown is BOUNDED where it renders (SettingsPanelApproved, kol-r2b2
|
|
1178
|
+
* 2026-08-27): in the 320px column preview a document scaled to the frame; in
|
|
1179
|
+
* the overlay a readable sheet, not full-bleed over the page. */
|
|
1180
|
+
.kol-column-browser-preview .kol-prose { zoom: 0.5; }
|
|
1181
|
+
.kol-overlay .kol-prose {
|
|
1182
|
+
max-width: var(--kol-content-measure);
|
|
1183
|
+
margin-inline: auto;
|
|
1184
|
+
padding: 24px;
|
|
1185
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kolkrabbi/kol-theme",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.71.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",
|