Skip to content

Commit

Permalink
fix: Author select overflows in IE11 (#9595)
Browse files Browse the repository at this point in the history
Fix #3432
  • Loading branch information
tofumatt authored Sep 4, 2018
1 parent 82442fe commit ef25165
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions edit-post/components/sidebar/post-author/style.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
.editor-post-author__select {
margin: -5px 0;

// Set the width of the author select box in IE11 to prevent it overflowing
// outside of the container because of IE11 flexbox bugs.
// We reset it to `width: auto;` for non-IE11 browsers.
width: 100%;
@supports (position: sticky) {
width: auto;
}
}

0 comments on commit ef25165

Please sign in to comment.