Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Merge pull request #103 from ckeditor/i/6220
Browse files Browse the repository at this point in the history
Fix: The main toolbar should always stay on top of contextual UI elements. Closes ckeditor/ckeditor5#6220.
  • Loading branch information
Reinmar committed Feb 12, 2020
2 parents c3e2f5e + 51ab8e2 commit bf805f2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion theme/classiceditor.css
Expand Up @@ -11,6 +11,9 @@

& .ck-editor__top .ck-sticky-panel .ck-toolbar {
/* https://github.com/ckeditor/ckeditor5-editor-classic/issues/62 */
z-index: var(--ck-z-modal);
/* https://github.com/ckeditor/ckeditor5/issues/6220 */
z-index: calc(var(--ck-z-modal) + 1);

position: relative;
}
}

0 comments on commit bf805f2

Please sign in to comment.