style.scss 5.1 KB

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