table.scss 1.34 KB
$border-color: #ebeef5;
.lbp-table {
  position: relative;
  overflow: hidden;

  table {
    position: absolute;
    table-layout: fixed;
    height: 100%;
    background: white;

    // 边框
    td {
      border-top: 2px solid $border-color;
      border-left: 2px solid $border-color;
    }
    tr:last-child {
      border-bottom: 2px solid $border-color;
      border-right: 2px solid $border-color;
    }

    // 表头加粗
    tr:first-child  {
      background-color: #f6f6f6;
      font-size: 13px;
      font-weight: bold;
    }

    // 居中对齐
    td {
      text-align: center;
    }

  }

  .main-table-wrapper {
    position: absolute;
    left: 0px;
    top: 0px;
    overflow: auto;
    width: 100%;
    height: 100%;
  }

  .fixed-table-wrapper {
    position: absolute;
    left: 0px;
    top: 0px;
    overflow: hidden;
  }
}


.lbp-table-theme-stripe {
  table {
    tbody tr {
      // 奇
      &:nth-child(odd):not(:first-child) {
        background-color: #f6f6f6;
      }

      &:nth-child(even) {
        background-color: white;
      }
    }
  }
}

.lbp-table-theme-light-blue {
  table {
    tbody tr {
      &:first-child {
        background-color: #edf8ff;
      }
      &:nth-child(odd):not(:first-child) {
        background-color: #edf8ff;
      }

      &:nth-child(even) {
        background-color: white;
      }
    }
  }
}