| 123456789101112131415161718192021 |
- // 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/helpers/_colors.scss';
- @import '~@ckeditor/ckeditor5-theme-lark/theme/helpers/_spacing.scss';
- @import '~@ckeditor/ckeditor5-theme-lark/theme/helpers/_fonts.scss';
- @include ck-color-add( (
- 'image-caption-background': $ck-color-foreground,
- 'image-caption-text': $ck-color-text
- ) );
- .ck-editor__editable {
- .image > figcaption {
- color: ck-color( 'image-caption-text' );
- background-color: ck-color( 'image-caption-background' );
- padding: ck-spacing();
- font-size: ck-font-size( -1 );
- outline-offset: -1px;
- }
- }
|