userAvatar.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. .member {
  2. border-radius: 3px;
  3. display: block;
  4. position: relative;
  5. float: left;
  6. height: 30px;
  7. width: 30px;
  8. margin: .3vh;
  9. cursor: pointer;
  10. user-select: none;
  11. z-index: 1;
  12. text-decoration: none;
  13. border-radius: 50%;
  14. }
  15. .member .avatar {
  16. overflow: hidden;
  17. border-radius: 50%;
  18. }
  19. .member .avatar.avatar-initials {
  20. height: 70%;
  21. width: 70%;
  22. padding: 15%;
  23. background-color: #dbdbdb;
  24. color: #444;
  25. position: absolute;
  26. }
  27. .member .avatar.avatar-image {
  28. object-fit: cover;
  29. object-position: center;
  30. height: 100%;
  31. width: 100%;
  32. }
  33. .member .member-presence-status {
  34. background-color: #b3b3b3;
  35. border: 1px solid #fff;
  36. border-radius: 50%;
  37. height: 7px;
  38. width: 7px;
  39. position: absolute;
  40. right: -1px;
  41. bottom: -1px;
  42. border: 1px solid #fff;
  43. z-index: 15;
  44. }
  45. .member .member-presence-status.active {
  46. background: #64c464;
  47. border-color: #daf1da;
  48. }
  49. .member .member-presence-status.idle {
  50. background: #e4e467;
  51. border-color: #f7f7d4;
  52. }
  53. .member .member-presence-status.disconnected {
  54. background: #bdbdbd;
  55. border-color: #ededed;
  56. }
  57. .member .member-presence-status.pending {
  58. background: #e44242;
  59. border-color: #f1dada;
  60. }
  61. .member .edit-avatar {
  62. position: absolute;
  63. top: 0;
  64. height: 100%;
  65. width: 100%;
  66. border-radius: 50%;
  67. background: #000;
  68. display: flex;
  69. align-items: center;
  70. justify-content: center;
  71. opacity: 0;
  72. }
  73. .member .edit-avatar:hover {
  74. opacity: 0.6;
  75. }
  76. .member .edit-avatar i.fa-pencil {
  77. color: #fff;
  78. }
  79. .member.add-member {
  80. display: flex;
  81. align-items: center;
  82. justify-content: center;
  83. box-shadow: 0 0 0 2px #bfbfbf inset;
  84. }
  85. .member.add-member:hover,
  86. .member.add-member.is-active {
  87. box-shadow: 0 0 0 2px #666 inset;
  88. }
  89. .atMention {
  90. background: #dbdbdb;
  91. border-radius: 3px;
  92. padding: 1px 4px;
  93. margin: -1px 0;
  94. display: inline-block;
  95. }
  96. .atMention.me {
  97. background: #cfdfe8;
  98. }
  99. .mini-profile-info {
  100. margin-top: 10px;
  101. }
  102. .mini-profile-info .info {
  103. padding-top: 5px;
  104. }
  105. .mini-profile-info .info h3,
  106. .mini-profile-info .info p {
  107. margin-bottom: 0;
  108. padding-left: 0;
  109. }
  110. .mini-profile-info .info p {
  111. padding-top: 0;
  112. }
  113. .mini-profile-info .member {
  114. width: 50px;
  115. height: 50px;
  116. margin-right: 10px;
  117. }