stickypanel.css 406 B

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