anentrypoint-design 0.0.455 → 0.0.456
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 +28 -3
- package/dist/247420.js +110 -27
- package/dist/index.html +86 -3
- package/package.json +1 -1
- package/src/css/app-shell/hero-content.css +22 -2
- package/src/css/app-shell/topbar.css +6 -1
- package/src/page-html/client-script.js +62 -1
- package/src/page-html/page-styles.js +23 -1
package/dist/247420.css
CHANGED
|
@@ -1250,7 +1250,12 @@
|
|
|
1250
1250
|
.ds-247420 .app-crumb .leaf { color: var(--fg); font-weight: 600; }
|
|
1251
1251
|
.ds-247420 .app-crumb .crumb-right { margin-left: auto; color: var(--fg-3); }
|
|
1252
1252
|
|
|
1253
|
-
|
|
1253
|
+
/* The shell is the grid cell (.app-body's fixed sidebar column); it must own
|
|
1254
|
+
its own scroll, not just size to content, because .app-body's row track is
|
|
1255
|
+
`minmax(0, 1fr)` — a real height the sidebar can overflow once bins +
|
|
1256
|
+
labels + more exceed it. Without this the extra rows were silently chopped
|
|
1257
|
+
at the viewport edge with no way to reach them. */
|
|
1258
|
+
.ds-247420 .app-side-shell { background: var(--bg); overflow-y: auto; min-height: 0; }
|
|
1254
1259
|
.ds-247420 .app-body { display: grid; grid-template-columns: var(--sidebar-width) minmax(0, 1fr); grid-template-rows: minmax(0, 1fr); align-items: stretch; align-content: stretch; flex: 1; min-height: 0; }
|
|
1255
1260
|
.ds-247420 .app-body.no-side { grid-template-columns: minmax(0, 1fr); }
|
|
1256
1261
|
/* When there is no sidebar, the empty side-shell must not occupy a grid row,
|
|
@@ -2202,13 +2207,33 @@
|
|
|
2202
2207
|
padding: 3px 0;
|
|
2203
2208
|
}
|
|
2204
2209
|
.ds-247420 .ds-cli-row .prompt { color: var(--green-2); flex: 0 0 auto; user-select: none; }
|
|
2205
|
-
|
|
2210
|
+
/* `overflow-wrap: break-word` only breaks a token when it genuinely cannot
|
|
2211
|
+
fit the line at all (last resort); `word-break: break-word` (its
|
|
2212
|
+
predecessor here) breaks ANY overflowing token eagerly, which is what
|
|
2213
|
+
split "anentrypoint-design" mid-identifier inside the importmap JSON line.
|
|
2214
|
+
`min-width: 0` lets the flex child actually shrink to trigger wrapping
|
|
2215
|
+
instead of pushing the panel wider. */
|
|
2216
|
+
.ds-247420 .ds-cli-row .cmd { flex: 1 1 auto; min-width: 0; white-space: pre-wrap; overflow-wrap: break-word; word-break: normal; color: var(--paper); }
|
|
2206
2217
|
.ds-247420 .ds-cli-comment {
|
|
2207
2218
|
color: var(--fg-3);
|
|
2208
2219
|
font-family: var(--ff-mono); font-size: var(--fs-tiny); line-height: 1.6;
|
|
2209
|
-
padding: 3px 0; white-space: pre-wrap;
|
|
2220
|
+
padding: 3px 0; white-space: pre-wrap; overflow-wrap: break-word; word-break: normal;
|
|
2210
2221
|
}
|
|
2211
2222
|
|
|
2223
|
+
/* Quickstart copy button: sits below the multi-line block (Install's inline
|
|
2224
|
+
copy button assumes a single-line row with room beside it; the stacked
|
|
2225
|
+
quickstart block has no such side room). */
|
|
2226
|
+
.ds-247420 .ds-quickstart-cli { flex-direction: column; align-items: stretch; gap: var(--space-2); }
|
|
2227
|
+
.ds-247420 .ds-quickstart-copy {
|
|
2228
|
+
align-self: flex-end;
|
|
2229
|
+
padding: 8px 16px; background: transparent; color: var(--paper);
|
|
2230
|
+
font-family: var(--ff-mono); font-size: var(--fs-tiny); text-transform: uppercase; letter-spacing: var(--tr-caps);
|
|
2231
|
+
cursor: pointer; box-shadow: inset 0 0 0 1px var(--rule-strong);
|
|
2232
|
+
border-radius: var(--r-pill); border: none;
|
|
2233
|
+
}
|
|
2234
|
+
.ds-247420 .ds-quickstart-copy:hover { background: var(--fg-3); }
|
|
2235
|
+
.ds-247420 .ds-quickstart-copy:focus-visible { outline: var(--focus-w) solid var(--focus-color); outline-offset: var(--focus-offset); }
|
|
2236
|
+
|
|
2212
2237
|
/* ============================================================
|
|
2213
2238
|
Receipt — key/value table
|
|
2214
2239
|
============================================================ */
|