style.less 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. .drawerTable {
  2. .header {
  3. display: flex;
  4. width: 100%;
  5. flex-direction: row;
  6. justify-content: space-between;
  7. align-items: center;
  8. margin-bottom: 16px;
  9. .title {
  10. font-weight: 500;
  11. font-size: 16px;
  12. color: #17181A;
  13. }
  14. .btns {
  15. span {
  16. display: inline-block;
  17. cursor: pointer;
  18. padding: 0 14px;
  19. height: 24px;
  20. line-height: 24px;
  21. background: #FAFCFF;
  22. border-radius: 4px;
  23. font-weight: 400;
  24. font-size: 14px;
  25. color: #17181A;
  26. border: 1px solid #DAE2F2;
  27. &.close {
  28. color: #fff;
  29. background: #3377FF;
  30. margin-left: 8px;
  31. }
  32. }
  33. }
  34. }
  35. }
  36. .DepartmentCostCalc {
  37. background: #FFFFFF;
  38. border-radius: 4px;
  39. .header {
  40. display: flex;
  41. flex-direction: row;
  42. justify-content: space-between;
  43. align-items: center;
  44. border-radius: 4px;
  45. padding: 16px;
  46. background-color: #fff;
  47. border-bottom: 16px solid #F7F9FC;
  48. .btnGoup {
  49. &>span {
  50. cursor: pointer;
  51. display: inline-block;
  52. color: #17181A;
  53. line-height: 24px;
  54. padding: 0 14px;
  55. border-radius: 4px;
  56. border: 1px solid #DAE2F2;
  57. background: #FAFCFF;
  58. margin-right: 8px;
  59. font-weight: 400;
  60. font-size: 14px;
  61. color: #17181A;
  62. &.onekeyCalcBtn {
  63. color: #fff;
  64. background: #3377FF;
  65. }
  66. }
  67. }
  68. }
  69. .content {
  70. padding: 16px;
  71. padding-top: 0;
  72. .inner {
  73. display: flex;
  74. width: 100%;
  75. flex-direction: row;
  76. justify-content: flex-start;
  77. align-items: flex-start;
  78. .left {
  79. width: 220px;
  80. height: calc(100vh - 223px);
  81. border-radius: 4px;
  82. padding-top: 8px;
  83. margin-right: 16px;
  84. border: 1px solid #DAE2F2;
  85. }
  86. .right {
  87. width: calc(100% - 236px);
  88. .toolBar {
  89. display: flex;
  90. flex-direction: row;
  91. justify-content: space-between;
  92. align-items: center;
  93. margin-bottom: 12px;
  94. .filterItem {
  95. display: flex;
  96. flex-direction: row;
  97. justify-content: center;
  98. align-items: center;
  99. }
  100. .btnGroup {
  101. &>span {
  102. cursor: pointer;
  103. display: inline-block;
  104. color: #17181A;
  105. line-height: 24px;
  106. padding: 0 14px;
  107. border-radius: 4px;
  108. border: 1px solid #DAE2F2;
  109. background: #FAFCFF;
  110. margin-right: 8px;
  111. font-weight: 400;
  112. font-size: 14px;
  113. color: #17181A;
  114. &.calc {
  115. color: #fff;
  116. background: #3377FF;
  117. }
  118. }
  119. }
  120. }
  121. .KCIMTable {
  122. .hover-row {
  123. .hover-icon {
  124. visibility: hidden;
  125. }
  126. &:hover {
  127. .hover-icon {
  128. visibility: visible;
  129. }
  130. }
  131. }
  132. .cost-ant-table-header {
  133. .cost-ant-table-thead {
  134. .cost-ant-table-cell {
  135. }
  136. }
  137. }
  138. .cost-ant-table-body {
  139. .cost-ant-table-row {
  140. &.has-children {
  141. .cost-ant-table-cell-with-append {
  142. font-weight: bold;
  143. }
  144. }
  145. }
  146. }
  147. }
  148. }
  149. }
  150. }
  151. }