Positioning broken after upgrade 3.0.10 -> 3.0.13
See original GitHub issueAfter I upgraded the library to 3.0.13 I noticed tooltip is no longer pointing to desired place. It has some kind of constant position shift.
Looking at the release notes I guess that
Add support to those elements whose parent elements or itself has been applied with transform
is responsible for that. I use react-list and it uses CSS transform: translate
property to scroll a list. Each item of the list contains some elements that have tooltip attached. When I disable transform
property in object inspector the list becomes broken but tooltip is displayed correctly.
Issue Analytics
- State:
- Created 7 years ago
- Reactions:1
- Comments:5
Top Results From Across the Web
Changelog - Changes since 3.3.9-RC1 - phpBB
[PHPBB3-16964] - Update composer and composer dependencies to latest versions ... Fix placement of event viewforum_body_topic_author_username_append ...
Read more >shaka-player/CHANGELOG.md at main - GitHub
Fix captions not working after a period transition on live DASH streams ... Fix caption positioning and sizing when the container resizes.
Read more >Changelog Single - V3 – Semplice
This page lists all changes made to the Semplice theme from the inital release (version 1.0) until now. Please make sure to read...
Read more >Release Notes for Altium Vault - Documentation
Data Management - Fixed bug where commit to some of the managed projects was executed very slow (initial commit after update will fix...
Read more >Migration Assistant - Craft Plugin Store
fixed issue with Neo blocks having empty Field Layouts after field migrations ... fixed issue with fieldHandle throwing error during migration; updated user ......
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I add a new attribute
countTransform
whose default value istrue
. For your case, you should set it tofalse
so that react-tooltip won’t count react-list’s transform into calculation.You can use this attribute since
3.1.0
Great thanks! It works