king
2023-05-09 7b0dbecd1d6155d26ec67be0a47a16264c738c85
src/tabviews/custom/components/table/edit-table/normalTable/index.scss
@@ -1,6 +1,11 @@
.edit-custom-table {
  position: relative;
  min-height: 150px;
  padding: 0px;
  --mk-table-border-color: #e8e8e8;
  --mk-table-color: rgba(0, 0, 0, 0.65);
  --mk-table-font-size: 14px;
  --mk-table-font-weight: normal;
  .normal-table-footer {
    padding: 10px 0px;
@@ -17,6 +22,13 @@
  .ant-table {
    color: inherit;
    font-size: inherit;
  }
  .mk-edit-sign {
    position: absolute;
    bottom: 2px;
    right: 3px;
    opacity: 0.5;
    font-size: 10px;
  }
  table {
@@ -60,16 +72,7 @@
        // vertical-align: top;
        .card-cell-list {
          color: rgba(0, 0, 0, 0.85);
        }
        .ant-mk-picture {
          position: relative;
          background-position: center center;
          background-size: cover;
          margin: 2px;
        }
        .ant-mk-picture.scale {
          cursor: zoom-in;
          color: inherit;
        }
        .action-col {
          .ant-btn > .anticon + span {
@@ -135,56 +138,103 @@
      }
    }
  }
  .fix-header {
    .ant-table-body {
      min-height: unset
    }
    .ant-table-placeholder {
      display: none;
    }
    .ant-table-wrapper {
      display: none;
    }
    .ant-affix .ant-table-wrapper {
      display: block;
    }
  }
  .ant-input {
    border: none;
    box-shadow: none!important;
    height: auto;
    border-radius: 0;
  }
  .ant-input-number {
    border: none;
    box-shadow: none!important;
    height: auto;
    .ant-input-number-handler-wrap {
      display: none;
    }
    .ant-input-number-input {
      border-radius: 0;
      padding: 0;
      height: auto;
    }
  }
  .editing_table_cell {
    .ant-input {
      padding: 0px;
    }
    i {
      color: #ff4d4f;
      position: absolute;
      right: 3px;
      top: calc(50% - 8px);
      top: 0px;
      left: 0px;
      right: 0px;
      bottom: 0px;
      border: 1px solid var(--mk-sys-color);
      height: auto;
      border-radius: 0;
      box-shadow: none!important;
      text-align: inherit;
    }
    .ant-select {
      padding: 0px;
      position: absolute;
      top: 0px;
      left: 0px;
      right: 0px;
      bottom: 0px;
      .ant-select-selection {
        height: 100%;
        border-radius: 0;
        .ant-select-arrow {
          display: none;
        }
      }
    }
    .ant-input-number {
      height: auto;
      border-radius: 0;
      position: unset;
      border: none;
      box-shadow: none!important;
      text-align: inherit;
      .ant-input-number-handler-wrap {
        display: none;
      }
      .ant-input-number-input-wrap {
        text-align: inherit;
      }
      .ant-input-number-input {
        border-radius: 0;
        padding: 0;
        height: auto;
        position: absolute;
        text-align: inherit;
        top: 0px;
        left: 0px;
        right: 0px;
        bottom: 0px;
        border: 1px solid var(--mk-sys-color);
      }
    }
    .has-error, .has-error .ant-input-number-input {
      border-color: #ff4d4f!important;
    }
  }
  .editing_all_table_cell {
    .ant-input {
      border-radius: 0;
      padding: 4px 5px;
      text-align: inherit;
    }
    .ant-select {
      width: 100%;
      .ant-select-selection {
        border-radius: 0;
      }
    }
    .ant-input-number {
      border-radius: 0;
      text-align: inherit;
      .ant-input-number-handler-wrap {
        display: none;
      }
      .ant-input-number-input-wrap {
        text-align: inherit;
      }
      .ant-input-number-input {
        border-radius: 0;
        padding: 4px 5px;
        text-align: inherit;
      }
    }
    .has-error, .has-error .ant-input-number-input {
      border-color: #ff4d4f!important;
    }
  }
  td.pointer {
    position: relative;
  }
  td.pointer {
    .mk-mask {
      display: none;
      cursor: pointer;
      position: absolute;
      top: 0;
@@ -193,19 +243,72 @@
      right: 0;
    }
  }
  .submit-footer-table {
    float: right;
    min-height: 28px;
    min-width: 65px;
    height: auto;
    color: #ffffff;
    background-color: #1890ff;
    border-width: 0;
    margin-top: 10px!important;
    margin-right: 10px!important;
  }
  .ant-table-small.ant-table-bordered {
    border-right: 1px solid #e8e8e8;
  }
  table, tr, th, td, .ant-table-small {
    border-color: var(--mk-table-border-color)!important;
  }
  table tr {
    th .ant-table-column-title, th .ant-table-column-title span:not(.anticon) {
      font-size: var(--mk-table-font-size)!important;
      font-weight: var(--mk-table-font-weight)!important;
    }
    td {
      font-size: var(--mk-table-font-size)!important;
      font-weight: var(--mk-table-font-weight)!important;
      >span, >div:not(.card-cell-list) div, >div:not(.card-cell-list) span {
        font-weight: var(--mk-table-font-weight)!important;
      }
    }
  }
  table tbody tr {
    color: var(--mk-table-color);
  }
  .ant-table-bordered {
    table {
      tbody {
        tr:last-child {
          td {
            border-bottom: none;
          }
        }
      }
    }
  }
}
.edit-custom-table.mk-edit-simple {
  table tbody tr td {
    min-height: 32px;
    height: 32px;
  }
}
.edit-custom-table.mk-edit-multi {
  th .ant-table-column-title .anticon-edit {
    display: none;
  }
}
.edit-custom-table.editable {
  td {
    background-color: #ffffff!important;
  }
  td.pointer .mk-mask {
    display: block;
  }
  .mk-operation {
    display: none;
  }
  .ant-table-placeholder {
    display: none;
  }
}
.edit-custom-table:not(.ghost) {
  .ant-table-small > .ant-table-content .ant-table-thead > tr > th {
    background-color: #fafafa!important;
  }
}
.edit-custom-table:not(.fixed-height) {
@@ -281,4 +384,25 @@
      cursor: pointer;
    }
  }
}
}
.edit-table-dropdown {
  .ant-select-dropdown-menu-item {
    white-space: unset;
    text-overflow: unset;
  }
}
.edit-custom-table-btn-wrap {
  float: right;
  .submit-table {
    position: relative;
    z-index: 2;
    min-width: 65px;
    margin-right: 15px;
    min-height: 28px;
    height: auto;
    color: #ffffff;
    background-color: #1890ff;
    border-width: 0;
    margin-bottom: 10px!important;
  }
}