style.less 4.7 KB

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