mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
* Make Jitsi WCAG 2.1 compliant * Fixed password form keypress handling * Added keypress handler to name form * Removed unneccessary dom query * Fixed mouse hove style * Removed obsolete css rules * accessibilty background feature * Merge remote-tracking branch 'upstream/master' into nic/fix/merge-conflicts * fix error * add german translation * Fixed merge issue * Add id prop back to device selection * Fixed lockfile Co-authored-by: AHMAD KADRI <52747422+ahmadkadri@users.noreply.github.com>
51 lines
893 B
SCSS
51 lines
893 B
SCSS
.avatar {
|
|
background-color: #AAA;
|
|
border-radius: 50%;
|
|
color: rgba(255, 255, 255, 1);
|
|
font-weight: 100;
|
|
object-fit: cover;
|
|
|
|
&.avatar-small {
|
|
height: 28px !important;
|
|
width: 28px !important;
|
|
}
|
|
|
|
&.avatar-xsmall {
|
|
height: 16px !important;
|
|
width: 16px !important;
|
|
}
|
|
|
|
.jitsi-icon {
|
|
transform: translateY(50%);
|
|
}
|
|
}
|
|
|
|
.avatar-svg {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
}
|