members.scss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. @import "vars";
  2. @import "mixins";
  3. #editors, #editors-list {
  4. @include user-select(none);
  5. h6 {
  6. padding: 15px 25px;
  7. margin: 0px;
  8. color: $medium;
  9. font-size: 10px;
  10. }
  11. .overflow-y-scroll {
  12. top: 60px !important;
  13. }
  14. ul {
  15. padding: 0px;
  16. margin: 0px;
  17. }
  18. }
  19. .editor > span {
  20. border-radius: $radius;
  21. display: block;
  22. // background-color: rgba(255,255,255,0.05);
  23. position: relative;
  24. padding: 11px 25px;
  25. padding-left: 45px !important;
  26. padding-right: 0px !important;
  27. min-height: 60px;
  28. border: none;
  29. .editor-avatar {
  30. height: 34px;
  31. width: 34px;
  32. line-height: 34px;
  33. left: 0px;
  34. top: 10px;
  35. background-color: $dark;
  36. color: $darker ;
  37. color: white;
  38. font-weight: 700;
  39. font-size: 15px;
  40. font-family: $main-font;
  41. display: inline-block;
  42. text-align: center;
  43. border-radius: $radius;
  44. background-size: cover;
  45. background-position: center;
  46. position: absolute;
  47. &.status-off,
  48. &.status-on {
  49. &:before {
  50. top: 0;
  51. right: 0;
  52. display: block;
  53. position: absolute;
  54. color: $darker ;
  55. border: 1px solid #292929;
  56. border-radius: 100px;
  57. padding: 4px;
  58. font-weight: 700;
  59. text-transform: uppercase;
  60. font-size: 0px;
  61. height: 4px;
  62. width: 4px;
  63. }
  64. }
  65. &.status-off:before {background-color: #d55c4b; content: "off"; display: none;}
  66. &.status-on:before {background-color: #2ecc71; content: "on"; }
  67. }
  68. .editor-email,
  69. .editor-name {
  70. font-family: $main-font;
  71. font-size: 11px;
  72. line-height: 1.3;
  73. display: block;
  74. font-weight: 300;
  75. overflow: hidden;
  76. text-overflow: ellipsis;
  77. white-space: nowrap;
  78. color: $medium;
  79. }
  80. .editor-email {
  81. opacity: 0.5;
  82. }
  83. }