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
{{ message }}
This repository has been archived by the owner on Dec 19, 2024. It is now read-only.
iron-fit-behavior conflicts with app-header-layout
iron-fit-behavior assumes that the dropdown will be displayed on top of everything since it sets z-index: 103.
However app-header-layout sets the "header" as z-index 1 and "content" as z-index 0. So the resulting z-index of the dropdown inside the content is 0:103 which is less than 1:0, so the header hides the dropdown.
Expected outcome
Either:
The dropdown is on top of everything, including the app-header
The dropdown is located inside the content and not behind header.
Actual outcome
The dropdown is located with position: fixed;top:0 and is hidden behind app-header.
Description
iron-fit-behavior
conflicts withapp-header-layout
iron-fit-behavior
assumes that the dropdown will be displayed on top of everything since it sets z-index: 103.However
app-header-layout
sets the "header" as z-index 1 and "content" as z-index 0. So the resulting z-index of the dropdown inside the content is 0:103 which is less than 1:0, so the header hides the dropdown.Expected outcome
Either:
Actual outcome
The dropdown is located with
position: fixed;top:0
and is hidden behind app-header.Live Demo
https://jsbin.com/desunocezo/edit?html,css,output
Steps to reproduce
Put
paper-dropdown-menu
insideapp-header-layout
Browsers Affected
Didn't check others
The text was updated successfully, but these errors were encountered: