Having difficulty getting tipsy tooltips to display correctly next to the cursor in Firefox for my svg elements generated with d3. I discovered a patch that resolves most of the issues, which I found through this helpful answer about Tipsy tooltip positioning on d3 in Firefox and IE.
One issue I've noticed is that when using a CSS rule to create rings around specific SVG elements:
.t {
cursor: default;
stroke: #000000 !important;
stroke-opacity: 0.7;
stroke-width: 7px;
}
In Firefox version 28, tipsy places the tooltip at the top left of these elements. Is there an easy workaround or modification I can make to tipsy? Or perhaps alternative CSS that achieves the same effect?