2019-06-26 14:08:23 +00:00
|
|
|
.avatar {
|
|
|
|
background-color: #AAA;
|
|
|
|
border-radius: 50%;
|
|
|
|
color: rgba(255, 255, 255, 0.6);
|
|
|
|
font-weight: 100;
|
|
|
|
object-fit: cover;
|
2019-12-06 15:02:51 +00:00
|
|
|
|
|
|
|
&.avatar-small {
|
|
|
|
height: 28px !important;
|
|
|
|
width: 28px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.avatar-xsmall {
|
|
|
|
height: 16px !important;
|
|
|
|
width: 16px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.jitsi-icon {
|
|
|
|
transform: translateY(50%);
|
|
|
|
}
|
2019-06-26 14:08:23 +00:00
|
|
|
}
|
|
|
|
|
2019-07-03 16:23:00 +00:00
|
|
|
.avatar-svg {
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2019-06-26 14:08:23 +00:00
|
|
|
.defaultAvatar {
|
|
|
|
opacity: 0.6
|
2019-12-06 15:02:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.avatar-badge {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&-available::after {
|
|
|
|
@include avatarBadge;
|
|
|
|
background-color: $presence-available;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-away::after {
|
|
|
|
@include avatarBadge;
|
|
|
|
background-color: $presence-away;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-busy::after {
|
|
|
|
@include avatarBadge;
|
|
|
|
background-color: $presence-busy;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-idle::after {
|
|
|
|
@include avatarBadge;
|
|
|
|
background-color: $presence-idle;
|
|
|
|
}
|
2020-04-20 23:14:11 +00:00
|
|
|
}
|