Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: Ensure popover modals in block editor display above metaboxes
Problem: When metaboxes are attached to the bottom of the screen in the WordPress block editor, popover modals (e.g., link editing popovers) within the `.editor-visual-editor` element are incorrectly rendered beneath these metaboxes. This issue makes the popovers partially or fully obscured, leading to usability problems, particularly when editing links within blocks. Solution: Added a `z-index: 9;` to the `.editor-visual-editor` CSS rule. This change ensures that the `.editor-visual-editor` element and its child popovers are displayed above any metaboxes, preventing them from being obscured and maintaining their usability. Affected Files: - Updated the relevant SCSS file(s) to include the `z-index` property. This commit resolves the issue where popover modals are not fully visible due to being rendered underneath subsequent containers. WordPress#64957
- Loading branch information