improved feedback for voice mode
All checks were successful
Deploy FluentGerman.ai / deploy (push) Successful in 48s

This commit is contained in:
2026-02-18 12:19:21 +01:00
parent 9143c27af8
commit 3805157f67
3 changed files with 194 additions and 60 deletions

View File

@@ -1227,4 +1227,37 @@ tr:hover td {
transform: scale(1);
opacity: 0.8;
}
}
/* ── Thinking dots ────────────────────────────────────────────────── */
.message-thinking {
color: var(--text-muted);
font-style: italic;
font-size: 0.9em;
}
.thinking-dots span {
animation: thinkingDots 1.4s infinite ease-in-out both;
margin-left: 2px;
}
.thinking-dots span:nth-child(1) {
animation-delay: -0.32s;
}
.thinking-dots span:nth-child(2) {
animation-delay: -0.16s;
}
@keyframes thinkingDots {
0%,
80%,
100% {
transform: scale(0);
}
40% {
transform: scale(1);
}
}