king
2024-06-21 b78198e00a34eaa2b0a761bb6f42bf14e7771883
src/assets/css/main.scss
@@ -728,6 +728,49 @@
    vertical-align: bottom;
  }
}
.fixed-table-height {
  tr, td, th {
    overflow: hidden;
  }
  ::-webkit-scrollbar {
    width: 17px;
    height: 17px;
  }
  ::-webkit-scrollbar-thumb {
    background: rgba(193, 193, 193, 0.7);
  }
  ::-webkit-scrollbar-track {
    background: #fafafa;
  }
  .ant-table-body {
    min-height: 1px;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    .ant-table-fixed {
      border-bottom: 0;
    }
  }
}
@media screen and (max-width: 1400px) {
  .fixed-table-height {
    ::-webkit-scrollbar {
      width: 16px;
    }
  }
}
@media screen and (min-width: 1600px) {
  .fixed-table-height {
    ::-webkit-scrollbar {
      width: 18px;
    }
  }
}
@media screen and (min-width: 1900px) {
  .fixed-table-height {
    ::-webkit-scrollbar {
      width: 21px;
    }
  }
}
// 系统色设置
.mk-main-view {