Skip to content
Open
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
17 changes: 14 additions & 3 deletions apps/web/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -12838,8 +12838,10 @@ button.ghost.mcp-copy-btn:hover:not(:disabled) {
.status-pill {
display: inline-flex;
align-self: flex-start;
align-items: center;
align-items: flex-start;
flex-wrap: wrap;
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.

Wrapping the detail text here fixes the overflow, but the pill still keeps align-items: center while AssistantMessage renders this as a short label plus a potentially multi-line detail (StatusPill here and WaitingPill at apps/web/src/components/AssistantMessage.tsx:1005-1009). Once a long Local CLI path wraps, the label and waiting dot get vertically centered against the whole block, so the first wrapped line reads visibly misaligned. Consider either top-aligning the wrapped content (align-items: flex-start) or forcing the detail onto its own row with flex-basis: 100% plus a small row-gap; the same adjustment should be applied to the matching .op-waiting block below so both pills stay aligned.

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

gap: 6px;
max-width: 100%;
padding: 3px 12px;
background: var(--bg-subtle);
border: 1px solid var(--border);
Expand All @@ -12848,7 +12850,11 @@ button.ghost.mcp-copy-btn:hover:not(:disabled) {
color: var(--text-muted);
}
.status-label { letter-spacing: 0.02em; }
.status-detail { color: var(--text); }
.status-detail {
min-width: 0;
color: var(--text);
overflow-wrap: anywhere;
}

/* Grouped tool / action card — the collapsible pill from screenshot 9 */
.action-card {
Expand Down Expand Up @@ -14342,8 +14348,9 @@ button.ghost.mcp-copy-btn:hover:not(:disabled) {
.op-waiting {
display: flex;
flex-wrap: wrap;
align-items: center;
align-items: flex-start;
gap: 8px;
max-width: 100%;
padding: 8px 12px;
border: 1px solid var(--border);
border-radius: var(--radius);
Expand All @@ -14365,12 +14372,16 @@ button.ghost.mcp-copy-btn:hover:not(:disabled) {
color: var(--text);
}
.op-waiting-detail {
min-width: 0;
max-width: 100%;
font-family: var(--mono);
font-size: 11px;
background: var(--bg-panel);
padding: 1px 6px;
border-radius: 4px;
color: var(--text-muted);
overflow-wrap: anywhere;
white-space: normal;
}
.op-waiting-hint {
flex-basis: 100%;
Expand Down
Loading