Loading with backdrop in modal

Thought this might help some people out.

I have a modal that calls a loading widget which calls the backdrop. However the backdrop does not darken out the modal, only the view. The view gets double backdrop, but the modal still looks and is active.
A quick fix was just to add this to my style.css:

.backdrop {
z-index: 11;
}

BEFORE:

AFTER:

2 Likes

Awesome, thanks for sharing this!