style.less 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. .row-dragging {
  2. .bms-ant-table-cell {
  3. width: 130px;
  4. }
  5. }
  6. .ReportSetting {
  7. width: 100%;
  8. overflow: hidden;
  9. .left {
  10. float: left;
  11. border-radius: 4px;
  12. width: 220px;
  13. height: calc(100vh - 80px);
  14. overflow: scroll;
  15. margin-right: 16px;
  16. padding:16px 8px;
  17. background: #FFFFFF;
  18. .toolbar {
  19. display: flex;
  20. flex-direction: row;
  21. justify-content: space-between;
  22. align-items: center;
  23. padding: 0 8px;
  24. .add {
  25. cursor: pointer;
  26. display: flex;
  27. justify-content: center;
  28. align-items: center;
  29. width: 24px;
  30. height: 24px;
  31. background: #FAFCFF;
  32. border-radius: 4px;
  33. border: 1px solid #DAE2F2;
  34. &>img {
  35. width: 16px;
  36. height: 16px;
  37. }
  38. }
  39. }
  40. .wrap {
  41. margin-top: 16px;
  42. .type {
  43. cursor: pointer;
  44. height: 56px;
  45. border-radius: 4px;
  46. background: #FFFFFF;
  47. display: flex;
  48. padding-left: 8px;
  49. padding-right: 8px;
  50. flex-direction: row;
  51. justify-content: space-between;
  52. align-items: center;
  53. margin-bottom: 4px;
  54. .icon {
  55. width: 25px;
  56. height: 25px;
  57. }
  58. .content {
  59. width: 80%;
  60. padding-left: 7px;
  61. .name {
  62. height: 15px;
  63. font-size: 14px;
  64. font-family: SourceHanSansCN-Medium, SourceHanSansCN;
  65. font-weight: 500;
  66. color: #17181A;
  67. line-height: 15px;
  68. margin-bottom: 8px;
  69. }
  70. .sub {
  71. height: 13px;
  72. font-size: 12px;
  73. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  74. font-weight: 400;
  75. color: #7A8599;
  76. line-height: 13px;
  77. }
  78. }
  79. .more {
  80. display: flex;
  81. justify-content: center;
  82. align-items:center;
  83. cursor: pointer;
  84. width: 16px;
  85. height: 16px;
  86. border-radius: 4px;
  87. background: #FFFFFF;
  88. &>img {
  89. width: 100%;
  90. height: 100%;
  91. }
  92. }
  93. &.on {
  94. font-weight: 500;
  95. color: #17181A;
  96. background: #F0F2F5;
  97. }
  98. &:last-child {
  99. margin-bottom: 0;
  100. }
  101. }
  102. }
  103. }
  104. .right {
  105. float: left;
  106. width: calc(100% - 236px);
  107. padding: 16px;
  108. border-radius: 4px;
  109. background: #FFFFFF;
  110. .toolBar {
  111. display: flex;
  112. flex-direction: row;
  113. justify-content: space-between;
  114. align-items: center;
  115. .filter {
  116. display: flex;
  117. flex-direction: row;
  118. justify-content: flex-start;
  119. align-items: center;
  120. .filterItem {
  121. display: flex;
  122. flex-direction: row;
  123. justify-content: center;
  124. align-items: center;
  125. }
  126. }
  127. .btnGroup {
  128. .manaBtn {
  129. cursor: pointer;
  130. display: inline-block;
  131. font-size: 14px;
  132. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  133. font-weight: 400;
  134. color: #FFFFFF;
  135. line-height: 24px;
  136. padding: 0 14px;
  137. background: #3377FF;
  138. border-radius: 4px;
  139. }
  140. .inner {
  141. &>span {
  142. cursor: pointer;
  143. display: inline-block;
  144. font-size: 14px;
  145. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  146. font-weight: 400;
  147. color: #FFFFFF;
  148. line-height: 24px;
  149. padding: 0 14px;
  150. background: #3377FF;
  151. border-radius: 4px;
  152. margin-left: 8px;
  153. }
  154. }
  155. }
  156. }
  157. }
  158. }