/*---------------------------------------------------------------------------------------------
* 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";

.inline-edit-input {
  color: $buic-foreground-body;
  background: inherit;
  border: 1px solid transparent;
  padding: 0px;
  box-sizing: border-box;

  &:hover {
    border: 1px solid $buic-background-5;
  }

  &:focus {
    background: $buic-background-1;
    border: 1px solid $buic-background-5;
    outline: none;
    color: $buic-foreground-activehover;
  }
}
