Add files via upload

This commit is contained in:
公明
2026-07-24 17:05:44 +08:00
committed by GitHub
parent 7b6f56e476
commit cc0233d7b4
5 changed files with 212 additions and 40 deletions
+95 -9
View File
@@ -4739,6 +4739,10 @@ html[data-theme="dark"] .new-chat-btn:focus-visible {
color: #10b981;
}
.ai-channel-status-label.complete {
color: #3b82f6;
}
.ai-channel-status-label.testing {
color: #3b82f6;
}
@@ -4760,6 +4764,10 @@ html[data-theme="dark"] .new-chat-btn:focus-visible {
background: #10b981;
}
.ai-channel-status-dot.complete {
background: #3b82f6;
}
.ai-channel-status-dot.draft {
background: #f59e0b;
}
@@ -4808,18 +4816,60 @@ html[data-theme="dark"] .new-chat-btn:focus-visible {
font-weight: 700;
}
.ai-channel-editor-head h5 {
.ai-channel-editor-title {
margin: 0;
color: var(--text-color, #2d3748);
font-size: 21px;
font-weight: 700;
line-height: 1.2;
}
.ai-channel-editor-head p {
margin: 4px 0 0;
color: var(--text-muted, #718096);
font-size: 12px;
line-height: 1.5;
}
.ai-channel-editor-meta {
display: flex;
flex-wrap: wrap;
justify-content: flex-end;
gap: 8px;
min-width: 0;
}
.ai-channel-editor-chip {
max-width: 220px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
border: 1px solid color-mix(in srgb, var(--border-color, #e2e8f0) 70%, transparent);
border-radius: 999px;
background: color-mix(in srgb, var(--card-bg, #fff) 92%, var(--primary-color, #3182ce));
color: var(--text-muted, #718096);
font-size: 12px;
font-weight: 600;
line-height: 1;
padding: 7px 10px;
}
.ai-channel-editor-chip.default,
.ai-channel-editor-chip.complete {
border-color: rgba(49, 130, 206, 0.22);
background: rgba(49, 130, 206, 0.1);
color: var(--primary-color, #3182ce);
}
.ai-channel-editor-chip.ready {
border-color: rgba(16, 185, 129, 0.22);
background: rgba(16, 185, 129, 0.1);
color: #059669;
}
.ai-channel-editor-chip.testing {
border-color: rgba(214, 158, 46, 0.24);
background: rgba(214, 158, 46, 0.1);
color: #b7791f;
}
.ai-channel-editor-chip.failed,
.ai-channel-editor-chip.draft {
border-color: rgba(229, 62, 62, 0.2);
background: rgba(229, 62, 62, 0.08);
color: var(--error-color, #e53e3e);
}
.ai-channel-editor-actions {
@@ -5121,6 +5171,38 @@ html[data-theme="dark"] .ai-channel-editor-head {
border-bottom-color: rgba(71, 85, 105, 0.34);
}
html[data-theme="dark"] .ai-channel-editor-chip {
border-color: rgba(71, 85, 105, 0.46);
background: rgba(15, 23, 42, 0.7);
color: #94a3b8;
}
html[data-theme="dark"] .ai-channel-editor-chip.default,
html[data-theme="dark"] .ai-channel-editor-chip.complete {
border-color: rgba(96, 165, 250, 0.34);
background: rgba(96, 165, 250, 0.12);
color: #93c5fd;
}
html[data-theme="dark"] .ai-channel-editor-chip.ready {
border-color: rgba(52, 211, 153, 0.28);
background: rgba(52, 211, 153, 0.1);
color: #6ee7b7;
}
html[data-theme="dark"] .ai-channel-editor-chip.testing {
border-color: rgba(251, 191, 36, 0.28);
background: rgba(251, 191, 36, 0.1);
color: #fbbf24;
}
html[data-theme="dark"] .ai-channel-editor-chip.failed,
html[data-theme="dark"] .ai-channel-editor-chip.draft {
border-color: rgba(248, 113, 113, 0.28);
background: rgba(248, 113, 113, 0.1);
color: #fca5a5;
}
html[data-theme="dark"] .ai-channel-form-section,
html[data-theme="dark"] .ai-channel-advanced-section {
border-color: rgba(71, 85, 105, 0.34);
@@ -5238,6 +5320,10 @@ html[data-theme="dark"] .ai-channel-editor-form select {
align-items: stretch;
}
.ai-channel-editor-meta {
justify-content: flex-start;
}
.ai-channel-switcher {
align-items: stretch;
flex-direction: column;