/*---------------------------------------------------------------------------------------------
* 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/z-index";
@import "variables";

.nz-widget-floatingTab {
  position: absolute;
  padding: 0 1em;
  display: flex;
  align-items: center;
  background: $buic-background-4;
  user-select: none;
  white-space: nowrap;
  height: $nz-widget-tab-height;
  border-radius: $nz-widget-tab-border-radius;
  color: $buic-foreground-disabled;
  pointer-events: none;
  opacity: $nz-dragged-widget-opacity;

  @include uicore-z-index(drag-preview);

  &.nz-hidden {
    display: none;
  }

  > span {
    font-size: $nz-widget-tab-font-size;
  }
}
