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
4 changes: 4 additions & 0 deletions apps/web/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -14841,6 +14841,10 @@ button.ghost.mcp-copy-btn:hover:not(:disabled) {
padding: 1px 6px;
border-radius: 4px;
color: var(--text-muted);
max-width: 100%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
Comment on lines +14844 to +14847
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.

Because .op-waiting-detail is a flex item inside .op-waiting (display: flex a few lines above) and this change also forces the path to stay on one line, max-width: 100% plus overflow: hidden still will not shrink a long unbroken filesystem path below its min-content width. That means the bug this PR is trying to fix can still reproduce: the <code> pill keeps the full path width and overflows instead of showing an ellipsis. Please add min-width: 0 here (or an equivalent shrinking flex rule such as flex: 1 1 0) and keep the ellipsis styles on that shrinking box so the path can actually truncate inside the card.

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

}
.op-waiting-hint {
flex-basis: 100%;
Expand Down
Loading