-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Listbox overflow clipped on iOS #72
Comments
is someone working on that? |
Same issue here, found on Home Assistant. |
Is anyone working on this? |
This is similar to #73
That mixin sets A stacking context will trap all content within it, e.g. see this example http://jsbin.com/kuboqa/1/edit?html,output This is not really fixable as it's a composition problem, sorry :/ One way could be to reset <!-- my-element template -->
<style>
paper-dialog-scrollable[no-overflow-scrolling] {
--paper-dialog-scrollable: {
-webkit-overflow-scrolling: auto
};
}
</style>
<paper-dialog-scrollable no-overflow-scrolling$="[[_dropdownOpened]]">
<paper-dropdown-menu opened="{{_dropdownOpened}}"> |
Seems to be fixed in home assitant |
Description
Using
paper-dropdown-menu
in a dialog withpaper-dialog-scrollable
causes the listbox to be clipped on iOS. The issue is only present whenpaper-dialog-scrollable
is used.Expected outcome
The listbox overflow should be visible like it is on other devices.
Actual outcome
The overflow is clipped.
Live Demo
https://jsbin.com/qoqalurexa/1/edit?html,console,output
Steps to reproduce
See demo.
Browsers Affected
The text was updated successfully, but these errors were encountered: