@import "./mixin";
.ws-data-table {
  &.row-link{
    tr{
      cursor: pointer;
    }
  }
  table > tbody > tr > td:last-child,
  table > thead > tr > th:last-child {
    position: sticky !important;
    position: -webkit-sticky !important;
    right: 0;
  }
  // table > thead > tr > th:last-child {
  // }
  &.theme--light.v-data-table {
    > .v-data-table__wrapper > table > tbody > tr:not(:last-child) {
      &.v-data-table__expanded__row {
        > td:not(.v-data-table__mobile-row) {
          border-bottom: 0;
        }
      }
    }
  }
  .v-data-table__wrapper {
    table {
      tr {
        // &.v-data-table__expanded {
        // }
        // &.v-data-table__expanded__row {
        // }
        &.v-data-table__expanded__content {
          box-shadow: none;
          border-top: 0;
        }
      }
    }
  }
  .ws-data-table__expand-content {
    padding: 0 10px 0 44px;
    background: var(--v-tableBackground-base);
  }
}
