| 12345678910111213141516171819202122 |
- /*
- * Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- @import "@ckeditor/ckeditor5-theme-lark/theme/mixins/_focus.css";
- @import "@ckeditor/ckeditor5-theme-lark/theme/mixins/_shadow.css";
- figure {
- background-color: #f3f3f3;
- padding: 10px;
- & figcaption {
- background: white;
- outline: none;
- &.focused {
- @mixin ck-focus-ring;
- @mixin ck-box-shadow var(--ck-inner-shadow);
- }
- }
- }
|