| 123456789101112131415161718192021 |
- /*
- * Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- /* Allow using Lark's ck-box-shadow() mixin. */
- @import '@ckeditor/ckeditor5-theme-lark/theme/mixins/_shadow.css';
- /* The shadow should be 10% brighter than the toolbar background. */
- :root {
- --ck-shadow-color: hsl(280, 2%, 39%);
- }
- .ck-editor-toolbar {
- & .ck-button.ck-dropdown__button {
- /* Apply a dedicated inner box-shadow to the dropdown button. */
- @mixin ck-box-shadow
- 0 0 0 1px var(--ck-shadow-color) inset,
- 0 0 5px var(--ck-shadow-color) inset;
- }
- }
|