Since Firefox update to 52 (64bit) JS-Tooltips no longer work properly. Take a look at Semantic Ui Docs page to see the issue. -> https://semantic-ui.com/modules/popup.html#tooltip
The tooltips disappear immediately after they appear.
Same problem here, just wanted to open an issue-ticket.
Firefox 52 (32 Bit): tooltip expands and hides immediately.
Firefox 47 (32 Bit) or IE 11: tooltip expands and stays visible.
Confirmed on Ubuntu 16.10 (x86_64) with Firefox 52
You probably already have this figured out, but explicitly specifying the "transform" property for the transition instead of saying "all" fixes the issue.
[data-tooltip]:before {
opacity:0;
-webkit-transform:rotate(45deg) scale(0)!important;
transform:rotate(45deg) scale(0)!important;
-webkit-transform-origin:center top;
transform-origin:center top;
-webkit-transition:transform .1s ease;
transition:transform .1s ease
}
[data-tooltip]:after {
opacity:1;
-webkit-transform-origin:center bottom;
transform-origin:center bottom;
-webkit-transition:transform .1s ease;
transition:transform .1s ease
}
Giwayume, great, it works! Thank you!
Just tested in 52.0.2 for Windows 32bit and was unable to reproduce.
Perhaps this was fixed in one of the 2 patches so far? Can anyone confirm
@jlukic Can confirm that 52.0.2 fixed the no-JS tooltips. There’s another issue now: when a tooltip is shown, in some cases it “expands” by 1px either vertically, or horizontally, here’s an example—that’s 32-bit Firefox on Windows 10. Shall we track it separately?
I have 52.0.1 on a VM and it is broken. I have 52.0.2 on my Windows host machine and it works there. I think that this is indeed just a browser issue which FF already fixed in a patch.
I'm testing it out now. Hopefully I can repro
I think this is fixed by FF closing issue
Most helpful comment
You probably already have this figured out, but explicitly specifying the "transform" property for the transition instead of saying "all" fixes the issue.