@kolkrabbi/kol-theme 0.69.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 +35 -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-* ─────────────────────────────────────────────────
|
|
@@ -275,6 +277,28 @@
|
|
|
275
277
|
border-color: currentColor;
|
|
276
278
|
}
|
|
277
279
|
|
|
280
|
+
/* tertiary — secondary's fill, NO outline, the MONO voice at 80 (TagTertiary,
|
|
281
|
+
* kol-website 2026-08-27, ruled on /work's rows: the outline read wrong beside
|
|
282
|
+
* the display line and the helper voice was too loud under a title). The size
|
|
283
|
+
* classes carry the helper type by default; tertiary re-types them on the mono
|
|
284
|
+
* ramp — 10 / 12 / 14, weight 400, line-height 100%, 0.04em. */
|
|
285
|
+
.kol-tag--tertiary {
|
|
286
|
+
background-color: var(--kol-surface-primary);
|
|
287
|
+
color: var(--kol-fg-80);
|
|
288
|
+
border-color: transparent;
|
|
289
|
+
}
|
|
290
|
+
.kol-tag--tertiary:hover {
|
|
291
|
+
background-color: color-mix(in srgb, var(--kol-surface-on-primary) 08%, transparent);
|
|
292
|
+
border-color: transparent;
|
|
293
|
+
}
|
|
294
|
+
.kol-tag--tertiary.is-active {
|
|
295
|
+
background-color: color-mix(in srgb, var(--kol-surface-on-primary) 16%, transparent);
|
|
296
|
+
border-color: transparent;
|
|
297
|
+
}
|
|
298
|
+
.kol-tag--tertiary.kol-tag--sm { font-size: 10px; font-weight: 400; line-height: 100%; letter-spacing: 0.04em; }
|
|
299
|
+
.kol-tag--tertiary.kol-tag--md { font-size: 12px; font-weight: 400; line-height: 100%; letter-spacing: 0.04em; }
|
|
300
|
+
.kol-tag--tertiary.kol-tag--lg { font-size: 14px; font-weight: 400; line-height: 100%; letter-spacing: 0.04em; }
|
|
301
|
+
|
|
278
302
|
/* StatusChip — the record-surface status control (reference: Framer CMS,
|
|
279
303
|
* 2026-08-09; rebuilt off Tag onto the Dropdown-sm metrics the same day).
|
|
280
304
|
* Tint + ink ride the --ui-* ladder; box/type live in the JSX (kol-btn-sm
|
|
@@ -1149,3 +1173,13 @@
|
|
|
1149
1173
|
transform: none;
|
|
1150
1174
|
}
|
|
1151
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",
|