Hello, I'm trying to improve a character sheet (The One Ring / L'Anneau Unique (french)" by adding hover tips that would be displayed when the player move his mouse over some character sheets fields. For example, a mouse over a Competence field would display a short definition of that competence. That hover functionality implementation was already done in the existing character sheet but it's not working fine : - it works on some fields but not on some others (the tip is displayed for some fields but not for others) - there is a "transition display" property that allows to have the tips displayed after time (for example : after 3 seconds) rather than immediately. The default value in the character sheet is "display 0s" (so it appears immediatement when the mouse is over) but it keeps going immediatly even if i put values like "display 3s". That property never works whatever i do. HTML File : <a href="https://github.com/Roll20/roll20-character-sheets" rel="nofollow">https://github.com/Roll20/roll20-character-sheets</a>... - Working fine (for displaying the tip when the mouse is over) <label>Corps</label>
<div class="sheet-hover-info">À compléter</div>
- Not working fine (not displaying the tip when the mouse is over) <label>Présence</label>
<div class="sheet-hover-info">À compléter</div> Note : This "Présence" label is also modified by other css code in order to have it underlined when click-on. I believe this is the mix of the several css lines that don't fit together but i'm not good enough in css to find the solution by myself. CSS File : <a href="https://github.com/Roll20/roll20-character-sheets" rel="nofollow">https://github.com/Roll20/roll20-character-sheets</a>... I see the following css code that is used : .sheet-hover-info {
position: absolute;
background: white;
z-index: 10;
padding: 20px;
width: 200px;
display: none;
opacity: 0;
box-shadow: 0 3px 15px rgba(0,0,0,.1);
transition: display 0s ease-in-out, opacity 1s ease-in-out 2s;
} label:hover + .sheet-hover-info { display: block; opacity: 1; transition: display 0s ease-in-out, opacity 1s ease-in-out 2s; } Note : there is more css code that might be relevant to that hover functionality. Thanks in advance for your advices.