Skip to content

Commit

Permalink
Merge pull request #7893 from ckeditor/i/7874
Browse files Browse the repository at this point in the history
Fix (ui): Dropdown panels from the editor's main toolbar should always float above the contextual balloons from the editor's content. Closes #7874.
  • Loading branch information
oleq authored Aug 21, 2020
2 parents 57188cb + ca3788d commit 57d3f02
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions packages/ckeditor5-ui/theme/components/dropdown/dropdown.css
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,11 @@
}
}
}

/*
* Toolbar dropdown panels should be always above the UI (eg. other dropdown panels) from the editor's content.
* See https://github.com/ckeditor/ckeditor5/issues/7874
*/
.ck.ck-toolbar .ck-dropdown__panel {
z-index: calc( var(--ck-z-modal) + 1 );
}

0 comments on commit 57d3f02

Please sign in to comment.