2022-10-06 16:27:12 +02:00
|
|
|
/*
|
2024-09-09 14:57:16 +01:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-10-06 16:27:12 +02:00
|
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
2025-01-06 11:18:54 +00:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
2024-09-09 14:57:16 +01:00
|
|
|
Please see LICENSE files in the repository root for full details.
|
2022-10-06 16:27:12 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
.mx_IncomingCallToast {
|
|
|
|
|
position: relative;
|
|
|
|
|
display: flex;
|
2026-04-27 16:37:42 +02:00
|
|
|
flex-direction: column;
|
2022-10-06 16:27:12 +02:00
|
|
|
pointer-events: initial; /* restore pointer events so the user can accept/decline */
|
|
|
|
|
|
|
|
|
|
.mx_IncomingCallToast_content {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2025-09-16 12:41:44 +02:00
|
|
|
gap: var(--cpd-space-4x);
|
2022-10-06 16:27:12 +02:00
|
|
|
width: 100%;
|
2022-10-14 14:50:50 -04:00
|
|
|
overflow: hidden;
|
2022-10-06 16:27:12 +02:00
|
|
|
|
2026-04-27 16:37:42 +02:00
|
|
|
.mx_IncomingCallToast_title {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: auto 1fr auto;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: var(--cpd-space-2x);
|
|
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mx_IncomingCallToast_expandButton {
|
|
|
|
|
padding: var(--cpd-space-1x);
|
|
|
|
|
color: var(--cpd-color-icon-secondary);
|
|
|
|
|
transition: color 0.1s;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
color: var(--cpd-color-icon-primary);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
& > svg {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mx_IncomingCallToast_avatars {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
vertical-align: top;
|
2022-10-06 16:27:12 +02:00
|
|
|
}
|
|
|
|
|
|
2025-09-16 12:41:44 +02:00
|
|
|
.mx_IncomingCallToast_buttons {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: var(--cpd-space-2x);
|
2026-04-27 16:37:42 +02:00
|
|
|
padding-block-start: var(--cpd-space-2x);
|
2025-09-16 12:41:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mx_IncomingCallToast_actionButton {
|
2022-10-06 16:27:12 +02:00
|
|
|
box-sizing: border-box;
|
2026-04-27 16:37:42 +02:00
|
|
|
min-width: 131px;
|
2025-09-16 12:41:44 +02:00
|
|
|
}
|
|
|
|
|
}
|
2022-10-06 16:27:12 +02:00
|
|
|
}
|