Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions apps/web/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -1851,6 +1851,9 @@ a.avatar-item:visited {
font-size: 11.5px;
line-height: 1.35;
color: var(--text-muted);
overflow: hidden;
text-overflow: ellipsis;
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This selector does not cover the Local CLI startup path described in #2206. The issue thread identifies the affected chat startup UI as WaitingPill / StatusPill in apps/web/src/components/AssistantMessage.tsx, where the detail text renders as .op-waiting-detail or .status-detail; .user-status-card__copy span is only used by the design-system workspace user status card in ChatPane.tsx. Because the long path never receives these new rules, the reported overflow can still happen. Please move or duplicate the overflow handling onto the actual startup detail selectors, for example by constraining .op-waiting-detail / .status-detail with min-width: 0 plus wrapping or ellipsis rules that fit their flex containers.

🔁 Powered by Looper · runner=reviewer · agent=codex · An autonomous AI dev team for your GitHub repos.

white-space: nowrap;
}

.msg.user .user-copy-btn {
Expand Down
Loading