Blazored / Modal

A powerful and customizable modal implementation for Blazor applications.
https://blazored.github.io/Modal/
MIT License
786 stars 186 forks source link

Hides JSInterop Drop-Down #250

Closed jkears closed 4 years ago

jkears commented 4 years ago

In Blazor server while attempting to include CodeEffects Rules Editor within a Blazored Modal and when I select the CodeEffects Rules Editor drop-down it renders underneath the modal.

image

When this is not wrapped in a Blazored Modal based component this works.

Can I control the z-index of Blazored Modal if this is the reason why the CodeEffects Rules Editor is showing up under the dialog view.

chrissainty commented 4 years ago

Yes, you can modify the z-index by overriding .blazored-modal-overlay and .blazored-modal and changing their z-index to a different number.

jkears commented 4 years ago

Many thanks Chris...

I actually had to change the z-index of the ceMenu class on CodeEffects = 200 works for my needs.

image