style.scss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. .r-view-mgr {
  2. position: absolute;
  3. z-index: 100;
  4. top: 0;
  5. bottom: 0;
  6. right: -250px;
  7. width: 250px;
  8. background-color: #eeeeee;
  9. box-sizing: border-box;
  10. border-left: 1px solid #d6d6d6;
  11. overflow: auto;
  12. padding-bottom: 20px;
  13. transition: 0.4s all ease-in-out;
  14. box-sizing: border-box;
  15. padding: 20px 12px;
  16. &.move-left {
  17. right: 0;
  18. }
  19. }
  20. .groudMgr-top {
  21. display: flex;
  22. justify-content: space-between;
  23. align-items: center;
  24. padding: 3px 0;
  25. color: #333333;
  26. font-size: 14px;
  27. .el-icon-close {
  28. cursor: pointer;
  29. }
  30. .el-icon-arrow-left {
  31. display: inline-block;
  32. vertical-align: middle;
  33. width: 20px;
  34. height: 40px;
  35. line-height: 40px;
  36. cursor: pointer;
  37. font-weight: 700;
  38. font-size: 12px;
  39. }
  40. span {
  41. flex: 1;
  42. }
  43. }
  44. .groudMgr-admins {
  45. padding: 0 10px;
  46. cursor: pointer;
  47. .admins-add {
  48. display: flex;
  49. justify-content: space-between;
  50. align-items: center;
  51. color: #999999;
  52. font-size: 14px;
  53. line-height: 20px;
  54. padding: 18px 0 10px 0;
  55. border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  56. .el-icon-circle-plus-outline {
  57. font-size: 20px;
  58. margin-right: 6px;
  59. }
  60. .add-fl {
  61. display: flex;
  62. align-items: center;
  63. }
  64. }
  65. .admin-list {
  66. margin-top: 6px;
  67. }
  68. }
  69. .admin-item {
  70. display: flex;
  71. padding: 6px 0;
  72. text-align: left;
  73. align-items: center;
  74. &.select-list {
  75. cursor: pointer;
  76. &:hover {
  77. background-color: #eeeeee;
  78. }
  79. }
  80. &.checked {
  81. background-color: #d7d7d7;
  82. }
  83. img.user-avatar {
  84. background: #ccc;
  85. }
  86. .user-avatar {
  87. width: 30px;
  88. height: 30px;
  89. line-height: 30px;
  90. border-radius: 2px;
  91. margin-right: 10px;
  92. font-size: 12px;
  93. color: #FFF;
  94. img{
  95. width: 100%;
  96. height: 100%;
  97. display: block;
  98. }
  99. }
  100. .name {
  101. flex: 1;
  102. font-size: 12px;
  103. color: #333333;
  104. line-height: 30px;
  105. max-width: 115px;
  106. @include ellipsis;
  107. }
  108. i {
  109. width: 20px;
  110. height: 20px;
  111. font-size: 20px;
  112. color: #2a9ff6;
  113. margin-top: 10px;
  114. }
  115. .el-icon-circle-close {
  116. &:hover {
  117. color: #df4949;
  118. }
  119. }
  120. .el-icon-circle-close {
  121. color: #d3d3d3;
  122. }
  123. button {
  124. padding: 0 12px;
  125. font-size: 12px;
  126. height: 24px;
  127. }
  128. }
  129. .ad-wrap{
  130. padding: 20px 0;
  131. }
  132. .ad-item{
  133. font-size: 14px;
  134. color: #999999;
  135. margin-bottom: 16px;
  136. height: 28px;
  137. line-height: 28px;
  138. cursor: pointer;
  139. .el-icon-arrow-right{
  140. float: right;
  141. color: #999999;
  142. margin-top: 6px;
  143. font-size: 14px;
  144. font-weight: bold;
  145. }
  146. }