style.scss 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297
  1. .r-view{
  2. position: absolute;
  3. z-index: 100;
  4. top: 61px;
  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: 10px;
  24. }
  25. .search-input{
  26. position: relative;
  27. font-size: 0;
  28. margin-right: 12px;
  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. max-height: 362px;
  62. overflow: auto;
  63. margin-right: -18px;
  64. &.height-limit{
  65. height: 140px;
  66. overflow: hidden;
  67. }
  68. .list-item{
  69. width: 40px;
  70. margin: 0 16px 3px 0;
  71. }
  72. .avatar{
  73. display: block;
  74. width: 40px;
  75. height: 40px;
  76. border-radius: 2px;
  77. cursor: pointer;
  78. position: relative;
  79. &:hover{
  80. opacity: .8;
  81. }
  82. }
  83. .btn{
  84. box-sizing: border-box;
  85. border: 1px solid #c0c0c0;
  86. display: flex;
  87. justify-content: center;
  88. align-items: center;
  89. cursor: pointer;
  90. i{
  91. font-size: 22px;
  92. color: #5e5e5e;
  93. }
  94. }
  95. .name{
  96. @include ellipsis();
  97. font-size: 12px;
  98. line-height: 30px;
  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: 10px 0;
  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-right: 20px;
  119. padding: 10px 0;
  120. .title{
  121. margin-bottom: 12px;
  122. }
  123. .text{
  124. color: #333333;
  125. font-size: 12px;
  126. line-height: 24px;
  127. @include wrap;
  128. word-break: break-all;
  129. i{
  130. display: inline-block;
  131. margin-left: 6px;
  132. color: #999999;
  133. }
  134. }
  135. .team-avatar{
  136. width: 40px;
  137. height: 40px;
  138. border-radius: 2px;
  139. cursor: pointer;
  140. }
  141. .el-icon-arrow-right{
  142. float: right;
  143. }
  144. .el-icon-edit{
  145. cursor: pointer;
  146. }
  147. &.cursor,.cursor{
  148. cursor: pointer;
  149. }
  150. &.ext-avatar{
  151. .team-arrow-icon{
  152. margin-top: 12px;
  153. }
  154. }
  155. }
  156. .setting-bottom{
  157. margin-right: 20px;
  158. border-top: 1px solid #d6d6d6;
  159. button{
  160. display: block;
  161. width: 100%;
  162. height: 36px;
  163. line-height: 36px;
  164. text-align: center;
  165. font-size: 14px;
  166. color: #f65e5e;
  167. background-color: transparent;
  168. border: 1px solid #c0c0c0;
  169. margin-top: 12px;
  170. border-radius: 2px;
  171. }
  172. }
  173. .invite-editBtn{
  174. width: 30px;
  175. cursor: pointer;
  176. display: inline-block;
  177. }
  178. .edit-name-path{
  179. font-size: 12px;
  180. color: #333333;
  181. }
  182. .edit-full-input{
  183. display: block;
  184. width: 100%;
  185. background-color: rgba($color: #000000, $alpha: .1);
  186. border: none;
  187. height: 26px;
  188. line-height: 26px;
  189. padding-left: 12px;
  190. box-sizing: border-box;
  191. outline: none;
  192. font-size: 12px;
  193. color: #333333;
  194. border-radius: 2px;
  195. }
  196. .edit-name-input{
  197. display: inline-block;
  198. width: 60px;
  199. background-color: rgba($color: #000000, $alpha: .1);
  200. border: none;
  201. height: 26px;
  202. line-height: 26px;
  203. padding: 0 5px;
  204. margin-left: 5px;
  205. box-sizing: border-box;
  206. outline: none;
  207. font-size: 12px;
  208. color: #333333;
  209. border-radius: 2px;
  210. }
  211. .link-change{
  212. float: right;
  213. font-size: 12px;
  214. color: #ffffff;
  215. background-color: #cdcdcd;
  216. border-radius: 2px;
  217. padding: 0 15px;
  218. line-height: 20px;
  219. height: 20px;
  220. cursor: pointer;
  221. }
  222. .invite-link{
  223. @include wrap;
  224. color: #1d93ed;
  225. font-size: 12px;
  226. line-height: 24px;
  227. }
  228. .notice-modal{
  229. textarea{
  230. width: 100%;
  231. height: 100px;
  232. font-size: 14px;
  233. color: #333333;
  234. border: none;
  235. resize: none;
  236. padding: 10px;
  237. box-sizing: border-box;
  238. &::-webkit-input-placeholder {
  239. color: #999999;
  240. }
  241. }
  242. }
  243. .modal-fd{
  244. margin-top: 10px;
  245. text-align: right;
  246. }
  247. .no-avatar{
  248. display: inline-block;
  249. width: 40px;
  250. height: 40px;
  251. border-radius: 2px;
  252. cursor: pointer;
  253. border: 1px solid #c0c0c0;
  254. text-align: center;
  255. line-height: 40px;
  256. i{
  257. vertical-align: middle;
  258. font-size: 20px;
  259. margin-left: 0 !important;
  260. }
  261. }
  262. .avatar-box{
  263. position: relative;
  264. }
  265. .admin-icon{
  266. position: absolute;
  267. left: 0;
  268. bottom: 0;
  269. width: 18px;
  270. height: 18px;
  271. line-height: 18px;
  272. background-color: rgba($color: #000000, $alpha: .4);
  273. border-radius: 2px;
  274. text-align: center;
  275. font-size: 14px;
  276. color: #f5ab5c;
  277. }
  278. .creator-icon{
  279. position: absolute;
  280. left: 0;
  281. bottom: 0;
  282. background: url('../../assets/icon-creater.png') center center no-repeat;
  283. background-size: 12px 11px;
  284. background-color: rgba($color: #000000, $alpha: .6);
  285. width: 18px;
  286. height: 18px;
  287. }