/*---------------------------------------------------------------------------------------------
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
* See LICENSE.md in the project root for license terms and full copyright notice.
*--------------------------------------------------------------------------------------------*/
@import "~@bentley/ui-core/lib/ui-core/z-index";

.nz-widget-tabTarget {
  $size: 3em;

  position: relative;
  @include uicore-z-index(drag-target);

  &.nz-hidden {
    display: none;
  }

  &:after {
    content: '';
    width: $size;
    height: 100%;
    flex-shrink: 0;
    position: absolute;
    transform: translateX(-50%);
  }

  &.nz-targeted {
    &:after {
      background: rgb(140, 210, 255);
      opacity: 0.5;
    }
  }
}
