Skip to content

Commit

Permalink
Fix post editor top toolbar with custom fields in Safari (#53688)
Browse files Browse the repository at this point in the history
  • Loading branch information
draganescu authored and ramonjd committed Aug 30, 2023
1 parent fbd625f commit f4dca7a
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,12 @@ html.interface-interface-skeleton__html-container {
// to "bleed" through the header.
// See https://github.com/WordPress/gutenberg/issues/32631
z-index: z-index(".interface-interface-skeleton__content");

// On Safari the z-index is not respected when the element is fixed.
// Setting it to auto fixes the problem
@include break-medium() {
z-index: auto;
}
}

.interface-interface-skeleton__secondary-sidebar,
Expand Down

0 comments on commit f4dca7a

Please sign in to comment.