8,960
edits
No edit summary |
No edit summary |
||
| Line 34: | Line 34: | ||
} | } | ||
/* Show the tooltip text when the span is focused */ | /* Show the tooltip text when the span is focused and hide when clicked again */ | ||
.underline-hover:focus .tooltip-text { | .underline-hover:focus-within .tooltip-text { | ||
visibility: visible; | visibility: visible; | ||
opacity: 1; | opacity: 1; | ||
} | } | ||
.underline-hover:focus:not(:focus-visible) .tooltip-text { | |||
.underline-hover .tooltip-text | visibility: hidden; | ||
visibility: | opacity: 0; | ||
opacity: | |||
} | } | ||