Skip to content
Merged
Show file tree
Hide file tree
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
118 changes: 8 additions & 110 deletions packages/web-shell/client/App.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -307,117 +307,15 @@
padding: 0;
}

.emptyWelcomeFooter {
padding: 12px 0 0;
}

.queuedPrompts {
display: flex;
flex-direction: column;
gap: 6px;
width: calc(100% - 32px);
margin: 0 auto -8px;
padding: 12px;
border: 1px solid var(--border);
border-radius: 12px 12px 0 0;
background: var(--background);
color: var(--foreground);
font-family: var(--font-sans, system-ui, sans-serif);
font-size: 14px;
line-height: 22px;
}

.queuedPrompt {
display: flex;
align-items: center;
gap: 5px;
min-width: 0;
max-width: 100%;
min-height: 28px;
color: var(--foreground);
}

.queuedPrompt + .queuedPrompt {
border-top: 0;
}

.queuedPromptIcon {
display: inline-flex;
width: 20px;
height: 20px;
align-items: center;
justify-content: center;
flex-shrink: 0;
color: var(--secondary-foreground);
}

.queuedPromptMaskIcon,
.queuedPromptActionIcon {
display: inline-block;
flex-shrink: 0;
background: currentColor;
mask: var(--queued-icon-url) center / contain no-repeat;
-webkit-mask: var(--queued-icon-url) center / contain no-repeat;
}

.queuedPromptMaskIcon {
width: 14px;
height: 14px;
}

.queuedPromptText {
min-width: 0;
flex: 1;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}

.queuedPromptActions {
position: relative;
display: inline-flex;
align-items: center;
gap: 10px;
/* Esc-clear hint, shown in the composer's top status slot (where the streaming
loader sits) — the two never coexist, so it stays clear of the queue. */
.escClearStatus {
flex-shrink: 0;
color: var(--secondary-foreground);
padding: 4px 0;
font-size: 13px;
color: var(--muted-foreground);
}

.queuedPromptAction {
display: inline-flex;
align-items: center;
gap: 4px;
min-height: 28px;
appearance: none;
border: 0;
border-radius: 6px;
background: transparent;
color: var(--secondary-foreground);
cursor: pointer;
font: inherit;
font-size: 14px;
line-height: 22px;
padding: 3px 6px;
}

.queuedPromptActionIcon {
width: 14px;
height: 14px;
}

.queuedPromptAction:hover {
background: var(--accent);
color: var(--foreground);
}

.queuedPromptAction:disabled {
opacity: 0.4;
cursor: not-allowed;
}

.queuedPromptAction:disabled:hover {
color: var(--secondary-foreground);
}

.queuedHint {
display: none;
.emptyWelcomeFooter {
padding: 12px 0 0;
}
Loading