anentrypoint-design 1.0.14 → 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 +40 -3
- package/dist/247420.js +29 -29
- package/package.json +1 -1
- package/src/components/shell/app-shell.js +48 -11
- package/src/components/shell/icons.js +1 -0
- package/src/css/app-shell/kits-appended.css +4 -0
- package/src/css/app-shell/primitives.css +2 -2
- package/src/css/app-shell/topbar.css +34 -1
package/dist/247420.css
CHANGED
|
@@ -1199,6 +1199,14 @@
|
|
|
1199
1199
|
.ds-247420 .app-chrome > .app-crumb > .crumb-right { margin-left: auto; }
|
|
1200
1200
|
.ds-247420 .app-topbar > .brand { flex: 0 0 auto; }
|
|
1201
1201
|
.ds-247420 .app-topbar > .app-search { flex: 1 1 auto; }
|
|
1202
|
+
/* SearchInput() passed directly as Topbar's search prop renders with no
|
|
1203
|
+
Topbar-owned wrapper (see Topbar's isElement branch). Its own outer span
|
|
1204
|
+
(.ds-search-input-wrap) is display:contents, so .ds-search-field becomes
|
|
1205
|
+
the actual direct .app-topbar flex-item child — an inline-flex box that
|
|
1206
|
+
otherwise shrinks to its content and starves the input's own width:100%
|
|
1207
|
+
of anything to grow into, truncating the placeholder. Matches
|
|
1208
|
+
.app-search's flex-basis above so both search-slot shapes size the same. */
|
|
1209
|
+
.ds-247420 .app-topbar > .ds-search-field { flex: 1 1 auto; max-width: 360px; min-width: 0; }
|
|
1202
1210
|
.ds-247420 .app-topbar > nav { margin-left: auto; }
|
|
1203
1211
|
/* Utility cluster grouping: the theme toggle sits after the repo-info nav
|
|
1204
1212
|
links with no visual separation between the two groups, so the row read
|
|
@@ -1430,7 +1438,13 @@
|
|
|
1430
1438
|
}
|
|
1431
1439
|
|
|
1432
1440
|
.ds-247420 .app-main {
|
|
1433
|
-
padding
|
|
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));
|
|
1434
1448
|
min-width: 0;
|
|
1435
1449
|
/* Full-height flex column so a single flex:1 child (e.g. .chat) fills the
|
|
1436
1450
|
region between crumb and status instead of floating at content height. */
|
|
@@ -1578,6 +1592,25 @@
|
|
|
1578
1592
|
agent target) drop in priority order instead of breaking mid-word onto a
|
|
1579
1593
|
second line. */
|
|
1580
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; }
|
|
1581
1614
|
@media (max-width: 1100px) {
|
|
1582
1615
|
.ds-247420 .app-status .item:last-of-type:not(:only-of-type) { display: none; }
|
|
1583
1616
|
}
|
|
@@ -1625,10 +1658,10 @@
|
|
|
1625
1658
|
.ds-247420 .btn { background: var(--bg-2); color: var(--fg); border-color: var(--rule); }
|
|
1626
1659
|
.ds-247420 .btn:hover { background: var(--bg-3); color: var(--fg); transform: translateY(-1px); box-shadow: var(--shadow-1); }
|
|
1627
1660
|
.ds-247420 .btn-primary {
|
|
1628
|
-
background: var(--
|
|
1661
|
+
background: var(--accent); color: var(--accent-fg);
|
|
1629
1662
|
font-weight: 700;
|
|
1630
1663
|
}
|
|
1631
|
-
.ds-247420 .btn-primary:hover { background: var(--fg); color: var(--
|
|
1664
|
+
.ds-247420 .btn-primary:hover { background: var(--fg); color: var(--bg); transform: translateY(-1px); box-shadow: var(--shadow-2); }
|
|
1632
1665
|
.ds-247420 .btn-ghost { background: transparent; color: var(--fg); box-shadow: inset 0 0 0 2px var(--fg); }
|
|
1633
1666
|
.ds-247420 .btn-ghost:hover { background: color-mix(in oklab, var(--fg) 12%, transparent); transform: translateY(-1px); }
|
|
1634
1667
|
.ds-247420 .btn:active, .ds-247420 .btn-primary:active, .ds-247420 .btn-ghost:active { transform: translateY(1px); box-shadow: none; }
|
|
@@ -7028,6 +7061,10 @@
|
|
|
7028
7061
|
}
|
|
7029
7062
|
.ds-247420 .ds-err-numeral {
|
|
7030
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;
|
|
7031
7068
|
line-height: 1; color: var(--panel-text-3); letter-spacing: -0.03em;
|
|
7032
7069
|
}
|
|
7033
7070
|
.ds-247420 .ds-err-path {
|