The tooltip_div is faded in by a mouseover event and faded out by mouseout on a node or its text. I've noticed that while the div is hidden by setting opacity:0 it still blocks mouse events from happening on nodes it previously covered. Only by setting visibility:hidden the div will stop blocking mouse events on underlying nodes.
I've made too much specific changes in my fork to be able to create a pull request (Also I'm not too much of a git expert). But here are the changes I made to circumvent this: https://github.com/unverbuggt/mkdocs-familytree-example/commit/ea56f2e3f74984094f845d7f44705829480ea82b
The tooltip_div is faded in by a
mouseover
event and faded out bymouseout
on a node or its text. I've noticed that while the div is hidden by settingopacity:0
it still blocks mouse events from happening on nodes it previously covered. Only by settingvisibility:hidden
the div will stop blocking mouse events on underlying nodes. I've made too much specific changes in my fork to be able to create a pull request (Also I'm not too much of a git expert). But here are the changes I made to circumvent this: https://github.com/unverbuggt/mkdocs-familytree-example/commit/ea56f2e3f74984094f845d7f44705829480ea82b