2021-03-01 17:27:09 +00:00
|
|
|
/*
|
2024-09-09 14:57:16 +01:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2021-03-01 17:27:09 +00:00
|
|
|
Copyright 2021 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
2025-01-06 11:18:54 +00:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
2024-09-09 14:57:16 +01:00
|
|
|
Please see LICENSE files in the repository root for full details.
|
2021-03-01 17:27:09 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
.mx_SpaceBasicSettings {
|
|
|
|
|
.mx_Field {
|
2021-06-07 08:57:39 +01:00
|
|
|
margin: 24px 0;
|
2021-03-01 17:27:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mx_SpaceBasicSettings_avatarContainer {
|
|
|
|
|
display: flex;
|
|
|
|
|
margin-top: 24px;
|
|
|
|
|
|
|
|
|
|
.mx_SpaceBasicSettings_avatar {
|
|
|
|
|
height: 80px;
|
|
|
|
|
width: 80px;
|
2021-08-12 11:53:54 +02:00
|
|
|
background-color: $tertiary-content;
|
2021-03-01 17:27:09 +00:00
|
|
|
border-radius: 16px;
|
|
|
|
|
object-fit: cover;
|
|
|
|
|
|
2025-12-04 13:04:13 +00:00
|
|
|
svg {
|
|
|
|
|
width: 20px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
padding: 30px;
|
|
|
|
|
color: #ffffff; /* white icon fill */
|
2021-03-01 17:27:09 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
> input[type="file"] {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
> .mx_AccessibleButton_kind_link {
|
|
|
|
|
display: inline-block;
|
2022-03-23 17:15:15 +00:00
|
|
|
margin: auto 18px;
|
2022-06-14 20:17:10 +02:00
|
|
|
color: $links;
|
2023-06-29 11:30:25 +01:00
|
|
|
font: var(--cpd-font-body-md-regular);
|
2021-03-01 17:27:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
> .mx_SpaceBasicSettings_avatar_remove {
|
2021-11-11 14:37:29 +01:00
|
|
|
color: $alert;
|
2021-03-01 17:27:09 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-25 11:10:37 +01:00
|
|
|
.mx_AccessibleButton_hasKind {
|
2021-03-01 17:27:09 +00:00
|
|
|
margin-left: auto;
|
|
|
|
|
display: block;
|
|
|
|
|
width: min-content;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mx_AccessibleButton_disabled {
|
|
|
|
|
cursor: not-allowed;
|
|
|
|
|
}
|
|
|
|
|
}
|