index.scss 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. .hc-report-tasks-user-box {
  2. position: relative;
  3. padding: 0 12px;
  4. cursor: pointer;
  5. min-height: 40px;
  6. border: 1px solid #e0e0e6;
  7. border-radius: 4px;
  8. .tag-user-list {
  9. position: relative;
  10. display: flex;
  11. align-items: center;
  12. flex-flow: row wrap;
  13. min-height: inherit;
  14. .tasks-placeholder {
  15. color: #a9abb2;
  16. font-size: 14px;
  17. }
  18. .arrow-icon-tag {
  19. position: relative;
  20. color: #a9abb2;
  21. font-size: 18px;
  22. margin: 0 8px;
  23. }
  24. }
  25. }
  26. //选择任务人弹窗
  27. .el-overlay-dialog .el-dialog.hc-report-tasks-user-modal {
  28. height: 650px;
  29. .el-dialog__body .hc-new-main-body_content {
  30. padding: 0;
  31. height: 100%;
  32. display: flex;
  33. }
  34. .card-div-no, .card-empty-no {
  35. position: relative;
  36. border-left: 1px solid;
  37. border-color: #EEEEEE;
  38. background: #e8e8e8;
  39. }
  40. .card-div-no .hc-empty-box .hc-empty-body .hc-empty-title,
  41. .card-empty-no .hc-empty-box .hc-empty-body .hc-empty-title {
  42. color: #777777;
  43. }
  44. .card-empty-no {
  45. height: 100%;
  46. border-left: 0;
  47. }
  48. .card-empty-no .hc-empty-box .hc-empty-body .hc-empty-assets {
  49. display: none;
  50. }
  51. .card-div-2 {
  52. position: relative;
  53. border-left: 1px solid;
  54. border-color: #EEEEEE;
  55. }
  56. .card-div-3 {
  57. position: relative;
  58. border-left: 1px solid;
  59. border-color: #EEEEEE;
  60. }
  61. .card-div-4 {
  62. position: relative;
  63. border-left: 1px solid;
  64. border-color: #EEEEEE;
  65. }
  66. .card-div-5 {
  67. position: relative;
  68. border-left: 1px solid;
  69. border-right: 1px solid;
  70. border-color: #EEEEEE;
  71. }
  72. //卡片
  73. .el-card.hc-card-box.hc-new-card-box {
  74. box-shadow: none;
  75. --el-card-border-radius: 0;
  76. --el-card-bg-color: transparent;
  77. .el-scrollbar__bar.is-vertical {
  78. right: -8px;
  79. }
  80. }
  81. //角色类型
  82. .hc-tasks-user-role-item {
  83. position: relative;
  84. color: #1F222A;
  85. background: white;
  86. cursor: pointer;
  87. padding: 6px 10px;
  88. border-radius: 3px;
  89. transition: all .2s;
  90. display: flex;
  91. align-items: center;
  92. i {
  93. font-size: 18px;
  94. display: inline-block;
  95. }
  96. &:hover {
  97. color: #3A85E9;
  98. background: #f2f3f5;
  99. }
  100. &.cur {
  101. color: #3A85E9;
  102. background: #EDF3FF;
  103. }
  104. }
  105. //人员列表
  106. .hc-tasks-user-sign-pfx-box {
  107. position: relative;
  108. padding-right: 8px;
  109. height: 100%;
  110. .el-scrollbar__bar.is-vertical {
  111. right: 2px;
  112. }
  113. }
  114. .hc-sign-pfx-file-item {
  115. position: relative;
  116. background: #f7f7f7;
  117. .hc-tasks-user-letter {
  118. position: relative;
  119. font-weight: bold;
  120. padding: 6px 6px;
  121. border-bottom: 1px solid #eee;
  122. }
  123. .hc-tasks-user-item {
  124. position: relative;
  125. color: #1F222A;
  126. background: white;
  127. cursor: pointer;
  128. padding: 6px 6px;
  129. border-radius: 3px;
  130. transition: all .2s;
  131. display: flex;
  132. align-items: center;
  133. i {
  134. font-size: 16px;
  135. display: inline-block;
  136. }
  137. &:hover {
  138. color: #3A85E9;
  139. background: #f2f3f5;
  140. }
  141. &.cur {
  142. color: #3A85E9;
  143. background: #EDF3FF;
  144. }
  145. }
  146. }
  147. //字母索引
  148. .hc-tasks-user-letter-index {
  149. position: absolute;
  150. right: -8px;
  151. top: 0;
  152. bottom: 0;
  153. width: 13px;
  154. display: flex;
  155. align-items: center;
  156. flex-wrap: wrap;
  157. color: #5f5e5e;
  158. .item {
  159. position: relative;
  160. flex: 13px;
  161. width: 13px;
  162. height: 13px;
  163. font-size: 12px;
  164. display: flex;
  165. justify-content: center;
  166. align-items: center;
  167. cursor: pointer;
  168. transition: all .2s;
  169. &:hover {
  170. color: #0a84ff;
  171. }
  172. }
  173. }
  174. //已选择列表
  175. .hc-tasks-user-cur-box {
  176. position: relative;
  177. .hc-tasks-user-item {
  178. position: relative;
  179. margin-top: 18px;
  180. }
  181. .hc-tasks-user-item:first-child {
  182. margin-top: 0;
  183. }
  184. &.type-1 {
  185. .hc-tasks-user-item + .hc-tasks-user-item {
  186. &::before{
  187. content: "";
  188. position: absolute;
  189. background: #BBBBBB;
  190. top: -18px;
  191. height: 18px;
  192. width: 1px;
  193. left: 18px;
  194. }
  195. }
  196. }
  197. .el-tag {
  198. --el-tag-bg-color: #D7E6FB;
  199. --el-tag-border-color: #AECCEE;
  200. --el-tag-hover-color: var(--el-color-primary);
  201. .el-tag__content {
  202. display: flex;
  203. align-items: center;
  204. i {
  205. font-size: 14px;
  206. display: inline-block;
  207. }
  208. }
  209. }
  210. }
  211. }