8
0

_shadow.css 465 B

123456789101112131415161718
  1. /*
  2. * Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  4. */
  5. /**
  6. * A helper to combine multiple shadows.
  7. */
  8. @define-mixin ck-box-shadow $shadowA, $shadowB: 0 0 {
  9. box-shadow: $shadowA, $shadowB;
  10. }
  11. /**
  12. * Gives an element a drop shadow so it looks like a floating panel.
  13. */
  14. @define-mixin ck-drop-shadow {
  15. @mixin ck-box-shadow var(--ck-drop-shadow);
  16. }