UI: сворачивание активного звонка

This commit is contained in:
AidarKC
2026-07-24 15:00:01 +04:00
parent 5df69d73c7
commit 4d9e42205f
5 changed files with 300 additions and 21 deletions
+54 -2
View File
@@ -1733,16 +1733,57 @@
display: none;
}
.call-overlay {
position: fixed;
.call-ui-root[hidden] {
display: none;
}
.call-ui-root {
position: absolute;
inset: 0;
z-index: 80;
pointer-events: none;
}
.call-minimized-bar {
position: absolute;
top: 0;
left: 0;
right: 0;
min-height: 44px;
padding: calc(8px + env(safe-area-inset-top)) 14px 8px;
border: 0;
border-bottom: 1px solid rgba(159, 255, 196, 0.28);
background: linear-gradient(180deg, rgba(30, 138, 79, 0.98), rgba(18, 106, 60, 0.98));
box-shadow: 0 10px 24px rgba(5, 30, 16, 0.28);
color: #f3fff8;
font-size: 13px;
font-weight: 700;
line-height: 1.2;
text-align: left;
pointer-events: auto;
cursor: pointer;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.call-minimized-bar-text {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.call-overlay {
position: absolute;
inset: 0;
display: flex;
align-items: flex-end;
justify-content: center;
padding: 16px;
background: rgba(6, 10, 16, 0.55);
backdrop-filter: blur(4px);
pointer-events: auto;
}
.call-overlay-panel {
@@ -1756,12 +1797,23 @@
gap: 10px;
}
.call-overlay-head {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 12px;
}
.call-overlay-title {
margin: 0;
font-size: 20px;
color: #eff4ff;
}
.call-overlay-minimize-btn {
flex: 0 0 auto;
}
.call-overlay-status {
color: #c8d7f6;
font-size: 14px;