style.scss 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. .r-view{
  2. position: absolute;
  3. z-index: 100;
  4. top: 62px;
  5. bottom: 0;
  6. right: -250px;
  7. width: 250px;
  8. background-color: #eeeeee;
  9. padding-left: 20px;
  10. box-sizing: border-box;
  11. border-left: 1px solid #d6d6d6;
  12. overflow: auto;
  13. padding-bottom: 20px;
  14. transition: .4s all ease-in-out;
  15. box-sizing: border-box;
  16. &.move-left{
  17. right: 0;
  18. }
  19. }
  20. .setting-top{
  21. padding: 20px 0 0 0;
  22. border-bottom: 1px solid #d6d6d6;
  23. margin-bottom: 20px;
  24. margin-right: 12px;
  25. }
  26. .search-input{
  27. position: relative;
  28. font-size: 0;
  29. input{
  30. display: block;
  31. width: 100%;
  32. background-color: #d6d6d6;
  33. border: none;
  34. height: 30px;
  35. line-height: 30px;
  36. padding-left: 40px;
  37. box-sizing: border-box;
  38. outline: none;
  39. font-size: 12px;
  40. color: #333333;
  41. border-radius: 2px;
  42. }
  43. }
  44. .el-icon-search{
  45. position: absolute;
  46. width: 30px;
  47. height: 30px;
  48. line-height: 30px;
  49. top: 0;
  50. left: 10px;
  51. font-size: 20px;
  52. color: #666666;
  53. }
  54. .notice{
  55. line-height: 1.6;
  56. }
  57. .user-list{
  58. margin-top: 10px;
  59. display: flex;
  60. flex-wrap: wrap;
  61. &.height-limit{
  62. height: 140px;
  63. overflow: hidden;
  64. }
  65. .list-item{
  66. width: 40px;
  67. margin-right: 16px;
  68. margin-bottom: 16px;
  69. &:nth-child(4n) {
  70. margin-right: 0;
  71. }
  72. }
  73. .avatar{
  74. display: block;
  75. width: 40px;
  76. height: 40px;
  77. margin-bottom: 6px;
  78. border-radius: 2px;
  79. cursor: pointer;
  80. &:hover{
  81. opacity: .8;
  82. }
  83. }
  84. .btn{
  85. box-sizing: border-box;
  86. border: 1px solid #c0c0c0;
  87. display: flex;
  88. justify-content: center;
  89. align-items: center;
  90. cursor: pointer;
  91. i{
  92. font-size: 22px;
  93. color: #5e5e5e;
  94. }
  95. }
  96. .name{
  97. @include ellipsis();
  98. font-size: 12px;
  99. color: #333333;
  100. display: block;
  101. text-align: center;
  102. }
  103. }
  104. .show-all-btn{
  105. color: #999999;
  106. font-size: 12px;
  107. text-align: center;
  108. padding-bottom: 10px;
  109. cursor: pointer;
  110. i{
  111. display: inline-block;
  112. margin-left: 6px;
  113. }
  114. }
  115. .setting-item{
  116. font-size: 14px;
  117. color: #999999;
  118. margin-bottom: 20px;
  119. margin-right: 20px;
  120. .title{
  121. margin-bottom: 12px;
  122. }
  123. .text{
  124. color: #333333;
  125. i{
  126. display: inline-block;
  127. margin-left: 6px;
  128. color: #999999;
  129. }
  130. }
  131. .team-avatar{
  132. width: 40px;
  133. height: 40px;
  134. border-radius: 2px;
  135. cursor: pointer;
  136. }
  137. .el-icon-arrow-right{
  138. float: right;
  139. }
  140. .team-arrow-icon{
  141. margin-top: 12px;
  142. }
  143. .cursor{
  144. cursor: pointer;
  145. }
  146. }
  147. .setting-bottom{
  148. margin-right: 20px;
  149. border-top: 1px solid #d6d6d6;
  150. button{
  151. display: block;
  152. width: 100%;
  153. height: 36px;
  154. line-height: 36px;
  155. text-align: center;
  156. font-size: 14px;
  157. color: #f65e5e;
  158. background-color: transparent;
  159. border: 1px solid #c0c0c0;
  160. margin-top: 12px;
  161. border-radius: 2px;
  162. }
  163. }
  164. .edit-name-input{
  165. display: block;
  166. width: 100%;
  167. background-color: rgba($color: #000000, $alpha: .1);
  168. border: none;
  169. height: 26px;
  170. line-height: 26px;
  171. padding-left: 12px;
  172. box-sizing: border-box;
  173. outline: none;
  174. font-size: 12px;
  175. color: #333333;
  176. border-radius: 2px;
  177. }
  178. .link-change{
  179. float: right;
  180. font-size: 12px;
  181. color: #ffffff;
  182. background-color: #cdcdcd;
  183. border-radius: 2px;
  184. padding: 0 15px;
  185. line-height: 20px;
  186. height: 20px;
  187. cursor: pointer;
  188. }
  189. .invite-link{
  190. color: #1d93ed;
  191. font-size: 12px;
  192. }
  193. .notice-modal{
  194. textarea{
  195. width: 100%;
  196. height: 100px;
  197. font-size: 14px;
  198. color: #333333;
  199. border: none;
  200. resize: none;
  201. padding: 10px;
  202. box-sizing: border-box;
  203. &::-webkit-input-placeholder {
  204. color: #999999;
  205. }
  206. }
  207. }
  208. .modal-fd{
  209. margin-top: 10px;
  210. text-align: right;
  211. }
  212. .no-avatar{
  213. display: inline-block;
  214. width: 40px;
  215. height: 40px;
  216. border-radius: 2px;
  217. cursor: pointer;
  218. border: 1px solid #c0c0c0;
  219. text-align: center;
  220. line-height: 40px;
  221. i{
  222. vertical-align: middle;
  223. font-size: 20px;
  224. margin-left: 0 !important;
  225. }
  226. }