Results 18 comments of Rob Gregory

To clarify do you mean it should '_already_' be fixed or that you will fix it?

Thank you for the prompt response but unfortunately the fix only resolves the items that have been moved or resized. By default the grid items are still sitting at a...

Actually, ignore me. It was some left over debugging styles I had applied causing my issue. Your fix does resolvethe conflict with MDC Dialog. Thanks again for the prompt turn...

Playing with this further and the only thing that works for me is to reset the z-index to 'unset' ``` z-index: {item.drag.dragging || item.resize.resizing ? 1000 : 'unset'}; ``` otherwise...

The following page [shows the issue](https://www.mintymods.info/demo/#/views) with grid-items showing in front of the dialog content. Interestingly the first grid-item does not seem to have the issue? Depending on your screen...

Yes, very strange. I [updated](https://www.mintymods.info/demo/#/views) the scrim layer with the styles from your demo:- ``` .mdc-dialog, .mdc-dialog__scrim { position: fixed !important; /* Sit on top of the page content */...

I think you are right, it must have something to do with opening the `modal `from within the `grid-item`. Some styles I previously had, made it look like the modal...

> Try to open your modal outside of the container. The following does kind of resolve the issue although you can see the transition between the grid-items being in front...

> Okay, I think I found the problem, I will try to reproduce when I have free time. > [repl](https://svelte.dev/repl/2f021c2210904e60a0fb1d5702f15852?version=3.12.1) See line 36 Cool, most of the fixing comes from...

Perfect, Gonna steal this and tweak a little for my project. Thanks Guys