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

.nz-target-tabTarget {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;

  @include uicore-z-index(drop-target);

  &.nz-hidden {
    display: none;
  }

  &.nz-targeted {
    background-color: $nz-outline-color;

    > .nz-section {
      &.nz-target {
        background-color: $nz-outline-color;
      }
    }
  }
}
