/*---------------------------------------------------------------------------------------------
* 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.scss";
@import "../inputs/index.scss";

$color: $buic-foreground-primary;
$hoverColor: $buic-foreground-primary-tone;

.core-underlined-button {
  background: transparent;
  color: $color;
  border: 0px solid $color;
  border-bottom-width: 1px;

  width: fit-content;

  cursor: pointer;

  &:hover {
    color: $hoverColor;
    border-color: $hoverColor;
  }

  &:focus {
    color: $hoverColor;
    border-color: $hoverColor;
    background-color: $buic-background-focus-overlay;
    outline: none;
  }

}