mirror of
https://github.com/vector-im/element-web.git
synced 2025-12-26 03:31:56 +01:00
* 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>
59 lines
1.3 KiB
Plaintext
59 lines
1.3 KiB
Plaintext
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2021 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_SpaceBasicSettings {
|
|
.mx_Field {
|
|
margin: 24px 0;
|
|
}
|
|
|
|
.mx_SpaceBasicSettings_avatarContainer {
|
|
display: flex;
|
|
margin-top: 24px;
|
|
|
|
.mx_SpaceBasicSettings_avatar {
|
|
height: 80px;
|
|
width: 80px;
|
|
background-color: $tertiary-content;
|
|
border-radius: 16px;
|
|
object-fit: cover;
|
|
|
|
svg {
|
|
width: 20px;
|
|
height: 20px;
|
|
padding: 30px;
|
|
color: #ffffff; /* white icon fill */
|
|
}
|
|
}
|
|
|
|
> input[type="file"] {
|
|
display: none;
|
|
}
|
|
|
|
> .mx_AccessibleButton_kind_link {
|
|
display: inline-block;
|
|
margin: auto 18px;
|
|
color: $links;
|
|
font: var(--cpd-font-body-md-regular);
|
|
}
|
|
|
|
> .mx_SpaceBasicSettings_avatar_remove {
|
|
color: $alert;
|
|
}
|
|
}
|
|
|
|
.mx_AccessibleButton_hasKind {
|
|
margin-left: auto;
|
|
display: block;
|
|
width: min-content;
|
|
}
|
|
|
|
.mx_AccessibleButton_disabled {
|
|
cursor: not-allowed;
|
|
}
|
|
}
|