Description
Following the amazing work from #19348, I encountered a small issue: the block mover isn't clickable or draggable on blocks that are set to full-width, e.g. the image, gallery, cover, group, and columns block. The mover appears and renders the correct contextual state, but just isn't clickable.
It appears to be a stacking order issue; I briefly tested manually adding a positive z-index to any of the container elements (e.g. .block-editor-block-toolbar__mover-switcher-container), and this allowed the mover to be clickable + draggable.

To reproduce
Environment
Yes same here
@jasmussen
CC: @youknowriad do you have any insights on how to address this?
Nothing in particular, seems more like a z-index issue. I also wonder why it's just in full width, so maybe more a CSS to remove somewhere.
Nothing in particular, seems more like a z-index issue. I also wonder why it's just in full width, so maybe more a CSS to remove somewhere.
Yeah,
@media (min-width: 782px) {
.block-editor-block-toolbar.has-responsive-movers
.block-editor-block-toolbar__mover-trigger-container {
z-index: inherit;
}
}
seems to fix this issue.
@lgersman I'm not sure I understand that fix yet but please consider opening a PR :)
I created a fix in #21097.