anentrypoint-design 1.0.16 → 1.0.17

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 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,19 @@
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
+ min-width + right-align + tabular-nums turns that into a real
12245
+ column: every tag reserves the same width, short numbers pad left
12246
+ instead of shrinking the block, and equal-width digits keep the
12247
+ numeric part itself steady inside that column. */
12248
+ min-width: 9ch;
12249
+ text-align: right;
12250
+ font-variant-numeric: tabular-nums;
12224
12251
  }
12225
12252
  .ds-247420 .ds-ep-tree-children { display: flex; flex-direction: column; }
12226
12253