123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- .avatar {
- background-color: #AAA;
- border-radius: 50%;
- color: rgba(255, 255, 255, 0.6);
- 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-foreign {
- align-items: center;
- bottom: 0;
- display: flex;
- font-size: 40pt;
- justify-content: center;
- left: 0;
- position: absolute;
- right: 0;
- top: 0;
- }
-
- .avatar-svg {
- height: 100%;
- width: 100%;
- }
-
- .defaultAvatar {
- opacity: 0.6
- }
-
- .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;
- }
- }
|