Add connecting state

This commit is contained in:
Bryan1029384756
2026-02-16 19:06:17 -06:00
parent ee376b9ba3
commit fca2ed8da9
5 changed files with 84 additions and 22 deletions

View File

@@ -3693,6 +3693,15 @@ img.search-dropdown-avatar {
padding: 0 1px;
}
.search-result-link {
color: #00b0f4;
text-decoration: none;
cursor: pointer;
}
.search-result-link:hover {
text-decoration: underline;
}
.search-result-badge {
display: inline-block;
font-size: 10px;
@@ -3880,4 +3889,13 @@ img.search-dropdown-avatar {
.incoming-call-btn.reject {
background-color: #ed4245;
}
.voice-connecting-icon {
animation: voiceConnectingPulse 1.5s ease-in-out infinite;
}
@keyframes voiceConnectingPulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.4; }
}