/*---------------------------------------------------------------------------------------------
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
* See LICENSE.md in the project root for license terms and full copyright notice.
*--------------------------------------------------------------------------------------------*/
@import "../style/themecolors.scss";

.core-tree-expansionToggle {
  &:focus {
    outline: none;
  }

  > .toggle {

    display: block;
    width: 24px;
    height: 24px;
    padding: 7px;
    font-size: 12px;
    box-sizing: border-box;
    transform: rotate(0);
    transition: transform 100ms ease;
    color: $buic-foreground-body;
  }

  &.is-expanded > .toggle {
    transform: rotate( 90deg );
  }
}
