/* stylelint-disable terra/custom-property-pseudo-selectors */
// Themes
@import '../orion-fusion-theme/ColumnResizeHandle.module';
@import '../clinical-lowlight-theme/ColumnResizeHandle.module';

:local {
  .resize-handle {
    border-right: 4px solid transparent;
    cursor: col-resize;
    display: block;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 22px;
    z-index: 1;

    &:active {
      border-color: var(--terra-table-resize-handle-active-border-color, rgba(34, 42, 46, 1)) !important;
    }

    &:focus {
      border-color: var(--terra-table-resize-handle-hover-border-color, rgba(34, 42, 46, 0.6));
      outline: 0 !important;
    }

    &:hover {
      border-color: var(--terra-table-resize-handle-hover-border-color, rgba(34, 42, 46, 0.6));
    }

    &-selected {
      border-color: var(--terra-table-resize-handle-active-border-color, rgba(34, 42, 46, 1)) !important;
    }
  }
}
