anentrypoint-design 1.0.13 → 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
@@ -1530,8 +1530,12 @@
1530
1530
  1400-2200px viewport band (matches .ws-shell's 1920px ultrawide cap below)
1531
1531
  instead of freezing at 1400px and leaving >1000px dead margin on a 2560px+
1532
1532
  display. Row/prose measure caps (--measure-wide etc.) still own line-length
1533
- readability, so widening the shell itself does not create unreadable rows. */
1534
- .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; }
1535
1539
  .ds-247420 .app-main .chat,
1536
1540
  .ds-247420 .app-main > .chat-area,
1537
1541
  .ds-247420 .app-main > .main-content { max-width: none; margin: 0; width: 100%; }
@@ -4090,16 +4094,12 @@
4090
4094
  font-family: var(--ff-mono); font-size: var(--fs-xs);
4091
4095
  display: inline-flex; align-items: center; gap: 6px;
4092
4096
  }
4093
- /* CSS-drawn disc mark on the compact theme toggle: keeps the control
4094
- legible when its text label is hidden (icon-only rail strip). Per-mode
4095
- fill gives the icon itself a distinct look for auto/light/dark, so state
4096
- reads without relying on the title tooltip alone. */
4097
- .ds-247420 .ds-theme-disc {
4098
- flex: 0 0 auto; width: 14px; height: 14px; border-radius: 50%;
4099
- border: var(--bw-hair) solid var(--fg-3);
4100
- /* auto: half-and-half, matches default (no data-mode) for safety */
4101
- background: linear-gradient(90deg, var(--fg-3) 0 50%, transparent 50% 100%);
4102
- }
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; }
4103
4103
  .ds-247420 .ds-theme-disc[data-mode="auto"] {
4104
4104
  background: linear-gradient(90deg, var(--fg-3) 0 50%, transparent 50% 100%);
4105
4105
  }