We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In 1.0.0-beta-4 the md-autocomplete menu appears behind the md-dialog.
md-autocomplete
md-dialog
Workaround is to style the dialog with z-index: 50.
z-index: 50
The text was updated successfully, but these errors were encountered:
Duplicated #1149
Sorry, something went wrong.
Hey, still facing this issue, using 1.0.0-beta-10.2, z-index fix not working for me, md-autocomplete options not displayed in dialog, any solutions?
Same issue for me on 1.0.0-beta-11, using autocomplete inside md-dialog-content. I was able to fix it by doing
<style lang="scss"> .md-menu-content { z-index: 11; } </style>
Note the scss is not scoped since the dropdown is inserted in the body
Thanks Rapol, just picked this issue up also just now, your advise helped.
No branches or pull requests
In 1.0.0-beta-4 the
md-autocomplete
menu appears behind themd-dialog
.Workaround is to style the dialog with
z-index: 50
.The text was updated successfully, but these errors were encountered: