stickytoolbar.scss 445 B

12345678910111213141516171819
  1. // Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
  2. // For licensing, see LICENSE.md or http://ckeditor.com/license
  3. @include ck-editor {
  4. .ck-toolbar.ck-toolbar_sticky {
  5. @include ck-drop-shadow();
  6. position: fixed;
  7. top: 0;
  8. border: 1px solid ck-border-color();
  9. border-width: 0 0 1px;
  10. background: ck-color( 'foreground' );
  11. &.ck-toolbar_sticky_bottom-limit {
  12. top: auto;
  13. position: absolute;
  14. }
  15. }
  16. }