/*---------------------------------------------------------------------------------------------
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
* See LICENSE.md in the project root for license terms and full copyright notice.
*--------------------------------------------------------------------------------------------*/
@import "../style/index";
@import "../inputs/variables";

@import "./button";
@import "./disabled";

@mixin uicore-buttons-hollow {

    @include uicore-buttons-button;

    padding:            $uicore-button-padding-bordered $uicore-bordered-padding;
    border-color:       $buic-foreground-disabled;
    background-color:   transparent;
    color:              $buic-text-color;

    &:hover {

      border-color:       $buic-foreground-body;
      color:              $buic-foreground-activehover;
    }

    &:active, &:focus {

      border-color:       $buic-foreground-activehover;
    }
}
