anentrypoint-design 1.0.15 → 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)
@@ -1438,7 +1444,13 @@
1438
1444
  }
1439
1445
 
1440
1446
  .ds-247420 .app-main {
1441
- padding: var(--space-5) var(--pad-x) 0;
1447
+ /* Bottom padding reserves clearance equal to the status bar's own height so
1448
+ the last scrolled child never sits flush behind .app-status (a flex
1449
+ sibling pinned below .app-main in the .app column, not a child of it).
1450
+ --app-status-h-live tracks the bar's collapsed/expanded state (set by
1451
+ the toggle in app-shell.js) and falls back to the full bar height when
1452
+ unset (bar starts expanded / JS hasn't run yet). */
1453
+ padding: var(--space-5) var(--pad-x) var(--app-status-h-live, var(--app-status-h));
1442
1454
  min-width: 0;
1443
1455
  /* Full-height flex column so a single flex:1 child (e.g. .chat) fills the
1444
1456
  region between crumb and status instead of floating at content height. */
@@ -1586,6 +1598,25 @@
1586
1598
  agent target) drop in priority order instead of breaking mid-word onto a
1587
1599
  second line. */
1588
1600
  .ds-247420 .app-status { flex-wrap: nowrap; overflow: hidden; }
1601
+
1602
+ /* Collapse control — the status bar permanently claims --app-status-h of
1603
+ viewport on every page; this toggle lets it shrink to a thin reachable
1604
+ strip instead. The bar itself stays a fixed-height flex child (never
1605
+ display:none) so the toggle remains reachable to re-expand. */
1606
+ .ds-247420 .app-status-toggle {
1607
+ flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
1608
+ width: 18px; height: 18px; padding: 0; margin-right: var(--space-1);
1609
+ background: transparent; border: none; color: var(--fg-3); cursor: pointer;
1610
+ border-radius: var(--r-0);
1611
+ }
1612
+ .ds-247420 .app-status-toggle:hover { color: var(--fg); background: var(--bg-3); }
1613
+ .ds-247420 .app-status-toggle:focus-visible { outline: var(--focus-w) solid var(--focus-color); outline-offset: var(--focus-offset); }
1614
+ .ds-247420 .app-status.is-collapsed {
1615
+ height: var(--space-4); min-height: var(--space-4);
1616
+ overflow: hidden;
1617
+ }
1618
+ .ds-247420 .app-status.is-collapsed .item,
1619
+ .ds-247420 .app-status.is-collapsed .spread { display: none; }
1589
1620
  @media (max-width: 1100px) {
1590
1621
  .ds-247420 .app-status .item:last-of-type:not(:only-of-type) { display: none; }
1591
1622
  }
@@ -1633,10 +1664,10 @@
1633
1664
  .ds-247420 .btn { background: var(--bg-2); color: var(--fg); border-color: var(--rule); }
1634
1665
  .ds-247420 .btn:hover { background: var(--bg-3); color: var(--fg); transform: translateY(-1px); box-shadow: var(--shadow-1); }
1635
1666
  .ds-247420 .btn-primary {
1636
- background: var(--green); color: var(--on-color);
1667
+ background: var(--accent); color: var(--accent-fg);
1637
1668
  font-weight: 700;
1638
1669
  }
1639
- .ds-247420 .btn-primary:hover { background: var(--fg); color: var(--green); transform: translateY(-1px); box-shadow: var(--shadow-2); }
1670
+ .ds-247420 .btn-primary:hover { background: var(--fg); color: var(--bg); transform: translateY(-1px); box-shadow: var(--shadow-2); }
1640
1671
  .ds-247420 .btn-ghost { background: transparent; color: var(--fg); box-shadow: inset 0 0 0 2px var(--fg); }
1641
1672
  .ds-247420 .btn-ghost:hover { background: color-mix(in oklab, var(--fg) 12%, transparent); transform: translateY(-1px); }
1642
1673
  .ds-247420 .btn:active, .ds-247420 .btn-primary:active, .ds-247420 .btn-ghost:active { transform: translateY(1px); box-shadow: none; }
@@ -7036,6 +7067,10 @@
7036
7067
  }
7037
7068
  .ds-247420 .ds-err-numeral {
7038
7069
  font-family: var(--ff-mono); font-size: clamp(56px, 20vw, 120px);
7070
+ /* Shares the headline's weight (base.css h1: font-weight:600) so the two
7071
+ most important elements on the page read as one weight relationship
7072
+ instead of a thin numeral against a bold headline. */
7073
+ font-weight: 600;
7039
7074
  line-height: 1; color: var(--panel-text-3); letter-spacing: -0.03em;
7040
7075
  }
7041
7076
  .ds-247420 .ds-err-path {
@@ -12167,6 +12202,14 @@
12167
12202
  border-radius: var(--r-1, 8px);
12168
12203
  cursor: pointer;
12169
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;
12170
12213
  transition: background var(--dur-snap, 80ms) var(--ease, ease), color var(--dur-snap, 80ms) var(--ease, ease);
12171
12214
  }
12172
12215
  .ds-247420 .ds-ep-tree-row:hover {
@@ -12192,6 +12235,19 @@
12192
12235
  .ds-247420 .ds-ep-tree-tag {
12193
12236
  flex-shrink: 0; padding-left: var(--space-1-75);
12194
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;
12195
12251
  }
12196
12252
  .ds-247420 .ds-ep-tree-children { display: flex; flex-direction: column; }
12197
12253