style.less 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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. }
  28. }
  29. }
  30. }
  31. .DepartmentCostCalc {
  32. background: #FFFFFF;
  33. border-radius: 4px;
  34. .header {
  35. display: flex;
  36. flex-direction: row;
  37. justify-content: space-between;
  38. align-items: center;
  39. border-radius: 4px;
  40. padding: 16px;
  41. background-color: #fff;
  42. border-bottom: 16px solid #F7F9FC;
  43. }
  44. .content {
  45. padding: 16px;
  46. padding-top: 0;
  47. .inner {
  48. display: flex;
  49. width: 100%;
  50. flex-direction: row;
  51. justify-content: flex-start;
  52. align-items: flex-start;
  53. .left {
  54. width: 220px;
  55. height: calc(734px - 44px);
  56. border-radius: 4px;
  57. padding-top: 16px;
  58. margin-right: 16px;
  59. border: 1px solid #DAE2F2;
  60. }
  61. .right {
  62. width: calc(100% - 236px);
  63. .toolBar {
  64. display: flex;
  65. flex-direction: row;
  66. justify-content: space-between;
  67. align-items: center;
  68. margin-bottom: 12px;
  69. .filterItem {
  70. display: flex;
  71. flex-direction: row;
  72. justify-content: center;
  73. align-items: center;
  74. }
  75. .btnGroup {
  76. &>span {
  77. cursor: pointer;
  78. display: inline-block;
  79. color: #17181A;
  80. line-height: 24px;
  81. padding: 0 14px;
  82. border-radius: 4px;
  83. border: 1px solid #DAE2F2;
  84. background: #FAFCFF;
  85. margin-right: 8px;
  86. font-weight: 400;
  87. font-size: 14px;
  88. color: #17181A;
  89. &.calc {
  90. color: #fff;
  91. background: #3377FF;
  92. }
  93. }
  94. }
  95. }
  96. }
  97. }
  98. }
  99. }