Why does tooltip or spinner doesn't show up on top of dialog? Tried varying z-Indexes.
Can any element be placed on top of dialog?
They can be placed in a dialog but cannot overlay it. That's the whole purpose of the <dialog> element
for eg. -
If action button of dialog triggers an event, we are loading a spinner by the time we receive some resposne. This spinner is getting hidden behind the dialog.
The spinner should go inside of the dialog. Anything outside is overlayed by the backdrop as per the specification on HTML Dialog Elements (and MD dialogs to boot.)
Most helpful comment
The spinner should go inside of the dialog. Anything outside is overlayed by the backdrop as per the specification on HTML Dialog Elements (and MD dialogs to boot.)