/*
 * Copyright (c) 2010, 2023 BSI Business Systems Integration AG
 *
 * This program and the accompanying materials are made
 * available under the terms of the Eclipse Public License 2.0
 * which is available at https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 */
.key-box {
  position: absolute;
  min-width: 34px;
  padding: 4px 5px;
  z-index: 100;
  color: @key-box-color;
  background-color: @key-box-background-color;
  line-height: normal;
  text-align: center;
  border: 1px solid @key-box-border-color;
  font-size: 11px;
  font-weight: normal;
  border-radius: @border-radius;

  &.disabled {
    border-color: @key-box-border-disabled-color;
    background-color: @key-box-background-disabled-color;
  }
}
