Merge pull request #4013 from element-hq/valere/fix_repeated_click_to_unmute

feat(mute): add syncing state and disable toggle during async mute
This commit is contained in:
Valere Fedronic
2026-06-05 12:58:23 +02:00
committed by Valere
parent c021fc1548
commit 1bf2a0917b
15 changed files with 386 additions and 34 deletions

View File

@@ -8,3 +8,17 @@ Please see LICENSE in the repository root for full details.
.endCall > svg {
color: var(--stopgap-color-on-solid-accent);
}
.rotate > svg {
animation: spin 1s linear infinite;
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}