UNPKG

@ckeditor/ckeditor5-theme-lark

Version:

A bright theme for CKEditor 5.

19 lines (16 loc) 469 B
/* * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options */ /** * A helper to combine multiple shadows. */ @define-mixin ck-box-shadow $shadowA, $shadowB: 0 0 { box-shadow: $shadowA, $shadowB; } /** * Gives an element a drop shadow so it looks like a floating panel. */ @define-mixin ck-drop-shadow { @mixin ck-box-shadow var(--ck-drop-shadow); }