Add tooltips

This commit is contained in:
Reid 'arrdem' McKenzie 2023-05-29 00:05:43 -06:00
parent 02b40b3cc4
commit f003351290

View file

@ -0,0 +1,90 @@
@import "tirefire/colors";
.tooltip {
position: relative;
align-items: center;
justify-content: center;
flex-direction: column;
}
.tooltip::after {
background-color: $secondary_light_grey;
border-radius: 2px;
color: $black;
display: none;
padding: 10px 15px;
position: absolute;
text-align: center;
z-index: 999;
}
.tooltip::before {
background-color: $secondary_light_grey;
content: ' ';
display: none;
position: absolute;
width: 15px;
height: 15px;
z-index: 999;
}
.tooltip:hover::after {
display: block;
}
.tooltip:hover::before {
display: block;
}
.tooltip.top::after {
content: attr(data-text);
top: 0;
left: 50%;
transform: translate(-50%, calc(-100% - 10px));
}
.tooltip.top::before {
top: 0;
left: 50%;
transform: translate(-50%, calc(-100% - 5px)) rotate(45deg);
}
.tooltip.bottom::after {
content: attr(data-text);;
bottom: 0;
left: 50%;
transform: translate(-50%, calc(100% + 10px));
}
.tooltip.bottom::before {
bottom: 0;
left: 50%;
transform: translate(-50%, calc(100% + 5px)) rotate(45deg);
}
.tooltip.right::after {
content: attr(data-text);;
top: 0;
right: 0;
transform: translateX(calc(100% + 10px)) translateY(calc(-50% + 10px));
}
.tooltip.right::before {
top: 50%;
right: 0;
transform: translate(calc(100% + 5px), -50%) rotate(45deg);
}
.tooltip.left::after {
content: attr(data-text);;
top: 0;
left: 0;
transform: translateX(calc(-100% - 10px)) translateY(calc(-50% + 10px));
}
.tooltip.left::before {
top: 50%;
left: 0;
transform: translate(calc(-100% - 5px), -50%) rotate(45deg);
}