anentrypoint-design 1.0.16 → 1.0.18
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 +32 -0
- package/dist/247420.js +25 -25
- package/package.json +1 -1
- package/src/css/app-shell/topbar.css +6 -0
package/dist/247420.css
CHANGED
|
@@ -1342,6 +1342,12 @@
|
|
|
1342
1342
|
.ds-247420 .app-side-shell {
|
|
1343
1343
|
background: var(--bg); overflow-y: auto; min-height: 0;
|
|
1344
1344
|
scrollbar-width: thin; scrollbar-color: var(--rule-strong) transparent;
|
|
1345
|
+
/* A visible-only-while-scrolled thin scrollbar was the sole cue that this
|
|
1346
|
+
and .app-main are two independent scroll regions -- easy to miss,
|
|
1347
|
+
reading as a layout glitch (sidebar not moving) rather than an
|
|
1348
|
+
intentional split view. A permanent hairline border reads at a glance
|
|
1349
|
+
regardless of scroll/hover state. */
|
|
1350
|
+
border-right: 1px solid var(--rule);
|
|
1345
1351
|
/* Bottom-edge fade: a rail longer than the viewport otherwise shows only
|
|
1346
1352
|
the thin scrollbar track as its sole "there is more below" cue. Mirrors
|
|
1347
1353
|
the horizontal fade already used by .os-instances (src/kits/os/theme.css)
|
|
@@ -12196,6 +12202,14 @@
|
|
|
12196
12202
|
border-radius: var(--r-1, 8px);
|
|
12197
12203
|
cursor: pointer;
|
|
12198
12204
|
color: var(--panel-text-2);
|
|
12205
|
+
/* --ff-body (system-ui) falls back per-script to the OS's native CJK
|
|
12206
|
+
font on a row with CJK text, and CJK glyphs commonly ship a taller
|
|
12207
|
+
default line-height than Latin ones -- with no line-height set here,
|
|
12208
|
+
a row's height was purely intrinsic to its own font metrics, so a CJK
|
|
12209
|
+
row measured visibly taller than a plain-English row beside it. A
|
|
12210
|
+
fixed line-height normalizes every row to the same height regardless
|
|
12211
|
+
of script (2 is generous enough that CJK glyphs never clip). */
|
|
12212
|
+
line-height: 2;
|
|
12199
12213
|
transition: background var(--dur-snap, 80ms) var(--ease, ease), color var(--dur-snap, 80ms) var(--ease, ease);
|
|
12200
12214
|
}
|
|
12201
12215
|
.ds-247420 .ds-ep-tree-row:hover {
|
|
@@ -12221,6 +12235,24 @@
|
|
|
12221
12235
|
.ds-247420 .ds-ep-tree-tag {
|
|
12222
12236
|
flex-shrink: 0; padding-left: var(--space-1-75);
|
|
12223
12237
|
font-size: 0.85em; color: var(--panel-text-3);
|
|
12238
|
+
/* Numeric tags (star counts etc.) vary in digit/comma length row to row
|
|
12239
|
+
("607 stars" vs "184,966 stars"). Each tag's right edge already sits
|
|
12240
|
+
flush against the row's right edge (flex-shrink:0 in a full-width
|
|
12241
|
+
row), but a shorter number's smaller total width shifts its LEFT
|
|
12242
|
+
edge inward -- so the "stars" label drifts left/right per row even
|
|
12243
|
+
though nothing is actually misaligned at the anchor point. A fixed
|
|
12244
|
+
(not min-) width + right-align + tabular-nums turns that into a real
|
|
12245
|
+
column: every tag reserves the SAME width regardless of its own text
|
|
12246
|
+
length (min-width alone still let longer strings grow past the
|
|
12247
|
+
floor, re-introducing drift for e.g. 5-digit vs 4-digit counts) --
|
|
12248
|
+
13ch covers "184,966 stars" (the realistic 6-digit-star ceiling for
|
|
12249
|
+
this dataset) with headroom; a longer string still wins over a hard
|
|
12250
|
+
clip via ch-based overflow rather than truncating the count itself. */
|
|
12251
|
+
width: 13ch;
|
|
12252
|
+
overflow: hidden;
|
|
12253
|
+
white-space: nowrap;
|
|
12254
|
+
text-align: right;
|
|
12255
|
+
font-variant-numeric: tabular-nums;
|
|
12224
12256
|
}
|
|
12225
12257
|
.ds-247420 .ds-ep-tree-children { display: flex; flex-direction: column; }
|
|
12226
12258
|
|