* 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>
72 lines
1.8 KiB
Plaintext
72 lines
1.8 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_NetworkDropdown_wrapper .mx_ContextualMenu {
|
|
.mx_GenericDropdownMenu_Option {
|
|
&.mx_GenericDropdownMenu_Option--header {
|
|
padding-top: $spacing-12;
|
|
padding-bottom: $spacing-4;
|
|
min-width: 160px;
|
|
}
|
|
|
|
&.mx_GenericDropdownMenu_Option--item {
|
|
padding-top: $spacing-4;
|
|
padding-bottom: $spacing-4;
|
|
|
|
> .mx_GenericDropdownMenu_Option--label span:first-child {
|
|
font-weight: normal;
|
|
}
|
|
}
|
|
|
|
> .mx_GenericDropdownMenu_Option--label {
|
|
flex-direction: row;
|
|
align-items: baseline;
|
|
align-content: baseline;
|
|
color: $primary-content;
|
|
|
|
span:not(:first-child) {
|
|
margin-left: $spacing-4;
|
|
color: $secondary-content;
|
|
}
|
|
}
|
|
}
|
|
|
|
.mx_GenericDropdownMenu_divider {
|
|
margin-top: $spacing-4;
|
|
margin-bottom: $spacing-4;
|
|
|
|
& + .mx_GenericDropdownMenu_Option .mx_GenericDropdownMenu_Option--label {
|
|
font-size: $font-15px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.mx_NetworkDropdown_removeServer {
|
|
position: relative;
|
|
display: inline-block;
|
|
width: 14px;
|
|
height: 14px;
|
|
padding: 1px;
|
|
background: $quinary-content;
|
|
border-radius: 8px;
|
|
text-align: center;
|
|
line-height: 16px;
|
|
color: $secondary-content;
|
|
margin-left: auto;
|
|
|
|
svg {
|
|
color: $secondary-content;
|
|
height: inherit;
|
|
width: inherit;
|
|
}
|
|
}
|
|
|
|
.mx_NetworkDropdown_dialog .mx_Dialog {
|
|
width: 45vw;
|
|
}
|