@import "../../../style/theme/default/index";
@import "../../../style/mixins/index";

@table-prefix-cls:  ~'@{idoll-prefix}-table';
@table-header-icon-color: @text-color-secondary;

.@{table-prefix-cls}-wrapper {
  .clearfix;
}

.@{table-prefix-cls} {
  .reset-component;
  overflow: hidden;
  position: relative;
  border-radius: @border-radius-base @border-radius-base 0 0;

  &-body {
    transition: opacity .3s;
    overflow: auto;
  }

  table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    text-align: left;
    table-layout: fixed;
    border-radius: @border-radius-base @border-radius-base 0 0;
  }
  
  &-row-zebraColor-even {
    background-color: @table-header-color;
  }
  &-row-zebraColor-odd {
    background-color: @white;
  }

  &-thead > tr > th {
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    background: @table-header-bg;
    transition: background .3s ease;
    text-align: left;
    color: @title-color;
    font-weight: 700;
    border-bottom: @border-width-base @border-style-base @border;

    &[colspan] {
      text-align: center;
      border-bottom: 0;
    }

    .@{iconfont-css-prefix}-filter,
    .@{table-prefix-cls}-filter-icon {
      position: relative;
      margin-left: 8px;
      font-size: @font-size-base;
      cursor: pointer;
      color: @table-header-icon-color;
      transition: all .3s;
      width: 14px;
      font-weight: normal;
      vertical-align: text-bottom;

      &:hover {
        color: @text-color;
      }
    }

    .@{table-prefix-cls}-column-sorter + .@{iconfont-css-prefix}-filter {
      margin-left: 4px;
    }

    .@{table-prefix-cls}-filter-selected.@{iconfont-css-prefix}-filter {
      color: @primary-color;
    }
  }

  &-tbody .@{idoll-prefix}-form-item-control {
    line-height: 0;
  }

  &-tbody > .@{table-prefix-cls}-expanded-row[data-row-key*='-extra-row'] {
    background: @table-header-color ;
    td {
      .clearfix {
        margin: -16px 0 -16px -16px;
        border-bottom: @border-width-base @border-style-base @table-header-color;
        .@{table-prefix-cls}-tbody {
          tr:last-child {
            td {
              border-bottom: 0;
            }
          }
        }
      }
    }
  }

  &-tbody > tr > td {
    border-bottom: @border-width-base @border-style-base @border;
    transition: all .3s;
  }

  &-tbody > tr {
    transition: all .3s;
    &.@{table-prefix-cls}-row-hover,
    &:hover {
        background: @primary-lightBg;
        transition: all .3s
    }
  }

  &-thead > tr:hover {
    background: none;
  }

  &-footer {
    padding: @table-padding-vertical @table-padding-horizontal;
    background: @table-header-bg;
    border-radius: 0 0 @border-radius-base @border-radius-base;
    position: relative;
    border-top: @border-width-base @border-style-base @border;
    &:before {
      content: '';
      height: 1px;
      background: @table-header-bg;
      position: absolute;
      top: -1px;
      width: 100%;
      left: 0;
    }
  }

  &.@{table-prefix-cls}-bordered &-footer {
    border: @border-width-base @border-style-base @border;
  }

  &-title {
    padding: @table-padding-vertical 0;
    position: relative;
    top: 1px;
    border-radius: @border-radius-base @border-radius-base 0 0;
  }

  &.@{table-prefix-cls}-bordered &-title {
    border: @border-width-base @border-style-base @border;
    padding-left: @table-padding-horizontal;
    padding-right: @table-padding-horizontal;
  }

  &-title + &-content {
    position: relative;
    border-radius: @border-radius-base @border-radius-base 0 0;
    overflow: hidden;
    .@{table-prefix-cls}-bordered & {
      &,
      table {
        border-radius: 0;
      }
    }
  }

  &-without-column-header &-title + &-content,
  &-without-column-header table {
    border-radius: 0;
  }

  &-tbody > tr.@{table-prefix-cls}-row-selected td {
    background: @table-selected-row-bg;
  }

  &-thead > tr > th,
  &-tbody > tr > td {
    padding: @padding-md;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    div {
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
    }
  }

  &-thead > tr > th.@{table-prefix-cls}-selection-column-custom {
    padding-left: @padding-md;
    padding-right: 0;
  }

  &-thead > tr > th.@{table-prefix-cls}-selection-column,
  &-tbody > tr > td.@{table-prefix-cls}-selection-column {
    text-align: center;
  }

  &-expand-icon-th,
  &-row-expand-icon-cell {
    text-align: center;
  }

  &-header {
    background: @table-header-bg;
    overflow: hidden;
  }

  &-header table {
    border-radius: @border-radius-base @border-radius-base 0 0;
  }

  &-loading {
    position: relative;
    .@{table-prefix-cls}-body {
      background:  @table-bg;
      opacity: 0.5;
    }
    .@{table-prefix-cls}-spin-holder {
      height: 32px;
      line-height: 32px;
      left: 50%;
      top: 50%;
      margin-left: -30px;
      position: absolute;
    }
    .@{table-prefix-cls}-with-pagination {
      margin-top: -20px;
    }
    .@{table-prefix-cls}-without-pagination {
      margin-top: 10px;
    }
  }

  &-column-sorter {
    position: relative;
    margin-left: -2px;
    display: inline-block;
    width: 14px;
    height: 16px;
    vertical-align: middle;
    text-align: center;
    font-weight: normal;
    color: @table-header-icon-color;

    &-up,
    &-down {
      line-height: 6px;
      display: block;
      width: 14px;
      height: 6px;
      cursor: pointer;
      &:hover .@{iconfont-css-prefix} {
        color: @text-color;
      }
      &.on {
        .@{iconfont-css-prefix}-caret-up,
        .@{iconfont-css-prefix}-caret-down {
          color: @primary-color;
        }
      }

      &:after {
        position: absolute;
        content: '';
        height: 30px;
        width: 14px;
        left: 0;
      }
    }

    &-up:after {
      top: -30px;
    }

    &-down:after {
      bottom: -30px;
    }

    .@{iconfont-css-prefix}-caret-up,
    .@{iconfont-css-prefix}-caret-down {
      // .iconfont-size-under-12px(18px);
      line-height: 4px;
      height: 4px;
      transition: all .3s;
    }
  }

  &-bordered {
    .@{table-prefix-cls}-header > table,
    .@{table-prefix-cls}-body > table,
    .@{table-prefix-cls}-fixed-left table,
    .@{table-prefix-cls}-fixed-right table {
      border: @border-width-base @border-style-base @border;
      border-right: 0;
      border-bottom: 0;
    }

    &.@{table-prefix-cls}-empty {
      .@{table-prefix-cls}-placeholder {
        border-left: @border-width-base @border-style-base @border;
        border-right: @border-width-base @border-style-base @border;
      }
    }

    &.@{table-prefix-cls}-fixed-header {
      .@{table-prefix-cls}-header > table {
        border-bottom: 0;
      }

      .@{table-prefix-cls}-body > table {
        border-top: 0;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
      }

      .@{table-prefix-cls}-body-inner > table {
        border-top: 0;
      }

      .@{table-prefix-cls}-placeholder {
        border: 0;
      }
    }

    .@{table-prefix-cls}-thead > tr > th {
      border-bottom: @border-width-base @border-style-base @border;
    }

    .@{table-prefix-cls}-thead > tr > th,
    .@{table-prefix-cls}-tbody > tr > td {
      border-right: @border-width-base @border-style-base @border;
    }
  }

  &-placeholder {
    position: relative;
    padding: @table-padding-vertical @table-padding-horizontal;
    background:  @table-bg;
    border-bottom: @border-width-base @border-style-base @border;
    text-align: center;
    font-size: @font-size-base;
    color: @text-color-secondary;
    z-index: 1;
    .@{iconfont-css-prefix} {
      margin-right: 4px;
    }
  }

  &-pagination.@{idoll-prefix}-pagination {
    margin: 16px 0;
    float: right;
  }

  &-filter-dropdown {
    margin-left: -8px;
    background:  @table-bg;
    border-radius: @border-radius-base;
    box-shadow: @box-shadow-base;

    .@{idoll-prefix}-dropdown-menu {
      border: 0;
      box-shadow: none;
      border-radius: @border-radius-base @border-radius-base 0 0;

      &-without-submenu {
        max-height: 400px;
        overflow-x: hidden;
      }

      &-item > label + span {
        padding-right: 0;
      }

      &-sub {
        border-radius: @border-radius-base;
        box-shadow: @box-shadow-base;
      }

      .@{idoll-prefix}-dropdown-submenu-contain-selected {
        .@{idoll-prefix}-dropdown-menu-submenu-title:after {
          color: @primary-color;
          font-weight: bold;
        }
      }
    }

    .@{idoll-prefix}-dropdown-menu-item {
      overflow: hidden;
    }

    > .@{idoll-prefix}-dropdown-menu > .@{idoll-prefix}-dropdown-menu-item:last-child,
    > .@{idoll-prefix}-dropdown-menu > .@{idoll-prefix}-dropdown-menu-submenu:last-child .@{idoll-prefix}-dropdown-menu-submenu-title {
      border-radius: 0;
    }

    &-btns {
      overflow: hidden;
      padding: (@padding-xs - 1px) @padding-xs;
      border-top: @border-width-base @border-style-base @border;
    }

    &-link {
      color: @link-color;
      &:hover {
        color: @link-hover-color;
      }
      &:active {
        color: @primary-color;
      }
      &.confirm {
        float: left;
      }
      &.clear {
        float: right;
      }
    }
  }

  &-selection {
    &-select-all-custom {
      margin-right: 4px !important;
    }

    .@{iconfont-css-prefix}-down {
      color: @table-header-icon-color;
      transition: all .3s;
    }

    &-menu {
      margin-top: 5px;
      margin-left: -30px;
      background:  @table-bg;
      border-radius: @border-radius-base;
      box-shadow: @box-shadow-base;

      .@{idoll-prefix}-action-down {
        color: @table-header-icon-color;
      }
    }

    &-down {
      cursor: pointer;
      padding: 0;
      display: inline-block;
      line-height: 1;
      &:hover .@{iconfont-css-prefix}-down {
        color: @text-color;
      }
    }
  }

  &-row {
    &-expand-icon {
      cursor: pointer;
      display: inline-block;
      width: 17px;
      height: 17px;
      text-align: center;
      line-height: 14px;
      border: @border-width-base @border-style-base @border;
      user-select: none;
      background:  @table-bg;
    }

    &-expanded:after {
      content: '-';
    }

    &-collapsed:after {
      content: '+';
    }

    &-spaced {
      visibility: hidden;
      &:after {
        content: '.';
      }
    }

    &[class*="@{table-prefix-cls}-row-level-0"] .@{table-prefix-cls}-selection-column > span {
      display: inline-block;
    }
  }

  tr&-expanded-row {
    &,
    &:hover {
      background: @text-color-disable-dark ;
    }
  }

  .@{table-prefix-cls}-row-indent + .@{table-prefix-cls}-row-expand-icon {
    margin-right: 8px;
  }

  &-scroll {
    overflow: auto;
    overflow-x: hidden;
    table {
      width: auto;
    }
  }

  &-body-inner {
    height: 100%;
  }

  &-fixed-header > &-content > &-scroll > &-body {
    position: relative;
    background:  @table-bg;
  }

  &-fixed-header &-body-inner {
    overflow: scroll;
  }

  &-fixed-header &-scroll &-header {
    overflow: scroll;
    padding-bottom: 20px;
    margin-bottom: -20px;
  }

  &-fixed-left,
  &-fixed-right {
    position: absolute;
    top: 0;
    overflow: hidden;
    transition: box-shadow .3s ease;
    border-radius: 0;
    table {
      width: auto;
      background:  @table-bg;
    }
  }

  &-fixed-header &-fixed-left &-body-outer &-fixed,
  &-fixed-header &-fixed-right &-body-outer &-fixed {
    border-radius: 0;
  }

  &-fixed-left {
    left: 0;
    box-shadow: 6px 0 6px -4px @shadow-color;
    .@{table-prefix-cls}-header {
      overflow-y: hidden;
    }
    .@{table-prefix-cls}-body-inner {
      margin-right: -20px;
      padding-right: 20px;
    }
    .@{table-prefix-cls}-fixed-header & .@{table-prefix-cls}-body-inner {
      padding-right: 0;
    }
    &,
    table {
      border-radius: @border-radius-base 0 0 0;
    }
  }

  &-fixed-right {
    right: 0;
    box-shadow: -6px 0 6px -4px @shadow-color;
    &,
    table {
      border-radius: 0 @border-radius-base 0 0;
    }
    .@{table-prefix-cls}-expanded-row {
      color: transparent;
      pointer-events: none;
    }
  }

  &&-scroll-position-left &-fixed-left {
    box-shadow: none;
  }

  &&-scroll-position-right &-fixed-right {
    box-shadow: none;
  }
}

.@{table-prefix-cls}-middle {
  .@{table-prefix-cls}-thead > tr > th,
  .@{table-prefix-cls}-tbody > tr > td {
    padding: @padding-sm @padding-md;
  }
}

.@{table-prefix-cls}-small {
  .@{table-prefix-cls}-thead > tr > th,
  .@{table-prefix-cls}-tbody > tr > td {
    padding: @padding-xs;
  }
}
