Skip to content
Merged
Changes from 1 commit
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
13 changes: 12 additions & 1 deletion apps/web/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -12839,7 +12839,9 @@ button.ghost.mcp-copy-btn:hover:not(:disabled) {
display: inline-flex;
align-self: flex-start;
align-items: center;
flex-wrap: wrap;
Comment thread
lefarcen marked this conversation as resolved.
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 @@ -14344,6 +14350,7 @@ button.ghost.mcp-copy-btn:hover:not(:disabled) {
flex-wrap: wrap;
align-items: center;
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