anentrypoint-design 1.0.19 → 1.0.21
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/colors_and_type.css +34 -7
- package/dist/247420.css +182 -92
- package/dist/247420.js +28 -28
- package/package.json +1 -1
- package/src/components/agent-chat/empty-state.js +8 -3
- package/src/components/chat-message-parts/inline.js +15 -2
- package/src/components/content/lists.js +1 -1
- package/src/components/editor-primitives/json-viewer.js +6 -5
- package/src/components/files-modals/preview-bodies.js +6 -2
- package/src/components/shell/app-shell.js +6 -0
- package/src/components/shell/atoms.js +1 -1
- package/src/css/app-shell/base.css +6 -6
- package/src/css/app-shell/calendar.css +1 -2
- package/src/css/app-shell/catalog-theme.css +1 -1
- package/src/css/app-shell/chat-polish.css +3 -3
- package/src/css/app-shell/files.css +2 -2
- package/src/css/app-shell/git-status.css +2 -2
- package/src/css/app-shell/hero-content.css +13 -5
- package/src/css/app-shell/kits-appended.css +8 -4
- package/src/css/app-shell/models-config.css +1 -1
- package/src/css/app-shell/panel-row.css +36 -12
- package/src/css/app-shell/plugins-config.css +3 -3
- package/src/css/app-shell/primitives.css +35 -6
- package/src/css/app-shell/responsive2-workspace.css +8 -5
- package/src/css/app-shell/sidebar-misc.css +2 -2
- package/src/css/app-shell/skills-config.css +1 -1
- package/src/css/app-shell/topbar.css +27 -30
|
@@ -302,9 +302,9 @@ body.canvas-host { background: transparent !important; }
|
|
|
302
302
|
outline-offset: var(--focus-offset);
|
|
303
303
|
}
|
|
304
304
|
.app-side a.active {
|
|
305
|
-
color: var(--
|
|
306
|
-
background: var(--
|
|
307
|
-
font-weight:
|
|
305
|
+
color: var(--fg);
|
|
306
|
+
background: var(--bg-3);
|
|
307
|
+
font-weight: 500;
|
|
308
308
|
}
|
|
309
309
|
.app-side .count {
|
|
310
310
|
background: color-mix(in oklab, var(--fg) 10%, transparent);
|
|
@@ -312,15 +312,16 @@ body.canvas-host { background: transparent !important; }
|
|
|
312
312
|
padding: 3px 10px; font-size: var(--fs-micro); font-weight: 700;
|
|
313
313
|
border-radius: var(--r-pill);
|
|
314
314
|
}
|
|
315
|
-
/*
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
315
|
+
/* Active state is a flat neutral highlight (--bg-3/--fg), not an accent
|
|
316
|
+
fill -- no hue, just a perceivable shade step up from the plain a[href]:hover
|
|
317
|
+
(--bg-2). --fg over --bg-3 is the same body-text pairing used everywhere
|
|
318
|
+
else in the sidebar, so it inherits that AA contrast for free instead of
|
|
319
|
+
depending on a per-[data-accent] retune. The count chip stays on its
|
|
320
|
+
default neutral pairing above; there is no accent-on-ink inversion to
|
|
321
|
+
double down on anymore. */
|
|
321
322
|
.app-side a.active .count {
|
|
322
|
-
background: color-mix(in oklab, var(--
|
|
323
|
-
color: var(--
|
|
323
|
+
background: color-mix(in oklab, var(--fg) 16%, transparent);
|
|
324
|
+
color: var(--fg-2);
|
|
324
325
|
}
|
|
325
326
|
|
|
326
327
|
.app-main {
|
|
@@ -426,31 +427,27 @@ body.canvas-host { background: transparent !important; }
|
|
|
426
427
|
}
|
|
427
428
|
|
|
428
429
|
@media (min-width: 1400px) {
|
|
429
|
-
/*
|
|
430
|
-
|
|
431
|
-
instead of
|
|
432
|
-
|
|
433
|
-
readability
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
430
|
+
/* No outer ceiling: .app tracks 100vw at every width, including past 1920px
|
|
431
|
+
and 2560px+ ultrawide displays, so the shell always fills the real screen
|
|
432
|
+
edges instead of leaving dead margin on either side. Row/prose measure
|
|
433
|
+
caps (--measure-wide, --stage-wide, 64ch, etc.) own line-length
|
|
434
|
+
readability independently of the shell's own width, so letting .app grow
|
|
435
|
+
unbounded does not create unreadable rows -- text still wraps at its own
|
|
436
|
+
cap; only the surrounding chrome (panels, sidebar, status bar) stretches
|
|
437
|
+
to use the extra space. Measured live at 2560px: the prior 1920px cap
|
|
438
|
+
left a symmetric 320px dead margin on each side (640px total) -- this was
|
|
439
|
+
the root cause of pages appearing to "shrink to content" rather than fill
|
|
440
|
+
the screen on wide monitors. */
|
|
441
|
+
.app { width: 100%; margin-left: auto; margin-right: auto; }
|
|
439
442
|
.app-main .chat,
|
|
440
443
|
.app-main > .chat-area,
|
|
441
444
|
.app-main > .main-content { max-width: none; margin: 0; width: 100%; }
|
|
442
|
-
/* Status bar
|
|
443
|
-
|
|
445
|
+
/* Status bar spans the full-width .app edge-to-edge; no separate width
|
|
446
|
+
constraint (which previously narrowed it). */
|
|
444
447
|
.app-status { width: 100%; }
|
|
445
|
-
/* Cap row text measure inside the wide
|
|
448
|
+
/* Cap row text measure inside the wide main (ultrawide readability). */
|
|
446
449
|
.row .title, .row .sub { max-width: var(--measure-wide); }
|
|
447
450
|
}
|
|
448
|
-
/* Beyond 1920px the shell itself stops growing (matches .ws-shell's own cap) —
|
|
449
|
-
extra space becomes page margin rather than stretching sidebar/content grid
|
|
450
|
-
tracks to distances a pointer/eye shouldn't have to travel. */
|
|
451
|
-
@media (min-width: 2200px) {
|
|
452
|
-
.app { max-width: 1920px; }
|
|
453
|
-
}
|
|
454
451
|
|
|
455
452
|
.app-status {
|
|
456
453
|
display: flex; align-items: center; gap: var(--space-3);
|