userAvatar.css 2.1 KB

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