style.less 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. .NonCheckProjectApprove {
  2. display: flex;
  3. flex-direction: row;
  4. // height: 100%;
  5. background: #F5F7FA;
  6. .leftTree {
  7. position: fixed;
  8. top: 64px;
  9. width: 220px;
  10. height: calc(100vh - 80px);
  11. background: #FFF;
  12. border-radius: 4px;
  13. padding: 16px;
  14. overflow: hidden;
  15. margin-right: 16px;
  16. // border-right:16px solid #F5F7FA;
  17. .searchInput {
  18. border: 1px solid #CFD7E6;
  19. }
  20. .point {
  21. display: block;
  22. content: '';
  23. width: 6px;
  24. height: 6px;
  25. border-radius: 50%;
  26. z-index:99;
  27. background: #FF9832;
  28. &.lastChild {
  29. background: #FF1966;
  30. }
  31. }
  32. .bms-ant-tree.bms-ant-tree-directory .bms-ant-tree-treenode-selected:hover::before,
  33. .bms-ant-tree.bms-ant-tree-directory .bms-ant-tree-treenode-selected::before {
  34. border-radius: 4px;
  35. background: rgb(240 242 245 / 100%);
  36. }
  37. .bms-ant-tree.bms-ant-tree-directory .bms-ant-tree-treenode .bms-ant-tree-node-content-wrapper.bms-ant-tree-node-selected {
  38. font-weight: bold;
  39. }
  40. }
  41. .rightContent {
  42. position: relative;
  43. border-radius: 4px;
  44. width: calc(100% - 220px);
  45. padding: 16px;
  46. padding-top: 0;
  47. margin-left: 236px;
  48. background: #FFF;
  49. .checkBtn {
  50. position: absolute;
  51. cursor: pointer;
  52. top: 0;
  53. right: 0;
  54. padding: 0 14px;
  55. height: 24px;
  56. line-height: 24px;
  57. background: #3376FE;
  58. border-radius: 4px;
  59. text-align: center;
  60. font-size: 14px;
  61. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  62. font-weight: 400;
  63. color: #FFF;
  64. }
  65. .midLine {
  66. display: flex;
  67. flex-direction: row;
  68. justify-content: center;
  69. align-items: center;
  70. height: 24px;
  71. line-height: 24px;
  72. background: #F0FCFC;
  73. font-size: 12px;
  74. color: #515866;
  75. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  76. font-weight: 400;
  77. margin-top: 12px;
  78. margin-bottom: 15px;
  79. &>span {
  80. cursor: pointer;
  81. font-size: 12px;
  82. font-family: SourceHanSansCN-Medium, SourceHanSansCN;
  83. font-weight: 500;
  84. color: #00B3B3;
  85. padding-right: 4px;
  86. }
  87. }
  88. .bms-ant-tabs-nav {
  89. &::before {
  90. border-bottom: none !important;
  91. }
  92. }
  93. .tabContent {
  94. display: flex;
  95. flex-direction: column;
  96. .tableToolbar {
  97. display: flex;
  98. flex-direction: row;
  99. justify-content: space-between;
  100. align-items: center;
  101. margin-top: 16px;
  102. margin-bottom: 16px;
  103. .search {
  104. display: flex;
  105. flex-direction: row;
  106. justify-content: flex-start;
  107. align-items: center;
  108. .searchInput {
  109. width: 167px;
  110. height: 24px;
  111. background: #FFF;
  112. border-radius: 4px;
  113. border: 1px solid #CFD7E6;
  114. }
  115. &>span {
  116. font-size: 14px;
  117. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  118. font-weight: 400;
  119. color: #17181A;
  120. }
  121. }
  122. .btnGroupWrap {
  123. display: flex;
  124. flex-direction: row;
  125. align-items: center;
  126. .btnGroup {
  127. &>span {
  128. display: inline-block;
  129. text-align: center;
  130. width: 56px;
  131. height: 24px;
  132. line-height: 21px;
  133. background: #FAFCFF;
  134. border-radius: 4px;
  135. cursor: pointer;
  136. border: 1px solid #DAE2F2;
  137. margin-right: 8px;
  138. &:last-child {
  139. margin-right: 0;
  140. }
  141. }
  142. &.disabled {
  143. &>span {
  144. cursor: not-allowed;
  145. color: rgb(0 0 0 / 50%);
  146. background-color: #f0f2f5;
  147. }
  148. }
  149. }
  150. .commit {
  151. display: inline-block;
  152. text-align: center;
  153. padding: 0 14px;
  154. height: 24px;
  155. line-height: 23px;
  156. background: #3377FF;
  157. border-radius: 4px;
  158. cursor: pointer;
  159. font-size: 14px;
  160. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  161. font-weight: 400;
  162. margin-left: 8px;
  163. color: #FFF;
  164. &.disabled {
  165. cursor: not-allowed;
  166. color: rgb(0 0 0 / 50%);
  167. background-color: #f0f2f5;
  168. }
  169. }
  170. }
  171. }
  172. }
  173. }
  174. }