stickypanel.scss 371 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_sticky {
  6. z-index: ck-z( 'modal' );
  7. position: fixed;
  8. top: 0;
  9. &.ck-sticky-panel_sticky_bottom-limit {
  10. top: auto;
  11. position: absolute;
  12. }
  13. }
  14. }
  15. }