/*---------------------------------------------------------------------------------------------
* 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";
@import "variables";
@import "~@bentley/ui-core/lib/ui-core/typography";

.nz-footer-dialog-titleBar {
  $horizontal-padding: $nz-dialog-padding;
  $vertical-padding: 12px;

  background-color: $buic-background-titlebar;
  min-height: $nz-footer-title-bar-height;
  box-sizing: border-box;
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: 1fr auto;
  align-items: center;
  grid-gap: $horizontal-padding;
  padding-left: $horizontal-padding;
  padding-right: $horizontal-padding;

  > .nz-title {
    @include title;
    color: $buic-text-color;
    filter: drop-shadow(0 1px 0 $buic-text-color-reverse);
    white-space: nowrap;
    overflow: hidden;
  }
}
