1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- .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;
- }
- }
|