You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Put an iron-list element in the page and associate multiple items.
Add an element with an opaque background and a corresponding paper-tooltip to the iron-list/template
Open the browser and hover over the first element in the iron-list to show the tooltip
Change the CSS to set the element background transparent
Repeat step 3
Browsers Affected
Chrome
Firefox
[?] Safari 9
[?] Safari 8
[?] Safari 7
[?] Edge
IE 11
[?] IE 10
To resolve the issue locally, I've experimented with moving the paper-tooltip element or its inner div to ownerDocument.body or an appropriate surrogate parent element and adjusting the position in updatePosition, then moving it back in _onAnimationFinish - with no success, as the tree can not be changed without breaking styles and event listeners. Another attempt, forcing higher z-index of all stacking context root ancestors, also causes ugly artifacts and breaks carefully layered pages.
The text was updated successfully, but these errors were encountered:
Description
paper-tooltip is not visible for elements in an iron-list
Expected outcome
paper-tooltip appears above sibling stacking contexts
Actual outcome
paper-tooltip invisible below sibling stacking contexts
Live Demo
https://jsfiddle.net/pt6crtfb/3/
Steps to reproduce
iron-list
element in the page and associate multiple items.Browsers Affected
To resolve the issue locally, I've experimented with moving the paper-tooltip element or its inner div to ownerDocument.body or an appropriate surrogate parent element and adjusting the position in updatePosition, then moving it back in _onAnimationFinish - with no success, as the tree can not be changed without breaking styles and event listeners. Another attempt, forcing higher z-index of all stacking context root ancestors, also causes ugly artifacts and breaks carefully layered pages.
The text was updated successfully, but these errors were encountered: