Implement chat queue fallback
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user