/*---------------------------------------------------------------------------------------------
* 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/style/colors";

.node-drop-target {
  &.above {
    border-top: solid black 1px;
  }

  &.on {
    background-color: $uicore-blue-8;
  }

  &.below {
    border-bottom: solid black 1px;
  }

  &.dragging {
    .contents {
      color: $uicore-gray;
    }
  }
}
