feat: overhaul task board and cross-conversation workflows

This commit is contained in:
shiyue
2026-08-12 09:41:36 +08:00
parent e7d28935ef
commit 86231f0d97
55 changed files with 11628 additions and 280 deletions

View File

@@ -3143,6 +3143,41 @@ html[data-theme='wasteland'] .advanced-search-panel {
.codex-steer-status[data-status='failed'] {
color: var(--danger);
}
.codex-steer-actions {
display: inline-flex;
align-items: center;
gap: 6px;
margin-top: 8px;
}
.codex-steer-action {
min-height: 24px;
padding: 3px 9px;
border-radius: 6px;
border: 1px solid var(--border-color);
background: rgba(255, 255, 255, 0.08);
color: var(--text-secondary);
font-size: 12px;
font-weight: 700;
line-height: 1.2;
cursor: pointer;
}
.codex-steer-action:hover:not(:disabled),
.codex-steer-action:focus-visible:not(:disabled) {
border-color: var(--accent);
color: var(--text-primary);
}
.codex-steer-action:disabled {
cursor: not-allowed;
opacity: 0.58;
}
.codex-steer-retry {
border-color: rgba(var(--accent-rgb, 66, 153, 225), 0.42);
color: var(--accent);
}
.codex-steer-delete {
border-color: rgba(220, 53, 69, 0.32);
color: var(--danger);
}
.msg.user.codex-steer-pending .msg-copy-btn {
background: rgba(255, 255, 255, 0.08);
border-color: var(--border-color);
@@ -4805,20 +4840,36 @@ html[data-divider-time='hide'] .msg-bubble .agent-message-divider span {
padding-right: 6px;
}
.chat-controls {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
align-items: stretch;
display: flex;
flex-wrap: wrap;
align-items: center;
}
.user-outline-anchor,
.ccweb-prompt-outline-anchor {
position: static;
}
.ccweb-prompt-outline-anchor {
width: 100%;
width: auto;
max-width: 100%;
}
.user-outline-panel,
.ccweb-prompt-outline-panel {
left: 0;
right: 0;
width: auto;
bottom: calc(100% + 6px);
max-height: min(44vh, 300px);
}
.chat-cwd {
width: 100%;
max-width: none;
justify-content: center;
}
.chat-cwd,
.mode-select,
.user-outline-btn,
.ccweb-prompt-outline-btn,
.reload-mcp-btn,
.chat-runtime-state {
width: 100%;
max-width: none;
justify-content: center;
}
@@ -4842,17 +4893,6 @@ html[data-divider-time='hide'] .msg-bubble .agent-message-divider span {
left: 0;
right: auto;
}
.user-outline-panel {
left: auto;
right: 0;
width: min(320px, calc(100vw - 20px));
max-height: min(44vh, 300px);
bottom: calc(100% + 6px);
}
.ccweb-prompt-outline-panel {
left: 0;
right: auto;
}
.msg-copy-btn {
opacity: 1;
width: 24px;