2021-03-02 01:27:09 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2021-03-02 01:27:09 +08:00
|
|
|
Copyright 2021 The Matrix.org Foundation C.I.C.
|
|
|
|
|
2024-09-09 21:57:16 +08:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2021-03-02 01:27:09 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_SpaceBasicSettings {
|
|
|
|
.mx_Field {
|
2021-06-07 15:57:39 +08:00
|
|
|
margin: 24px 0;
|
2021-03-02 01:27:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_SpaceBasicSettings_avatarContainer {
|
|
|
|
display: flex;
|
|
|
|
margin-top: 24px;
|
|
|
|
|
|
|
|
.mx_SpaceBasicSettings_avatar {
|
|
|
|
position: relative;
|
|
|
|
height: 80px;
|
|
|
|
width: 80px;
|
2021-08-12 17:53:54 +08:00
|
|
|
background-color: $tertiary-content;
|
2021-03-02 01:27:09 +08:00
|
|
|
border-radius: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
img.mx_SpaceBasicSettings_avatar {
|
|
|
|
width: 80px;
|
|
|
|
height: 80px;
|
|
|
|
object-fit: cover;
|
|
|
|
border-radius: 16px;
|
|
|
|
}
|
|
|
|
|
2022-07-27 21:39:29 +08:00
|
|
|
/* only show it when the button is a div and not an img (has avatar) */
|
2021-03-02 01:27:09 +08:00
|
|
|
div.mx_SpaceBasicSettings_avatar {
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
height: 80px;
|
|
|
|
width: 80px;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2022-07-27 21:39:29 +08:00
|
|
|
background-color: #ffffff; /* white icon fill */
|
2021-03-02 01:27:09 +08:00
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-position: center;
|
|
|
|
mask-size: 20px;
|
2022-12-12 19:24:14 +08:00
|
|
|
mask-image: url("$(res)/img/element-icons/camera.svg");
|
2021-03-02 01:27:09 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> input[type="file"] {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .mx_AccessibleButton_kind_link {
|
|
|
|
display: inline-block;
|
2022-03-24 01:15:15 +08:00
|
|
|
margin: auto 18px;
|
2022-06-15 02:17:10 +08:00
|
|
|
color: $links;
|
2023-06-29 18:30:25 +08:00
|
|
|
font: var(--cpd-font-body-md-regular);
|
2021-03-02 01:27:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
> .mx_SpaceBasicSettings_avatar_remove {
|
2021-11-11 21:37:29 +08:00
|
|
|
color: $alert;
|
2021-03-02 01:27:09 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-25 18:10:37 +08:00
|
|
|
.mx_AccessibleButton_hasKind {
|
2021-03-02 01:27:09 +08:00
|
|
|
margin-left: auto;
|
|
|
|
display: block;
|
|
|
|
width: min-content;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_AccessibleButton_disabled {
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
|
|
|
}
|