Add transcribe progress indicator — elapsed timer and progressive trace messages

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-13 19:12:09 +02:00
parent e81b8f8ecc
commit aa2d64b599
2 changed files with 38 additions and 1 deletions
+6
View File
@@ -457,6 +457,12 @@ p {
.trace-status.running {
background: var(--amber);
animation: trace-pulse 1.4s ease-in-out infinite;
}
@keyframes trace-pulse {
0%, 100% { opacity: 1; transform: scale(1); }
50% { opacity: 0.4; transform: scale(0.7); }
}
.trace-status.warning {