anentrypoint-design 1.0.13 → 1.0.14
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/dist/247420.css +12 -12
- package/dist/247420.js +26 -26
- package/package.json +1 -1
- package/src/css/app-shell/catalog-theme.css +6 -10
- package/src/css/app-shell/topbar.css +6 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "anentrypoint-design",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.14",
|
|
4
4
|
"description": "247420 design system SDK — webjsx + modified ripple-ui, single-file ESM bundle for reproducible use of the AnEntrypoint design.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/247420.js",
|
|
@@ -143,16 +143,12 @@
|
|
|
143
143
|
font-family: var(--ff-mono); font-size: var(--fs-xs);
|
|
144
144
|
display: inline-flex; align-items: center; gap: 6px;
|
|
145
145
|
}
|
|
146
|
-
/* CSS-drawn disc mark on the compact theme toggle:
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
border: var(--bw-hair) solid var(--fg-3);
|
|
153
|
-
/* auto: half-and-half, matches default (no data-mode) for safety */
|
|
154
|
-
background: linear-gradient(90deg, var(--fg-3) 0 50%, transparent 50% 100%);
|
|
155
|
-
}
|
|
146
|
+
/* CSS-drawn disc mark on the compact theme toggle: legibility fallback for
|
|
147
|
+
when BOTH the SVG glyph and text label are hidden (icon-only rail strip).
|
|
148
|
+
The glyph (.ds-theme-toggle-icon) already conveys mode whenever it is
|
|
149
|
+
visible, so the disc stays hidden alongside it and only shows in the
|
|
150
|
+
rail-collapsed state where responsive2-workspace.css hides the icon too. */
|
|
151
|
+
.ds-theme-disc { display: none; }
|
|
156
152
|
.ds-theme-disc[data-mode="auto"] {
|
|
157
153
|
background: linear-gradient(90deg, var(--fg-3) 0 50%, transparent 50% 100%);
|
|
158
154
|
}
|
|
@@ -410,8 +410,12 @@ body.canvas-host { background: transparent !important; }
|
|
|
410
410
|
1400-2200px viewport band (matches .ws-shell's 1920px ultrawide cap below)
|
|
411
411
|
instead of freezing at 1400px and leaving >1000px dead margin on a 2560px+
|
|
412
412
|
display. Row/prose measure caps (--measure-wide etc.) still own line-length
|
|
413
|
-
readability, so widening the shell itself does not create unreadable rows.
|
|
414
|
-
|
|
413
|
+
readability, so widening the shell itself does not create unreadable rows.
|
|
414
|
+
100vw (not 92vw): a stock 1920px monitor sat at 92vw = 1766px, leaving a
|
|
415
|
+
visible ~154px dead margin on the single most common desktop resolution —
|
|
416
|
+
the ceiling now reaches full width exactly at 1920px instead of falling
|
|
417
|
+
short of it. */
|
|
418
|
+
.app { max-width: clamp(1400px, 100vw, 1920px); margin-left: auto; margin-right: auto; }
|
|
415
419
|
.app-main .chat,
|
|
416
420
|
.app-main > .chat-area,
|
|
417
421
|
.app-main > .main-content { max-width: none; margin: 0; width: 100%; }
|