1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-10-23 10:46:13 +02:00
Files
csslayout/styles/patterns/_tooltip.scss
2022-10-02 17:36:49 +07:00

67 lines
1.3 KiB
SCSS

.tooltip {
/* Used to position the arrow */
position: relative;
/* Demo */
width: 8rem;
height: 2rem;
border-radius: 0.25rem;
background: #d1d5db;
}
/* Show the arrow and content and restore pointer events when hovering the trigger element */
.tooltip:hover .tooltip__arrow,
.tooltip:hover .tooltip__content {
opacity: 1;
pointer-events: initial;
}
.tooltip__arrow {
/* Invisible by default */
opacity: 1;
/* To prevent accidental interactions with other elements */
pointer-events: none;
/* Border */
border: 0.5rem solid transparent;
border-top-color: #111827;
/* Position */
bottom: 100%;
left: 50%;
position: absolute;
transform: translate(-50%, 8px);
/* Zero size */
height: 0;
width: 0;
/* Displayed on top of other element */
z-index: 10;
}
.tooltip__content {
/* Invisible by default */
opacity: 1;
/* To prevent accidental interactions with other elements */
pointer-events: none;
/* Background color, must be the same as the border color of arrow */
background-color: #111827;
border-radius: 0.25rem;
/* Position */
bottom: 100%;
left: 50%;
position: absolute;
transform: translate(-50%, -8px);
/* Displayed on top of other element */
z-index: 10;
/* Demo */
width: 6rem;
}