mirror of https://github.com/vector-im/riot-web
86 lines
2.3 KiB
Plaintext
86 lines
2.3 KiB
Plaintext
/*
|
|
Copyright 2021 The Matrix.org Foundation C.I.C.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
.mx_SpaceBasicSettings {
|
|
.mx_Field {
|
|
margin: 24px 0;
|
|
}
|
|
|
|
.mx_SpaceBasicSettings_avatarContainer {
|
|
display: flex;
|
|
margin-top: 24px;
|
|
|
|
.mx_SpaceBasicSettings_avatar {
|
|
position: relative;
|
|
height: 80px;
|
|
width: 80px;
|
|
background-color: $tertiary-content;
|
|
border-radius: 16px;
|
|
}
|
|
|
|
img.mx_SpaceBasicSettings_avatar {
|
|
width: 80px;
|
|
height: 80px;
|
|
object-fit: cover;
|
|
border-radius: 16px;
|
|
}
|
|
|
|
/* only show it when the button is a div and not an img (has avatar) */
|
|
div.mx_SpaceBasicSettings_avatar {
|
|
cursor: pointer;
|
|
|
|
&::before {
|
|
content: "";
|
|
position: absolute;
|
|
height: 80px;
|
|
width: 80px;
|
|
top: 0;
|
|
left: 0;
|
|
background-color: #ffffff; /* white icon fill */
|
|
mask-repeat: no-repeat;
|
|
mask-position: center;
|
|
mask-size: 20px;
|
|
mask-image: url('$(res)/img/element-icons/camera.svg');
|
|
}
|
|
}
|
|
|
|
> input[type="file"] {
|
|
display: none;
|
|
}
|
|
|
|
> .mx_AccessibleButton_kind_link {
|
|
display: inline-block;
|
|
margin: auto 18px;
|
|
color: $links;
|
|
font-size: $font-14px; /* See _SpaceSettingsDialog.pcss */
|
|
}
|
|
|
|
> .mx_SpaceBasicSettings_avatar_remove {
|
|
color: $alert;
|
|
}
|
|
}
|
|
|
|
.mx_AccessibleButton_hasKind {
|
|
margin-left: auto;
|
|
display: block;
|
|
width: min-content;
|
|
}
|
|
|
|
.mx_AccessibleButton_disabled {
|
|
cursor: not-allowed;
|
|
}
|
|
}
|