2019-12-16 15:58:12 +01:00
|
|
|
/*
|
2020-09-22 05:00:51 +02:00
|
|
|
Copyright 2019, 2020 The Matrix.org Foundation C.I.C.
|
2019-12-16 15:58:12 +01:00
|
|
|
|
|
|
|
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_AvatarSetting_avatar {
|
2020-09-22 05:00:51 +02:00
|
|
|
width: 90px;
|
|
|
|
height: 90px;
|
|
|
|
margin-top: 8px;
|
2019-12-16 15:58:12 +01:00
|
|
|
position: relative;
|
|
|
|
|
2020-09-22 05:00:51 +02:00
|
|
|
.mx_AvatarSetting_hover {
|
2020-09-24 16:23:06 +02:00
|
|
|
transition: opacity $hover-transition;
|
2020-09-22 05:00:51 +02:00
|
|
|
|
|
|
|
// position to place the hover bg over the entire thing
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
|
|
|
|
pointer-events: none; // let the pointer fall through the underlying thing
|
|
|
|
|
|
|
|
line-height: 90px;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
> span {
|
|
|
|
color: #fff; // hardcoded to contrast with background
|
|
|
|
position: relative; // tricks the layout engine into putting this on top of the bg
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_AvatarSetting_hoverBg {
|
|
|
|
// absolute position to lazily fill the entire container
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
|
|
|
|
opacity: 0.5;
|
|
|
|
background-color: $settings-profile-overlay-placeholder-fg-color;
|
|
|
|
border-radius: 90px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.mx_AvatarSetting_avatar_hovering .mx_AvatarSetting_hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(.mx_AvatarSetting_avatar_hovering) .mx_AvatarSetting_hover {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
2019-12-16 15:58:12 +01:00
|
|
|
& > * {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_AccessibleButton.mx_AccessibleButton_kind_primary {
|
|
|
|
margin-top: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_AccessibleButton.mx_AccessibleButton_kind_link_sm {
|
2020-09-22 05:00:51 +02:00
|
|
|
width: 100%;
|
2019-12-16 15:58:12 +01:00
|
|
|
}
|
|
|
|
|
2019-12-16 16:08:22 +01:00
|
|
|
& > img {
|
|
|
|
cursor: pointer;
|
2019-12-16 17:23:35 +01:00
|
|
|
object-fit: cover;
|
2019-12-16 16:08:22 +01:00
|
|
|
}
|
|
|
|
|
2019-12-16 15:58:12 +01:00
|
|
|
& > img,
|
|
|
|
.mx_AvatarSetting_avatarPlaceholder {
|
|
|
|
display: block;
|
2020-09-22 05:00:51 +02:00
|
|
|
height: 90px;
|
|
|
|
border-radius: 90px;
|
|
|
|
cursor: pointer;
|
2019-12-16 15:58:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_AvatarSetting_avatarPlaceholder::before {
|
|
|
|
background-color: $settings-profile-overlay-placeholder-fg-color;
|
|
|
|
mask: url("$(res)/img/feather-customised/user.svg");
|
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-size: 36px;
|
|
|
|
mask-position: center;
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
}
|
2020-09-22 05:00:51 +02:00
|
|
|
|
|
|
|
.mx_AvatarSetting_uploadButton {
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
border-radius: 32px;
|
2020-09-23 20:30:01 +02:00
|
|
|
background-color: $settings-profile-button-bg-color;
|
2020-09-22 05:00:51 +02:00
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_AvatarSetting_uploadButton::before {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-position: center;
|
|
|
|
mask-size: 55%;
|
2020-09-23 20:30:01 +02:00
|
|
|
background-color: $settings-profile-button-fg-color;
|
2020-09-22 05:00:51 +02:00
|
|
|
mask-image: url('$(res)/img/feather-customised/edit.svg');
|
|
|
|
}
|
2019-12-16 15:58:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_AvatarSetting_avatar .mx_AvatarSetting_avatarPlaceholder {
|
|
|
|
background-color: $settings-profile-placeholder-bg-color;
|
|
|
|
}
|