anentrypoint-design 1.0.12 → 1.0.14

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
@@ -1481,12 +1481,19 @@
1481
1481
  viewports (the shrink-to-fit bug undersized even the base 760px case). */
1482
1482
  .ds-247420 .app-main.narrow { width: 100%; max-width: var(--measure-narrow); margin: 0 auto; }
1483
1483
  /* .narrow means "prose reading measure", not "shrink the whole shell on wide
1484
- screens" -- the fixed 760px floor read as narrow on any viewport above
1485
- ~1300px since the clamp below only widens the no-side case. Sidebar-present
1486
- narrow pages (docs, papers) get the same wide-viewport widening treatment,
1487
- just without the no-side variant's extra sidebar-width allowance. */
1484
+ screens". The old clamp(760px, 46vw, 1000px) grew too slowly to track the
1485
+ real available column: at 1920px viewport the .app-body grid's second
1486
+ track (.app width minus --sidebar-width) is ~1556px, but 46vw=883px sat
1487
+ well under the 1000px ceiling, leaving a ~340px dead gutter between the
1488
+ sidebar and the centered narrow column on an ordinary desktop screen (not
1489
+ just ultrawide) -- confirmed live via a real 1920x1080 CDP viewport, a
1490
+ project page (#/p/<slug>). 62vw tracks the actual column growth far closer
1491
+ (1920*0.62=1190px, much nearer the 1556px track than 883px was) while the
1492
+ 1200px ceiling still keeps prose from stretching into an unreadable
1493
+ full-bleed line -- sidebar-present narrow pages read the same width class
1494
+ as the no-side variant below instead of visibly starving next to it. */
1488
1495
  .ds-247420 .app-body:not(.no-side) .app-main.narrow {
1489
- max-width: clamp(var(--measure-narrow), 46vw, 1000px);
1496
+ max-width: clamp(var(--measure-narrow), 62vw, 1200px);
1490
1497
  }
1491
1498
  /* A shell with no sidebar has no competing column, so the prose clamp there was
1492
1499
  leaving the whole sidebar's worth of width empty -- 760px of content inside a
@@ -1523,8 +1530,12 @@
1523
1530
  1400-2200px viewport band (matches .ws-shell's 1920px ultrawide cap below)
1524
1531
  instead of freezing at 1400px and leaving >1000px dead margin on a 2560px+
1525
1532
  display. Row/prose measure caps (--measure-wide etc.) still own line-length
1526
- readability, so widening the shell itself does not create unreadable rows. */
1527
- .ds-247420 .app { max-width: clamp(1400px, 92vw, 1920px); margin-left: auto; margin-right: auto; }
1533
+ readability, so widening the shell itself does not create unreadable rows.
1534
+ 100vw (not 92vw): a stock 1920px monitor sat at 92vw = 1766px, leaving a
1535
+ visible ~154px dead margin on the single most common desktop resolution —
1536
+ the ceiling now reaches full width exactly at 1920px instead of falling
1537
+ short of it. */
1538
+ .ds-247420 .app { max-width: clamp(1400px, 100vw, 1920px); margin-left: auto; margin-right: auto; }
1528
1539
  .ds-247420 .app-main .chat,
1529
1540
  .ds-247420 .app-main > .chat-area,
1530
1541
  .ds-247420 .app-main > .main-content { max-width: none; margin: 0; width: 100%; }
@@ -4083,16 +4094,12 @@
4083
4094
  font-family: var(--ff-mono); font-size: var(--fs-xs);
4084
4095
  display: inline-flex; align-items: center; gap: 6px;
4085
4096
  }
4086
- /* CSS-drawn disc mark on the compact theme toggle: keeps the control
4087
- legible when its text label is hidden (icon-only rail strip). Per-mode
4088
- fill gives the icon itself a distinct look for auto/light/dark, so state
4089
- reads without relying on the title tooltip alone. */
4090
- .ds-247420 .ds-theme-disc {
4091
- flex: 0 0 auto; width: 14px; height: 14px; border-radius: 50%;
4092
- border: var(--bw-hair) solid var(--fg-3);
4093
- /* auto: half-and-half, matches default (no data-mode) for safety */
4094
- background: linear-gradient(90deg, var(--fg-3) 0 50%, transparent 50% 100%);
4095
- }
4097
+ /* CSS-drawn disc mark on the compact theme toggle: legibility fallback for
4098
+ when BOTH the SVG glyph and text label are hidden (icon-only rail strip).
4099
+ The glyph (.ds-theme-toggle-icon) already conveys mode whenever it is
4100
+ visible, so the disc stays hidden alongside it and only shows in the
4101
+ rail-collapsed state where responsive2-workspace.css hides the icon too. */
4102
+ .ds-247420 .ds-theme-disc { display: none; }
4096
4103
  .ds-247420 .ds-theme-disc[data-mode="auto"] {
4097
4104
  background: linear-gradient(90deg, var(--fg-3) 0 50%, transparent 50% 100%);
4098
4105
  }