-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Inline popover hides behind metabox #62998
Comments
After a bit of research, I found that this problem might be solved by applying |
Great catch Aki! Everything you’ve noted is accurate from my testing. As for how to resolve it the way you mentioned works. I thought of and experimented with another way: .edit-post-layout.has-metaboxes .edit-post-visual-editor {
z-index: 1;
} That selector is already in use and we could add the z-index rule to it: gutenberg/packages/edit-post/src/components/layout/style.scss Lines 1 to 4 in 9bfeea1
To me it still makes sense to keep the |
Description
When meta boxes are enabled, if you try to highlight text, for example in the last paragraph block, the popover will be hidden behind the meta box.
This problem may be related to #62681. Disabling
isolation:isolate
, which was added in #62681, will resolve this problem.Step-by-step reproduction instructions
Screenshots, screen recording, code snippet
dc1351052563a7031f5cb1de3e263ba0.mp4
Environment info
No response
Please confirm that you have searched existing issues in the repo.
Yes
Please confirm that you have tested with all plugins deactivated except Gutenberg.
Yes
The text was updated successfully, but these errors were encountered: