_rounded.css 452 B

12345678910111213141516171819
  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. * Implements rounded corner interface for .ck-rounded-corners class.
  7. *
  8. * @see $ck-border-radius
  9. */
  10. @define-mixin ck-rounded-corners {
  11. border-radius: 0;
  12. @nest .ck-rounded-corners &,
  13. &.ck-rounded-corners {
  14. border-radius: var(--ck-border-radius);
  15. @mixin-content;
  16. }
  17. }