| 12345678910111213141516171819202122 |
- /*
- * Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- @import "@ckeditor/ckeditor5-theme-lark/theme/mixins/_focus.css";
- @import "@ckeditor/ckeditor5-theme-lark/theme/mixins/_shadow.css";
- figure {
- background-color: hsl(0, 0%, 95.3%);
- padding: 10px;
- & figcaption {
- background: hsl(0, 0%, 100%);
- outline: none;
- &.focused {
- @mixin ck-focus-ring;
- @mixin ck-box-shadow var(--ck-inner-shadow);
- }
- }
- }
|