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 was archived by the owner on Sep 5, 2024. It is now read-only.
using a md-select with a $modal() created using angular/bootstrap doesn't work due to the z-indexes of the various components.
Two possible solutions might be
Carry over the class attributes of md-select to the md-select container. This way one can create a .modal-contained-select and override the z-index for whatever modal() framework they are using. Without this option one needs to override the values for md-select-menu-container and click-catcher globally.
Can md-select walk up its parents and calculate the max() of the z-index and set the same onto itself and the click-catcher , in the postLink fn ? Directives aren't a bad place to do this though I would personally prefer a CSS option.