anentrypoint-design 0.0.257 → 0.0.258

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/app-shell.css CHANGED
@@ -1684,6 +1684,15 @@ table tr.clickable:focus-visible td { background: var(--bg-2); }
1684
1684
  font-size: var(--fs-sm); color: var(--fg-3);
1685
1685
  }
1686
1686
  .ds-page-header-dense .ds-page-header-right { flex: 0 0 auto; margin-left: auto; }
1687
+ /* Below ~480px the single-line ellipsis truncates the majority of the lede
1688
+ text with no way to recover it (no title attr, no expand) - let the row
1689
+ wrap and the lede break onto its own line instead of clipping. */
1690
+ @media (max-width: 480px) {
1691
+ .ds-page-header-dense-row { flex-wrap: wrap; }
1692
+ .ds-page-header-dense-lede {
1693
+ flex-basis: 100%; overflow: visible; text-overflow: clip; white-space: normal;
1694
+ }
1695
+ }
1687
1696
  .ds-file-toolbar-left,
1688
1697
  .ds-file-toolbar-right {
1689
1698
  display: flex; align-items: center; gap: var(--space-2); flex-wrap: wrap;
package/chat.css CHANGED
@@ -534,6 +534,12 @@
534
534
  font-family: var(--ff-mono); font-size: var(--fs-tiny);
535
535
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
536
536
  }
537
+ /* Below ~480px a single nowrap line silently truncates most of the agent /
538
+ model / cwd context (no way to recover it - no title attr on the container,
539
+ only on individual bits). Let it wrap instead of clipping. */
540
+ @media (max-width: 480px) {
541
+ .chat-composer-context { white-space: normal; overflow: visible; text-overflow: clip; }
542
+ }
537
543
  button.chat-composer-context { cursor: pointer; }
538
544
  button.chat-composer-context:hover { color: var(--fg-2); }
539
545
  button.chat-composer-context:focus-visible { outline: var(--focus-w) solid var(--focus-color); outline-offset: var(--focus-offset); }
package/dist/247420.css CHANGED
@@ -2190,6 +2190,15 @@
2190
2190
  font-size: var(--fs-sm); color: var(--fg-3);
2191
2191
  }
2192
2192
  .ds-247420 .ds-page-header-dense .ds-page-header-right { flex: 0 0 auto; margin-left: auto; }
2193
+ /* Below ~480px the single-line ellipsis truncates the majority of the lede
2194
+ text with no way to recover it (no title attr, no expand) - let the row
2195
+ wrap and the lede break onto its own line instead of clipping. */
2196
+ @media (max-width: 480px) {
2197
+ .ds-247420 .ds-page-header-dense-row { flex-wrap: wrap; }
2198
+ .ds-247420 .ds-page-header-dense-lede {
2199
+ flex-basis: 100%; overflow: visible; text-overflow: clip; white-space: normal;
2200
+ }
2201
+ }
2193
2202
  .ds-247420 .ds-file-toolbar-left,
2194
2203
  .ds-247420 .ds-file-toolbar-right {
2195
2204
  display: flex; align-items: center; gap: var(--space-2); flex-wrap: wrap;
@@ -6974,6 +6983,12 @@
6974
6983
  font-family: var(--ff-mono); font-size: var(--fs-tiny);
6975
6984
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
6976
6985
  }
6986
+ /* Below ~480px a single nowrap line silently truncates most of the agent /
6987
+ model / cwd context (no way to recover it - no title attr on the container,
6988
+ only on individual bits). Let it wrap instead of clipping. */
6989
+ @media (max-width: 480px) {
6990
+ .ds-247420 .chat-composer-context { white-space: normal; overflow: visible; text-overflow: clip; }
6991
+ }
6977
6992
  .ds-247420 button.chat-composer-context { cursor: pointer; }
6978
6993
  .ds-247420 button.chat-composer-context:hover { color: var(--fg-2); }
6979
6994
  .ds-247420 button.chat-composer-context:focus-visible { outline: var(--focus-w) solid var(--focus-color); outline-offset: var(--focus-offset); }