userAvatar.styl 1.9 KB

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