mirror of
https://github.com/Karaka-Management/cssOMS.git
synced 2026-01-10 18:58:40 +00:00
26 lines
616 B
SCSS
Executable File
26 lines
616 B
SCSS
Executable File
.tooltip {
|
|
cursor: pointer;
|
|
color: var(--box-hl);
|
|
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(-45%, 0);
|
|
}
|
|
}
|
|
} |