8
0

stickypanel.css 371 B

12345678910111213141516171819
  1. /*
  2. * Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md.
  4. */
  5. .ck-editor {
  6. & .ck-sticky-panel {
  7. & .ck-sticky-panel__content_sticky {
  8. z-index: var(--ck-z-modal); /* #315 */
  9. position: fixed;
  10. top: 0;
  11. }
  12. & .ck-sticky-panel__content_sticky_bottom-limit {
  13. top: auto;
  14. position: absolute;
  15. }
  16. }
  17. }