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
When you have a md-select inside a md-dialog, the select options aren't displayed because z-index
<md-dialog> <md-dialog-title>Lorem</md-dialog-title> <md-dialog-content> <md-field :class="v.lorem"> <label for="lorem">Tipo</label> <md-select v-model="d.lorem" name="lorem" id="lorem"> <md-option value="a">A</md-option> <md-option value="b">B</md-option> <md-option value="c">C</md-option> <md-option value="d">D</md-option> </md-select> </md-field> </md-dialog-content> </md-dialog>
Safari, Chrome, Chromium, Firefox
The md-option muy be at front, not in the back from the md-dialog
md-option is imposible to be selected because it appears in the back of the md-dialog
.md-dialog { z-index: 60 !important; }
The text was updated successfully, but these errors were encountered:
Duplicated: #1149
This is fixed in PR after new update you can remove your temp solution: #1264
Sorry, something went wrong.
No branches or pull requests
When you have a md-select inside a md-dialog, the select options aren't displayed because z-index
Steps to reproduce
<md-dialog> <md-dialog-title>Lorem</md-dialog-title> <md-dialog-content> <md-field :class="v.lorem"> <label for="lorem">Tipo</label> <md-select v-model="d.lorem" name="lorem" id="lorem"> <md-option value="a">A</md-option> <md-option value="b">B</md-option> <md-option value="c">C</md-option> <md-option value="d">D</md-option> </md-select> </md-field> </md-dialog-content> </md-dialog>
Which browser?
Safari, Chrome, Chromium, Firefox
What is expected?
The md-option muy be at front, not in the back from the md-dialog
What is actually happening?
md-option is imposible to be selected because it appears in the back of the md-dialog
Temporal solution
.md-dialog {
z-index: 60 !important;
}
The text was updated successfully, but these errors were encountered: