style.less 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374
  1. .SecondaryDitriComputed {
  2. position: relative;
  3. display: flex;
  4. flex-direction: row;
  5. // height: 100%;
  6. background: #F5F7FA;
  7. .selecterList {
  8. position: absolute;
  9. z-index: 99;
  10. top: 44px;
  11. left: 180px;
  12. width: 120px;
  13. height: 104px;
  14. background: #FFFFFF;
  15. box-shadow: 0px 8px 16px 0px rgba(64, 85, 128, 0.1);
  16. border-radius: 4px;
  17. padding: 4px;
  18. .list {
  19. position: relative;
  20. height: 32px;
  21. line-height: 16px;
  22. border-radius: 2px;
  23. font-size: 14px;
  24. cursor: pointer;
  25. padding: 8px;
  26. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  27. font-weight: 400;
  28. color: #17181A;
  29. &.on {
  30. font-weight: 500;
  31. background: rgba(51, 119, 255, 0.08);
  32. &::after {
  33. position: absolute;
  34. right: 8px;
  35. display: inline-block;
  36. content: '';
  37. width: 16px;
  38. height: 16px;
  39. background: url('../../../../static//gou_blue.png');
  40. background-size: contain;
  41. }
  42. }
  43. }
  44. }
  45. .leftTree {
  46. position: fixed;
  47. top: 64px;
  48. width: 220px;
  49. height: calc(100vh - 80px);
  50. background: #FFF;
  51. border-radius: 4px;
  52. padding: 16px;
  53. overflow: hidden;
  54. margin-right: 16px;
  55. // border-right:16px solid #F5F7FA;
  56. .search {
  57. position: relative;
  58. display: flex;
  59. flex-direction: row;
  60. align-items: center;
  61. justify-content: space-between;
  62. margin-bottom: 16px;
  63. .filter {
  64. position: relative;
  65. width: 24px;
  66. height: 24px;
  67. background: #FAFCFF;
  68. border-radius: 4px;
  69. border: 1px solid #DAE2F2;
  70. margin-left: 8px;
  71. cursor: pointer;
  72. background: url('../../../../static/filter.png');
  73. background-size: 16px 16px;
  74. background-position: center;
  75. background-repeat: no-repeat;
  76. &.orange {
  77. &::after {
  78. position: absolute;
  79. z-index: 9;
  80. top: 1px;
  81. right: 1px;
  82. display: inline-block;
  83. content: '';
  84. width: 4px;
  85. height: 4px;
  86. border-radius: 50%;
  87. background: #FF9832;
  88. }
  89. }
  90. &.blue {
  91. &::after {
  92. position: absolute;
  93. z-index: 9;
  94. top: 1px;
  95. right: 1px;
  96. display: inline-block;
  97. content: '';
  98. width: 4px;
  99. height: 4px;
  100. border-radius: 50%;
  101. background: #3377FF;
  102. }
  103. }
  104. }
  105. }
  106. .searchInput {
  107. border: 1px solid #CFD7E6;
  108. }
  109. .point {
  110. display: block;
  111. content: '';
  112. width: 6px;
  113. height: 6px;
  114. border-radius: 50%;
  115. z-index: 99;
  116. background: #FF9832;
  117. &.lastChild {
  118. background: #FF1966;
  119. }
  120. }
  121. .bms-ant-tree.bms-ant-tree-directory .bms-ant-tree-treenode-selected:hover::before,
  122. .bms-ant-tree.bms-ant-tree-directory .bms-ant-tree-treenode-selected::before {
  123. border-radius: 4px;
  124. background: rgb(240 242 245 / 100%);
  125. }
  126. .bms-ant-tree.bms-ant-tree-directory .bms-ant-tree-treenode .bms-ant-tree-node-content-wrapper.bms-ant-tree-node-selected {
  127. font-weight: bold;
  128. }
  129. }
  130. .rightContent {
  131. position: relative;
  132. border-radius: 4px;
  133. width: calc(100% - 220px);
  134. padding: 16px;
  135. margin-left: 236px;
  136. background: #FFF;
  137. .checkBtn {
  138. position: absolute;
  139. cursor: pointer;
  140. top: 0;
  141. right: 0;
  142. padding: 0 14px;
  143. height: 24px;
  144. line-height: 24px;
  145. background: #3376FE;
  146. border-radius: 4px;
  147. text-align: center;
  148. font-size: 14px;
  149. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  150. font-weight: 400;
  151. color: #FFF;
  152. }
  153. .midLine {
  154. display: flex;
  155. flex-direction: row;
  156. justify-content: center;
  157. align-items: center;
  158. height: 24px;
  159. line-height: 24px;
  160. background: #F0FCFC;
  161. font-size: 12px;
  162. color: #515866;
  163. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  164. font-weight: 400;
  165. margin-top: 12px;
  166. margin-bottom: 15px;
  167. &>span {
  168. cursor: pointer;
  169. font-size: 12px;
  170. font-family: SourceHanSansCN-Medium, SourceHanSansCN;
  171. font-weight: 500;
  172. color: #00B3B3;
  173. padding-right: 4px;
  174. }
  175. }
  176. .bms-ant-tabs-nav {
  177. &::before {
  178. border-bottom: none !important;
  179. }
  180. }
  181. .tabContent {
  182. display: flex;
  183. flex-direction: column;
  184. .tableToolbar {
  185. display: flex;
  186. flex-direction: row;
  187. justify-content: space-between;
  188. align-items: center;
  189. margin-top: 16px;
  190. margin-bottom: 16px;
  191. .search {
  192. display: flex;
  193. flex-direction: row;
  194. justify-content: flex-start;
  195. align-items: center;
  196. span {
  197. font-size: 14px;
  198. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  199. font-weight: 400;
  200. color: #17181A;
  201. margin-right: 24px;
  202. &.total {
  203. i {
  204. font-style: normal;
  205. font-size: 14px;
  206. font-family: SourceHanSansCN-Medium, SourceHanSansCN;
  207. font-weight: 500;
  208. color: #17181A;
  209. }
  210. }
  211. &.compelted {
  212. i {
  213. font-style: normal;
  214. font-size: 14px;
  215. font-family: SourceHanSansCN-Medium, SourceHanSansCN;
  216. font-weight: 500;
  217. color: #2E6BE6;
  218. }
  219. &::before {
  220. position: relative;
  221. top: 2px;
  222. display: inline-block;
  223. content: '';
  224. width: 12px;
  225. height: 12px;
  226. margin-right: 4px;
  227. background: url('../../../../static//bingzhuantu.png');
  228. background-size: cover;
  229. }
  230. }
  231. &.left {
  232. i {
  233. font-style: normal;
  234. font-size: 14px;
  235. font-family: SourceHanSansCN-Medium, SourceHanSansCN;
  236. font-weight: 500;
  237. color: #14CC8F;
  238. }
  239. &::before {
  240. position: relative;
  241. top: 2px;
  242. display: inline-block;
  243. content: '';
  244. width: 12px;
  245. height: 12px;
  246. margin-right: 4px;
  247. background: url('../../../../static/bingzhuantu_green.png');
  248. background-size: cover;
  249. }
  250. }
  251. &:last-child {
  252. margin-right: 0;
  253. }
  254. }
  255. }
  256. .btnGroupWrap {
  257. display: flex;
  258. flex-direction: row;
  259. align-items: center;
  260. .btnGroup {
  261. &>span {
  262. display: inline-block;
  263. text-align: center;
  264. width: 56px;
  265. height: 24px;
  266. line-height: 22px;
  267. border-radius: 4px;
  268. cursor: pointer;
  269. margin-right: 8px;
  270. &.editBtn {
  271. color: white;
  272. background: #3377FF;
  273. }
  274. &.cancel {
  275. color: #17181A;
  276. background: #FAFCFF;
  277. border: 1px solid #DAE2F2;
  278. }
  279. &:last-child {
  280. margin-right: 0;
  281. }
  282. }
  283. &.disabled {
  284. &>span {
  285. cursor: not-allowed;
  286. &.editBtn {
  287. color: rgb(0 0 0 / 50%);
  288. background-color: #f0f2f5;
  289. }
  290. &.cancel {
  291. color: rgb(0 0 0 / 50%);
  292. background-color: #f0f2f5;
  293. }
  294. }
  295. }
  296. }
  297. .commit {
  298. display: inline-block;
  299. text-align: center;
  300. padding: 0 14px;
  301. height: 24px;
  302. line-height: 23px;
  303. background: #3377FF;
  304. border-radius: 4px;
  305. cursor: pointer;
  306. font-size: 14px;
  307. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  308. font-weight: 400;
  309. margin-left: 8px;
  310. color: #FFF;
  311. &.gray {
  312. color: #17181A;
  313. background: #FAFCFF;
  314. border: 1px solid #DAE2F2;
  315. }
  316. &.disabled {
  317. cursor: not-allowed;
  318. color: rgb(0 0 0 / 50%);
  319. background-color: #f0f2f5;
  320. }
  321. }
  322. }
  323. }
  324. }
  325. }
  326. }