You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_avatar.scss 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. .avatar {
  2. background-color: #AAA;
  3. border-radius: 50%;
  4. color: rgba(255, 255, 255, 0.6);
  5. font-weight: 100;
  6. object-fit: cover;
  7. &.avatar-small {
  8. height: 28px !important;
  9. width: 28px !important;
  10. }
  11. &.avatar-xsmall {
  12. height: 16px !important;
  13. width: 16px !important;
  14. }
  15. .jitsi-icon {
  16. transform: translateY(50%);
  17. }
  18. }
  19. .avatar-foreign {
  20. align-items: center;
  21. bottom: 0;
  22. display: flex;
  23. font-size: 40pt;
  24. justify-content: center;
  25. left: 0;
  26. position: absolute;
  27. right: 0;
  28. top: 0;
  29. }
  30. .avatar-svg {
  31. height: 100%;
  32. width: 100%;
  33. }
  34. .defaultAvatar {
  35. opacity: 0.6
  36. }
  37. .avatar-badge {
  38. position: relative;
  39. &-available::after {
  40. @include avatarBadge;
  41. background-color: $presence-available;
  42. }
  43. &-away::after {
  44. @include avatarBadge;
  45. background-color: $presence-away;
  46. }
  47. &-busy::after {
  48. @include avatarBadge;
  49. background-color: $presence-busy;
  50. }
  51. &-idle::after {
  52. @include avatarBadge;
  53. background-color: $presence-idle;
  54. }
  55. }