22 lines
502 B
SCSS
22 lines
502 B
SCSS
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
%tooltip-panel dt {
|
|
cursor: pointer;
|
|
}
|
|
/* This is the top chevron */
|
|
%tooltip-panel dd > div::before {
|
|
@extend %as-pseudo;
|
|
width: 12px;
|
|
height: 12px;
|
|
background-color: var(--token-color-surface-primary);
|
|
border-top: 1px solid var(--token-color-palette-neutral-300);
|
|
border-right: 1px solid var(--token-color-palette-neutral-300);
|
|
transform: rotate(-45deg);
|
|
position: absolute;
|
|
left: 16px;
|
|
top: -7px;
|
|
}
|