-
Notifications
You must be signed in to change notification settings - Fork 18
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: