2021-03-01 18:27:09 +01:00
|
|
|
/*
|
|
|
|
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 {
|
2021-06-07 09:57:39 +02:00
|
|
|
margin: 24px 0;
|
2021-03-01 18:27:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_SpaceBasicSettings_avatarContainer {
|
|
|
|
display: flex;
|
|
|
|
margin-top: 24px;
|
|
|
|
|
|
|
|
.mx_SpaceBasicSettings_avatar {
|
|
|
|
position: relative;
|
|
|
|
height: 80px;
|
|
|
|
width: 80px;
|
|
|
|
background-color: $tertiary-fg-color;
|
|
|
|
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;
|
|
|
|
padding: 0;
|
|
|
|
margin: auto 16px;
|
|
|
|
color: #368bd6;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .mx_SpaceBasicSettings_avatar_remove {
|
|
|
|
color: $notice-primary-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-25 12:10:37 +02:00
|
|
|
.mx_AccessibleButton_hasKind {
|
2021-03-01 18:27:09 +01:00
|
|
|
padding: 8px 22px;
|
|
|
|
margin-left: auto;
|
|
|
|
display: block;
|
|
|
|
width: min-content;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_AccessibleButton_disabled {
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
|
|
|
}
|