8,960
edits
No edit summary Tag: Reverted |
No edit summary Tag: Manual revert |
||
| Line 1: | Line 1: | ||
.tooltip-wrapper { | .tooltip-wrapper { | ||
position: relative; | position: relative; | ||
| Line 5: | Line 4: | ||
} | } | ||
.underline-hover { | .underline-hover { | ||
position: relative; | position: relative; | ||
| Line 12: | Line 10: | ||
cursor: pointer; /* Change the cursor to indicate clickable text */ | cursor: pointer; /* Change the cursor to indicate clickable text */ | ||
outline: none; /* Remove the outline when focused */ | outline: none; /* Remove the outline when focused */ | ||
} | |||
.underline-hover:hover, | |||
.underline-hover:focus { | |||
text-decoration: underline; | |||
} | } | ||
| Line 17: | Line 20: | ||
.tooltip-text { | .tooltip-text { | ||
visibility: hidden; | visibility: hidden; | ||
background-color: # | background-color: #918f8f; | ||
color: # | color: #000; | ||
text-align: center; | text-align: center; | ||
padding: 10px; | padding: 5px 10px; | ||
border-radius: 6px; | border-radius: 6px; | ||
/* Positioning and size */ | /* Positioning and size */ | ||
position: absolute; | position: absolute; | ||
z-index: | z-index: 100; /* Ensure it's on top of all objects */ | ||
top: 50%; /* Center vertically relative to the text */ | top: 50%; /* Center vertically relative to the text */ | ||
left: | left: 100%; /* Position to the right of the text */ | ||
transform: translateY(-50%); /* | transform: translateX(20px) translateY(-50%); /* Shift tooltip further to the right */ | ||
opacity: 0; | opacity: 0; | ||
transition: opacity 0.3s ease-in-out; | transition: opacity 0.3s ease-in-out; | ||