| 123456789101112131415161718192021222324252627 |
- // 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/_shadow.scss';
- @import '~@ckeditor/ckeditor5-theme-lark/theme/helpers/_states.scss';
- .ck-widget.image {
- figcaption {
- background-color: ck-color( 'foreground' );
- padding: 10px;
- // The `:focus` styles is applied before `.focused` class inside editables.
- // These styles show different border for a blink of an eye.
- &:focus {
- outline: none;
- box-shadow: none;
- }
- &.focused {
- @include ck-focus-ring( 'outline' );
- @include ck-box-shadow( $ck-inner-shadow );
- background-color: ck-color( 'background' );;
- }
- }
- }
|