| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- // Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
- // For licensing, see LICENSE.md or http://ckeditor.com/license
- @import '~@ckeditor/ckeditor5-theme-lark/theme/theme.scss';
- .ck-editor {
- // All the elements within `.ck-editor` are positioned relatively to it.
- // If any element needs to be positioned with respect to the <body>, etc.,
- // it must land outside of the `.ck-editor` in DOM.
- position: relative;
- }
- .ck-editor__top .ck-sticky-panel {
- .ck-toolbar {
- @include ck-rounded-corners {
- border-bottom-left-radius: 0;
- border-bottom-right-radius: 0;
- }
- // https://github.com/ckeditor/ckeditor5-editor-classic/issues/62
- z-index: ck-z( 'modal' );
- background: ck-color( 'editor-toolbar-background' );
- border-bottom-width: 0;
- }
- .ck-sticky-panel__content_sticky {
- .ck-toolbar {
- border-bottom-width: 1px;
- @include ck-rounded-corners {
- border-radius: 0;
- }
- }
- }
- }
- .ck-editor__editable {
- @include ck-rounded-corners {
- border-top-left-radius: 0;
- border-top-right-radius: 0;
- };
- border: 1px solid ck-color( 'editor-border' );
- }
|