2022-10-06 22:27:12 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-10-06 22:27:12 +08:00
|
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
|
2024-09-09 21:57:16 +08:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2022-10-06 22:27:12 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_IncomingCallToast {
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
pointer-events: initial; /* restore pointer events so the user can accept/decline */
|
|
|
|
width: 250px;
|
|
|
|
|
2022-10-15 02:50:50 +08:00
|
|
|
$closeButtonSize: 16px;
|
|
|
|
|
2022-10-06 22:27:12 +08:00
|
|
|
.mx_IncomingCallToast_content {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
margin-left: 8px;
|
|
|
|
width: 100%;
|
2022-10-15 02:50:50 +08:00
|
|
|
overflow: hidden;
|
2022-10-06 22:27:12 +08:00
|
|
|
|
|
|
|
.mx_IncomingCallToast_info {
|
|
|
|
margin-bottom: $spacing-16;
|
|
|
|
|
|
|
|
.mx_IncomingCallToast_room {
|
|
|
|
display: inline-block;
|
|
|
|
|
2023-06-29 18:30:25 +08:00
|
|
|
font-weight: var(--cpd-font-weight-semibold);
|
2022-10-06 22:27:12 +08:00
|
|
|
font-size: $font-15px;
|
|
|
|
line-height: $font-24px;
|
|
|
|
|
2022-10-15 02:50:50 +08:00
|
|
|
/* Prevent overlap with the close button */
|
|
|
|
width: calc(100% - $closeButtonSize - 2 * $spacing-4);
|
2022-10-06 22:27:12 +08:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
|
|
margin-bottom: $spacing-4;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_IncomingCallToast_message {
|
|
|
|
font-size: $font-12px;
|
|
|
|
line-height: $font-15px;
|
|
|
|
|
|
|
|
margin-bottom: $spacing-4;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_LiveContentSummary {
|
|
|
|
font-size: $font-12px;
|
|
|
|
line-height: $font-15px;
|
|
|
|
|
|
|
|
.mx_LiveContentSummary_participants::before {
|
|
|
|
width: 15px;
|
|
|
|
height: 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_IncomingCallToast_joinButton {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
bottom: $spacing-4;
|
|
|
|
right: $spacing-4;
|
|
|
|
|
|
|
|
align-self: flex-end;
|
|
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
min-width: 120px;
|
|
|
|
|
|
|
|
padding: $spacing-4 0;
|
|
|
|
|
|
|
|
line-height: $font-24px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_IncomingCallToast_closeButton {
|
|
|
|
position: absolute;
|
|
|
|
|
|
|
|
top: $spacing-4;
|
|
|
|
right: $spacing-4;
|
|
|
|
|
|
|
|
display: flex;
|
2022-10-15 02:50:50 +08:00
|
|
|
height: $closeButtonSize;
|
|
|
|
width: $closeButtonSize;
|
2022-10-06 22:27:12 +08:00
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: "";
|
|
|
|
|
2024-10-15 18:19:06 +08:00
|
|
|
mask-image: url("@vector-im/compound-design-tokens/icons/close.svg");
|
2022-10-06 22:27:12 +08:00
|
|
|
|
|
|
|
height: inherit;
|
|
|
|
width: inherit;
|
|
|
|
background-color: $secondary-content;
|
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-size: contain;
|
|
|
|
mask-position: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|