[mirotalk] - move toggle participants button from chat footer to header with accent color

This commit is contained in:
Miroslav Pejic
2026-04-08 17:34:27 +02:00
parent 7f484e0a5a
commit ea9e0d514a
9 changed files with 31 additions and 11 deletions
+20
View File
@@ -1432,6 +1432,26 @@ body {
transform: translateY(-1px);
}
/* Participants toggle button in header */
.msger-header-participants-btn {
background: rgba(0, 168, 255, 0.15) !important;
color: #00a8ff !important;
transition:
color 0.2s ease,
background 0.2s ease,
transform 0.15s ease;
}
.msger-header-participants-btn:hover {
color: #fff !important;
background: rgba(0, 168, 255, 0.35) !important;
transform: translateY(-1px);
}
.msger-header-participants-btn:active {
transform: scale(0.92);
}
#msgerMaxBtn,
#msgerMinBtn {
display: none;