cssOMS/tooltip.scss
2022-02-19 13:57:39 +01:00

26 lines
623 B
SCSS
Executable File

.tooltip {
cursor: pointer;
color: var(--box-highlight);
font-size: .9rem;
&:hover, &:active, &:focus {
position: relative;
&:after, &:before {
font-size: .9rem;
display: block;
position: absolute;
white-space: nowrap;
bottom: 100%;
margin-bottom: 5px;
padding: 7px;
border-radius: 3px;
background-color: rgb(71, 71, 71);
color: #fff;
content: attr(data-tooltip);
text-align: center;
transform: translate(-50%, 0);
}
}
}