/*---------------------------------------------------------------------------------------------
* 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/themecolors";

.nz-toolSettings-handle {
  $dot-size: 0.25em;
  $dot-gap: $dot-size;

  height: 100%;
  width: 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;

  &:hover {
    background: $buic-background-2;
  }

  > .nz-row {
    display: flex;

    &:not(:first-child) {
      margin-top: $dot-gap;
    }

    > .nz-dot {
      width: $dot-size;
      height: $dot-size;
      background-color: $buic-foreground-disabled;

      &:last-child {
        margin-left: $dot-gap;
      }
    }
  }
}
