_shadow.css 612 B

123456789101112131415161718192021
  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. :root {
  6. /**
  7. * A visual style of element's inner shadow (i.e. input).
  8. */
  9. --ck-inner-shadow: 2px 2px 3px var(--ck-color-shadow-inner) inset;
  10. /**
  11. * A visual style of element's drop shadow (i.e. panel).
  12. */
  13. --ck-drop-shadow: 0 1px 2px 1px var(--ck-color-shadow-drop);
  14. /**
  15. * A visual style of element's active shadow (i.e. comment or suggestion).
  16. */
  17. --ck-drop-shadow-active: 0 3px 6px 1px var(--ck-color-shadow-drop-active);
  18. }