* Tweak rendering of icons in legacy video feed Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Remove unused classes Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak rendering of icons in face pile Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak rendering of icons in overflow tile Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak rendering of icons in room search view Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak rendering of icons in top unread messages bar Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak rendering of icons in space basic settings Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak rendering of icons in thread summary tile Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak rendering of icons in legacy room tile Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak rendering of icons in incoming call toast Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak rendering of icons in labs jump to date Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak rendering of icons in field validation Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Update snapshots Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak rendering of icons in mini avatar uploader Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak rendering of icons in info tooltip Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak rendering of icons in network dropdown Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --------- Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
78 lines
1.9 KiB
Plaintext
78 lines
1.9 KiB
Plaintext
/*
|
|
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: row;
|
|
pointer-events: initial; /* restore pointer events so the user can accept/decline */
|
|
|
|
$closeButtonSize: var(--cpd-space-4x);
|
|
|
|
.mx_IncomingCallToast_content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--cpd-space-4x);
|
|
padding: var(--cpd-space-3x);
|
|
width: 100%;
|
|
overflow: hidden;
|
|
|
|
.mx_IncomingCallToast_message {
|
|
font-size: var(--cpd-font-size-body-lg);
|
|
line-height: var(--cpd-font-size-heading-sm);
|
|
width: calc(100% - $closeButtonSize - 2 * var(--cpd-space-1x));
|
|
font-weight: var(--cpd-font-weight-semibold);
|
|
}
|
|
|
|
.mx_LiveContentSummary_participants::before {
|
|
width: 15px;
|
|
height: 15px;
|
|
}
|
|
|
|
.mx_IncomingCallToast_buttons {
|
|
display: flex;
|
|
gap: var(--cpd-space-2x);
|
|
}
|
|
|
|
.mx_IncomingCallToast_actionButton {
|
|
position: relative;
|
|
|
|
align-self: flex-end;
|
|
|
|
box-sizing: border-box;
|
|
min-width: 120px;
|
|
|
|
padding: var(--cpd-space-1x) 0;
|
|
padding-right: var(--cpd-space-4x);
|
|
line-height: var(--cpd-space-6x);
|
|
}
|
|
}
|
|
|
|
.mx_IncomingCallToast_closeButton {
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
display: flex;
|
|
height: $closeButtonSize;
|
|
width: $closeButtonSize;
|
|
|
|
svg {
|
|
height: inherit;
|
|
width: inherit;
|
|
color: $secondary-content;
|
|
}
|
|
}
|
|
.mx_IncomingCallToast_toggleWithLabel {
|
|
display: flex;
|
|
span {
|
|
flex-grow: 1;
|
|
}
|
|
}
|
|
}
|