8
0

classiceditor.css 567 B

12345678910111213141516
  1. /*
  2. * Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  4. */
  5. .ck.ck-editor {
  6. /* All the elements within `.ck-editor` are positioned relatively to it.
  7. If any element needs to be positioned with respect to the <body>, etc.,
  8. it must land outside of the `.ck-editor` in DOM. */
  9. position: relative;
  10. & .ck-editor__top .ck-sticky-panel .ck-toolbar {
  11. /* https://github.com/ckeditor/ckeditor5-editor-classic/issues/62 */
  12. z-index: var(--ck-z-modal);
  13. }
  14. }