signal-desktop/stylesheets/components/AvatarPreview.scss
2023-05-09 10:52:42 -04:00

94 lines
2 KiB
SCSS

// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
.AvatarPreview {
align-items: center;
display: flex;
flex-direction: column;
justify-content: center;
width: 100%;
&__avatar {
@include button-reset;
align-items: center;
border-radius: 100%;
cursor: auto;
display: flex;
font-size: 32px;
height: 80px;
justify-content: center;
margin-bottom: 16px;
margin-top: 4px;
position: relative;
transition: background-color 100ms ease-out;
user-select: none;
width: 80px;
&--loading {
background: $color-black;
}
&--has-image {
background-size: cover;
background-position: center center;
}
@include keyboard-mode {
&:focus {
box-shadow: 0 0 0 3px $color-ultramarine;
}
}
}
&__group {
-webkit-mask: url('../images/icons/v3/group/group.svg') no-repeat center;
-webkit-mask-size: 70%;
height: 100%;
width: 100%;
}
&__upload {
align-items: center;
background: $color-gray-02;
border-radius: 100%;
bottom: 4px;
box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.12), 0px 2px 4px rgba(0, 0, 0, 0.2);
display: flex;
height: 28px;
justify-content: center;
position: absolute;
inset-inline-end: -7px;
width: 28px;
&::after {
@include color-svg('../images/icons/v3/camera/camera.svg', $color-black);
content: '';
display: block;
height: 16px;
width: 16px;
}
}
&__clear {
@include button-reset;
align-items: center;
background-color: $color-white;
border-radius: 100%;
box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.12), 0px 2px 4px rgba(0, 0, 0, 0.2);
display: flex;
height: 24px;
justify-content: center;
position: absolute;
inset-inline-end: 0;
top: 0;
width: 24px;
&:after {
@include color-svg('../images/icons/v3/x/x-compact.svg', $color-gray-75);
content: '';
height: 16px;
width: 16px;
}
}
}