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 Oct 8, 2021. It is now read-only.
When i use Android 4.1 with Chrome to test the page with select box on a fixed position footer, the select box just has no response when i tap the screen and toggle the visibility of the fixed footer, here is the test page:
The cause of it is exactly the same as #4663. On Chrome for Android overflow: hidden; in a fixed toolbar makes buttons unresponsive when you scroll the page.
In this case we use overflow: hidden; for .ui-select .ui-btn. We have to see if we can do without that without causing other issues.
We also have to test if this Chrome bug is causing issues when using ui-grid or ui-bar in fixed toolbars because those classes have overflow set to hidden as well.
After override the overflow: hidden; for .ui-select .ui-btn to overflow: visible !important;, it does fix the problem when the page first load, but after tap the screen and toggle the toolbar, the select box become no response, finally i found that if you also override the -webkit-transform: translateY(0); to -webkit-transform: inherit !important; for .slideup.in, it work for the issue.
When i use Android 4.1 with Chrome to test the page with select box on a fixed position footer, the select box just has no response when i tap the screen and toggle the visibility of the fixed footer, here is the test page:
http://jsbin.com/iyenuv/1/
I also test it with the original browser and firefox on Android 4.1, which has no problem, also the device i use to test is Galaxy Nexus.
The text was updated successfully, but these errors were encountered: