index.less 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. .clearCheckbox .ant-checkbox-inner {
  2. border-color: #FFF;
  3. }
  4. .searchModal {
  5. position: fixed;
  6. top: 148px;
  7. right: 470px;
  8. z-index: 200;
  9. border-radius: 6px;
  10. min-width: 200px;
  11. max-width: 550px;
  12. min-height: 50px;
  13. max-height: 320px;
  14. background-color: #FFF;
  15. border: 1px solid #d19999;
  16. padding: 6px;
  17. box-sizing: border-box;
  18. cursor: pointer;
  19. .close {
  20. position: absolute;
  21. top: -18px;
  22. right: -24px;
  23. padding: 4px;
  24. font-size: 18px;
  25. color: red;
  26. }
  27. .bts {
  28. position: absolute;
  29. bottom: 0;
  30. right: -33px;
  31. background-color: #FFF;
  32. }
  33. }
  34. .MYtable {
  35. tbody {
  36. td {
  37. padding: 0px !important;
  38. .ant-progress-bg {
  39. border-radius: 0 !important;
  40. height: 100% !important;
  41. }
  42. .ant-progress-inner {
  43. border-radius: 0 !important;
  44. height: 100%;
  45. background-color: #fff;
  46. }
  47. .ant-progress-line,
  48. .ant-progress-outer {
  49. height: 100%;
  50. }
  51. }
  52. tr:hover {
  53. background-color: #d6d0d0 !important;
  54. }
  55. tr:active {
  56. background-color: #d6d0d0 !important;
  57. }
  58. }
  59. }
  60. .more {
  61. width: 500px;
  62. max-height: 200px;
  63. }
  64. #filterQueryContentAd {
  65. width: 100%;
  66. .ant-popover-inner-content {
  67. padding: 0;
  68. }
  69. .bt {
  70. border-radius: 6px !important;
  71. padding: 4px 8px;
  72. }
  73. }
  74. .selectedFilterAd {
  75. overflow: auto;
  76. display: flex;
  77. gap: 10px;
  78. max-width: 100%;
  79. margin-top: 10px;
  80. &::-webkit-scrollbar {
  81. // display: none; /* Chrome Safari */
  82. width: 1px;
  83. height: 1px;
  84. }
  85. &::-webkit-scrollbar-thumb {
  86. border-radius: 4px;
  87. -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0);
  88. background-color: #ddd;
  89. background: rgba(0, 0, 0, 0);
  90. }
  91. &:hover::-webkit-scrollbar-thumb {
  92. background: rgba(82, 82, 82, 0.3);
  93. -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.2);
  94. }
  95. >div {
  96. max-width: 250px;
  97. height: 32px;
  98. display: flex;
  99. align-items: center;
  100. gap: 2px;
  101. border: 1px solid #dfe1e6;
  102. border-radius: 6px;
  103. cursor: pointer;
  104. background-color: #F2F4F7;
  105. color: #313233;
  106. .text {
  107. width: calc(100% - 40px);
  108. white-space: nowrap;
  109. text-overflow: ellipsis;
  110. overflow: hidden;
  111. padding: 0 0 0 10px;
  112. }
  113. .close {
  114. height: 32px;
  115. width: 32px;
  116. border-left: 1px solid #d9d9d9;
  117. text-align: center;
  118. line-height: 32px;
  119. color: red;
  120. &:hover {
  121. color: #1890ff;
  122. }
  123. }
  124. }
  125. }
  126. .expandClassname {
  127. .ant-table-expanded-row>td {
  128. position: relative;
  129. height: 308px;
  130. .expandContent {
  131. position: absolute;
  132. left: 4px;
  133. top: 6px;
  134. display: flex;
  135. gap: 8px;
  136. }
  137. }
  138. }