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

@tab-prefix-cls: ~"@{ui-prefix}-tabs";

// card style
.@{tab-prefix-cls} {
  &&_card > &-bar &-bar__nav {
    height: @tabs-card-height;
  }
  &&_card > &-bar &__ink-bar {
    visibility: hidden;
  }
  &&_card > &-bar &__tab {
    margin: 0;
    border: @border-width-base @border-style-base @border-color-split;
    border-bottom: 0;
    border-radius: @border-radius-base @border-radius-base 0 0;
    background: @tabs-card-head-background;
    margin-right: 2px;
    padding: 0 16px;
    transition: all 0.3s @ease-in-out;
    line-height: @tabs-card-height - 2px;
  }
  &&_card > &-bar &__tab_active {
    background: @component-background;
    border-color: @border-color-split;
    color: @tabs-card-active-color;
    padding-bottom: 1px;
  }
  &&_card > &-bar &__tab_inactive {
    padding: 0;
  }
  &&_card > &-bar &-bar__wrap {
    margin-bottom: 0;
  }
  &&_card > &-bar &__tab .@{iconfont-css-prefix}_close {
    color: @text-color-secondary;
    transition: all .3s;
    font-size: @font-size-sm;
    margin-left: 3px;
    margin-right: -5px;
    overflow: hidden;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    height: @font-size-base;
    &:hover {
      color: @heading-color;
    }
  }

  &&_card &-content > &__tabpane,
  &&-editable-card &-content > &__tabpane {
    transition: none !important;
    &_inactive {
      overflow: hidden;
    }
  }

  &&_card > &-bar &__tab:hover .@{iconfont-css-prefix}_close {
    opacity: 1;
  }

  &__extra-content {
    line-height: @tabs-card-height;

    .@{tab-prefix-cls}__new-tab {
      width: 20px;
      height: 20px;
      line-height: 20px;
      text-align: center;
      cursor: pointer;
      border-radius: @border-radius-sm;
      border: @border-width-base @border-style-base @border-color-split;
      font-size: 12px;
      color: @text-color;
      transition: all .3s;
      &:hover {
        color: @tabs-card-active-color;
        border-color: @tabs-card-active-color;
      }
    }
  }

  // /issues/4669
  &_vertical&_card > .@{tab-prefix-cls}-bar {
    .@{tab-prefix-cls}-bar__nav {
      height: auto;
    }
    .@{tab-prefix-cls}__tab {
      border-bottom: @border-width-base @border-style-base @border-color-split;
      margin-bottom: 8px;
      &_active {
        padding-bottom: 4px;
      }
      &:last-child {
        margin-bottom: 8px;
      }
    }
    .@{tab-prefix-cls}__new-tab {
      width: 90%;
    }
  }

  &_vertical&_card&_left > .@{tab-prefix-cls}-bar {
    .@{tab-prefix-cls}-bar__wrap {
      margin-right: 0;
    }
    .@{tab-prefix-cls}-tab {
      border-right: 0;
      border-radius: @border-radius-base 0 0 @border-radius-base;
      margin-right: 1px;
      &-active {
        margin-right: -1px;
        padding-right: 18px;
      }
    }
  }

  &_vertical&_card&_right > .@{tab-prefix-cls}-bar {
    .@{tab-prefix-cls}-bar__wrap {
      margin-left: 0;
    }
    .@{tab-prefix-cls}__tab {
      border-left: 0;
      border-radius: 0 @border-radius-base @border-radius-base 0;
      margin-left: 1px;
      &_active {
        margin-left: -1px;
        padding-left: 18px;
      }
    }
  }

  // /issues/9104
  &&_card&_bottom > &-bar &__tab {
    border-bottom: @border-width-base @border-style-base @border-color-split;
    border-top: 0;
    border-radius: 0 0 @border-radius-base @border-radius-base;
  }

  &&_card&_bottom > &-bar &__tab_active {
    color: @primary-color;
    padding-bottom: 0;
    padding-top: 1px;
  }
}
