stickytoolbar.scss 327 B

12345678910111213141516
  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-toolbar {
  5. &.ck-toolbar_sticky {
  6. position: fixed;
  7. top: 0;
  8. &.ck-toolbar_sticky_bottom-limit {
  9. top: auto;
  10. position: absolute;
  11. }
  12. }
  13. }
  14. }