8
0

stickypanel.scss 364 B

1234567891011121314151617
  1. // Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
  2. // For licensing, see LICENSE.md or http://ckeditor.com/license
  3. @include ck-editor {
  4. .ck-sticky-panel {
  5. .ck-sticky-panel__content_sticky {
  6. z-index: ck-z( 'modal' ); // #315
  7. position: fixed;
  8. top: 0;
  9. &_bottom-limit {
  10. top: auto;
  11. position: absolute;
  12. }
  13. }
  14. }
  15. }