-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Expand file tree
/
Copy path_IncomingCallToast.pcss
More file actions
63 lines (52 loc) · 1.62 KB
/
_IncomingCallToast.pcss
File metadata and controls
63 lines (52 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*
Copyright 2024 New Vector Ltd.
Copyright 2022 The Matrix.org Foundation C.I.C.
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
Please see LICENSE files in the repository root for full details.
*/
.mx_IncomingCallToast {
position: relative;
display: flex;
flex-direction: column;
pointer-events: initial; /* restore pointer events so the user can accept/decline */
.mx_IncomingCallToast_content {
display: flex;
flex-direction: column;
gap: var(--cpd-space-4x);
width: 100%;
overflow: hidden;
.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;
}
.mx_IncomingCallToast_buttons {
display: flex;
gap: var(--cpd-space-2x);
padding-block-start: var(--cpd-space-2x);
}
.mx_IncomingCallToast_actionButton {
box-sizing: border-box;
min-width: 131px;
}
}
}