Closed JoeGrasso closed 9 years ago
Nevermind, I had bootstrap.css and that was what was messing it up.
Oh interesting, what about bootstrap.css
was messing it up? I imagine it's the tooltip
class clashing with Bootstrap
.
Thanks for opening the issue in any case, it's probably a good idea to give some more unique class names to avoid conflicts with global styles.
I deconstructed your repository to examine it in dev mode:
App works, although the tool tips are not showing up, although clearly working in code (hidden is replaced with visible).
Before mouseover: < div class="tooltip" style="position: absolute; z-index: 10; visibility: hidden; border: 1px solid grey; border-radius: 3px; text-align: center; padding: 8px 0px; width: 100px; color: rgb(255, 255, 255); top: 375px; left: 401px; background-color: rgb(0, 0, 0);">Relay (12)< /div>
On mouseover:
< div class="tooltip" style="position: absolute; z-index: 10; visibility: visible; border: 1px solid grey; border-radius: 3px; text-align: center; padding: 8px 0px; width: 100px; color: rgb(255, 255, 255); top: 375px; left: 401px; background-color: rgb(0, 0, 0);">Relay (12)< /div>
Any ideas?