8,960
edits
No edit summary |
No edit summary |
||
| Line 13: | Line 13: | ||
/* Tooltip container */ | /* Tooltip container */ | ||
. | .tooltip-wrapper { | ||
position: relative; | |||
} | |||
.tooltip-text { | |||
visibility: hidden; | visibility: hidden; | ||
background-color: #555; | background-color: #555; | ||
| Line 34: | Line 38: | ||
} | } | ||
/* Show the tooltip text when the | /* Show the tooltip text when the wrapper is focused */ | ||
. | .tooltip-wrapper:focus-within .tooltip-text { | ||
visibility: visible; | visibility: visible; | ||
opacity: 1; | opacity: 1; | ||
} | } | ||
. | /* Hide the tooltip text when the wrapper loses focus */ | ||
.tooltip-wrapper:focus:not(:focus-visible) .tooltip-text { | |||
visibility: hidden; | visibility: hidden; | ||
opacity: 0; | opacity: 0; | ||