Autres actions
Infobulles de /tg/ |
Test couleurs |
||
| Ligne 18 : | Ligne 18 : | ||
transition: all 0.2s; | transition: all 0.2s; | ||
border: 1px solid #aaa; | border: 1px solid #aaa; | ||
background-color: | background-color: var(--border-color-base); | ||
} | } | ||
Version du 30 mars 2025 à 17:00
/* Le CSS placé ici sera appliqué à tous les habillages. */
/* Infobulles*/
.tooltip{
position: relative;
}
.tooltiptext {
position: absolute;
display: block;
z-index: 2;
width: 250px;
padding: 10px;
visibility: hidden;
opacity: 0;
white-space: normal;
text-align: left;
transition: all 0.2s;
border: 1px solid #aaa;
background-color: var(--border-color-base);
}
.tooltip:hover>.tooltiptext {
visibility: visible;
opacity: 1;
}