anentrypoint-design 1.0.15 → 1.0.16

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
@@ -1438,7 +1438,13 @@
1438
1438
  }
1439
1439
 
1440
1440
  .ds-247420 .app-main {
1441
- padding: var(--space-5) var(--pad-x) 0;
1441
+ /* Bottom padding reserves clearance equal to the status bar's own height so
1442
+ the last scrolled child never sits flush behind .app-status (a flex
1443
+ sibling pinned below .app-main in the .app column, not a child of it).
1444
+ --app-status-h-live tracks the bar's collapsed/expanded state (set by
1445
+ the toggle in app-shell.js) and falls back to the full bar height when
1446
+ unset (bar starts expanded / JS hasn't run yet). */
1447
+ padding: var(--space-5) var(--pad-x) var(--app-status-h-live, var(--app-status-h));
1442
1448
  min-width: 0;
1443
1449
  /* Full-height flex column so a single flex:1 child (e.g. .chat) fills the
1444
1450
  region between crumb and status instead of floating at content height. */
@@ -1586,6 +1592,25 @@
1586
1592
  agent target) drop in priority order instead of breaking mid-word onto a
1587
1593
  second line. */
1588
1594
  .ds-247420 .app-status { flex-wrap: nowrap; overflow: hidden; }
1595
+
1596
+ /* Collapse control — the status bar permanently claims --app-status-h of
1597
+ viewport on every page; this toggle lets it shrink to a thin reachable
1598
+ strip instead. The bar itself stays a fixed-height flex child (never
1599
+ display:none) so the toggle remains reachable to re-expand. */
1600
+ .ds-247420 .app-status-toggle {
1601
+ flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
1602
+ width: 18px; height: 18px; padding: 0; margin-right: var(--space-1);
1603
+ background: transparent; border: none; color: var(--fg-3); cursor: pointer;
1604
+ border-radius: var(--r-0);
1605
+ }
1606
+ .ds-247420 .app-status-toggle:hover { color: var(--fg); background: var(--bg-3); }
1607
+ .ds-247420 .app-status-toggle:focus-visible { outline: var(--focus-w) solid var(--focus-color); outline-offset: var(--focus-offset); }
1608
+ .ds-247420 .app-status.is-collapsed {
1609
+ height: var(--space-4); min-height: var(--space-4);
1610
+ overflow: hidden;
1611
+ }
1612
+ .ds-247420 .app-status.is-collapsed .item,
1613
+ .ds-247420 .app-status.is-collapsed .spread { display: none; }
1589
1614
  @media (max-width: 1100px) {
1590
1615
  .ds-247420 .app-status .item:last-of-type:not(:only-of-type) { display: none; }
1591
1616
  }
@@ -1633,10 +1658,10 @@
1633
1658
  .ds-247420 .btn { background: var(--bg-2); color: var(--fg); border-color: var(--rule); }
1634
1659
  .ds-247420 .btn:hover { background: var(--bg-3); color: var(--fg); transform: translateY(-1px); box-shadow: var(--shadow-1); }
1635
1660
  .ds-247420 .btn-primary {
1636
- background: var(--green); color: var(--on-color);
1661
+ background: var(--accent); color: var(--accent-fg);
1637
1662
  font-weight: 700;
1638
1663
  }
1639
- .ds-247420 .btn-primary:hover { background: var(--fg); color: var(--green); transform: translateY(-1px); box-shadow: var(--shadow-2); }
1664
+ .ds-247420 .btn-primary:hover { background: var(--fg); color: var(--bg); transform: translateY(-1px); box-shadow: var(--shadow-2); }
1640
1665
  .ds-247420 .btn-ghost { background: transparent; color: var(--fg); box-shadow: inset 0 0 0 2px var(--fg); }
1641
1666
  .ds-247420 .btn-ghost:hover { background: color-mix(in oklab, var(--fg) 12%, transparent); transform: translateY(-1px); }
1642
1667
  .ds-247420 .btn:active, .ds-247420 .btn-primary:active, .ds-247420 .btn-ghost:active { transform: translateY(1px); box-shadow: none; }
@@ -7036,6 +7061,10 @@
7036
7061
  }
7037
7062
  .ds-247420 .ds-err-numeral {
7038
7063
  font-family: var(--ff-mono); font-size: clamp(56px, 20vw, 120px);
7064
+ /* Shares the headline's weight (base.css h1: font-weight:600) so the two
7065
+ most important elements on the page read as one weight relationship
7066
+ instead of a thin numeral against a bold headline. */
7067
+ font-weight: 600;
7039
7068
  line-height: 1; color: var(--panel-text-3); letter-spacing: -0.03em;
7040
7069
  }
7041
7070
  .ds-247420 .ds-err-path {