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.
@@ -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(--accent-fg);
306
- background: var(--accent);
307
- font-weight: 600;
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
- /* The lime active pill is the sidebar's one accent moment; its own count
316
- chip rides the ink-on-accent pair instead of a second competing hue.
317
- The bare --accent here is deliberate and is NOT the usual accent-as-text
318
- defect: the chip's own background is --accent-fg (ink), so this is the
319
- INVERTED pair -- lime on ink, which is the high-contrast direction. Only
320
- accent-coloured text on a normal background needs --accent-ink. */
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(--accent-fg) 82%, transparent);
323
- color: var(--accent);
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
- /* Fluid ceiling, not a hard stop: scales from 1400px up to 1920px across the
430
- 1400-2200px viewport band (matches .ws-shell's 1920px ultrawide cap below)
431
- instead of freezing at 1400px and leaving >1000px dead margin on a 2560px+
432
- display. Row/prose measure caps (--measure-wide etc.) still own line-length
433
- readability, so widening the shell itself does not create unreadable rows.
434
- 100vw (not 92vw): a stock 1920px monitor sat at 92vw = 1766px, leaving a
435
- visible ~154px dead margin on the single most common desktop resolution —
436
- the ceiling now reaches full width exactly at 1920px instead of falling
437
- short of it. */
438
- .app { max-width: clamp(1400px, 100vw, 1920px); margin-left: auto; margin-right: auto; }
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 inherits the .app max-width cap above and stretches edge-to-edge
443
- within it; no separate width constraint (which previously narrowed it). */
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 capped main (ultrawide readability). */
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);