feat(ui): зелёная кнопка ответа и автообновление PWA

This commit is contained in:
AidarKC
2026-04-22 19:49:32 +03:00
parent e0333a9c32
commit 1a8d1c70fd
5 changed files with 200 additions and 2 deletions
+27
View File
@@ -868,6 +868,33 @@
gap: 8px;
}
.call-accept-btn {
border: 1px solid rgba(122, 230, 166, 0.64);
border-radius: var(--radius-sm);
background: linear-gradient(120deg, rgba(98, 210, 146, 0.95), rgba(61, 164, 108, 0.94));
color: #052113;
padding: 9px 12px;
min-height: 38px;
font-weight: 700;
cursor: pointer;
transition: 0.2s ease;
}
.call-accept-btn:hover {
border-color: rgba(156, 246, 194, 0.88);
transform: translateY(-1px);
}
.call-accept-btn:disabled {
opacity: 1;
color: #93a6cc;
background: linear-gradient(180deg, rgba(18, 30, 54, 0.8), rgba(11, 20, 39, 0.86));
border-color: rgba(124, 145, 189, 0.28);
box-shadow: none;
cursor: not-allowed;
transform: none;
}
.pwa-diag-list {
gap: 8px;
}