Implement chat queue fallback

This commit is contained in:
2026-07-08 16:57:40 +08:00
parent 10b6de0622
commit 6f3bbd3803
10 changed files with 367 additions and 31 deletions

View File

@@ -393,6 +393,31 @@ button:disabled {
font-size: 12px;
}
.thinking-indicator {
margin-bottom: 10px;
padding: 6px 10px;
border-radius: 8px;
background: #f2f7f5;
color: #5d7169;
font-size: 13px;
}
.thinking-dots::after {
content: "";
display: inline-block;
width: 3px;
height: 3px;
margin-left: 4px;
border-radius: 50%;
background: #0f8b6f;
animation: thinking-dot 1.2s infinite;
}
@keyframes thinking-dot {
0%, 100% { opacity: 0.2; }
50% { opacity: 1; }
}
.composer {
position: absolute;
left: 0;