27 lines
653 B
SCSS
27 lines
653 B
SCSS
/**
|
|
* @file
|
|
* Tooltip styles.
|
|
*/
|
|
|
|
.tooltip,
|
|
.cloned-tooltip {
|
|
position: absolute;
|
|
top: var(--space-xs);
|
|
left: 100%;
|
|
background-color: var(--color-gray-950);
|
|
color: white;
|
|
padding: 0.25rem var(--space-xs);
|
|
border-radius: var(--space-xs);
|
|
font-size: var(--font-size-xxs);
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.08em;
|
|
line-height: var(--space-m);
|
|
z-index: 601;
|
|
}
|
|
|
|
/* Hide the origin value of the Tooltip if the Admin toolbar is expanded. */
|
|
html:not(.admin-toolbar-expanded) .toolbar-menu__item--level-1:not(.toolbar-menu__item--has-dropdown) .toolbar-link span {
|
|
display: none;
|
|
}
|