/**Variable**/

.s-table--header-wrapper {
  background-color: $s-table-header-background-color;
  .s-table--repair {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    background-color: $s-table-border-color;
  }
}

.s-header--column {
  position: relative;
  &.col--title-checked {
    background-color: $s-table-column-header-checked-background-color;
  }
  .s-required-icon {
    display: inline-block;
    color: $s-table-validate-error-color;
    line-height: 16px;
    font-size: 16px;
    vertical-align: middle;
    &:before {
      content: "*";
      width: 10px;
      height: 8px;
      display: block;
    }
  }
  .s-edit-icon {
    font-size: 12px;
    margin: 1px 2px 2px 2px;
  }
  .s-resizable {
    position: absolute;
    right: -7px;
    top: 0;
    width: 14px;
    height: 100%;
    text-align: center;
    z-index: 1;
    user-select: none;
    cursor: col-resize;
    &.is--line {
      &:before,
      &:after {
        content: "";
        display: inline-block;
        vertical-align: middle;
      }
      &:before {
        width: 1px;
        height: 50%;
        background-color: $s-table-resizable-color;
      }
      &:after {
        width: 0;
        height: 100%;
      }
    }
  }
}
