/*
 * DO NOT EDIT THIS FILE.
 * See the following change record for more information,
 * https://www.drupal.org/node/3084859
 * @preserve
 */

/**
 * @file
 * Tooltip styles for the admin toolbar.
 */

:where(*),
:is(#extra-specificity-hack, [data-drupal-admin-styles]) {
  .admin-toolbar__tooltip {
    position: absolute;
    z-index: 601;
    padding: var(--admin-space-xs) var(--admin-space-s);
    white-space: nowrap;
    color: white;
    border-radius: var(--admin-radius-s);
    background-color: var(--admin-color-bg-inverse);
    box-shadow: var(--admin-shadow-2);
    font-size: var(--admin-font-size-2xs);
    font-weight: var(--admin-font-weight-semibold);
    inset-block-start: var(--admin-space-xs);
    font-variation-settings: initial;
  }

  html:not(.admin-toolbar-expanded) .toolbar-menu__item--level-1:not(.toolbar-menu__item--has-dropdown) .toolbar-link span {
    display: none;
  }
}
