| 12345678910111213141516171819 |
- /*
- * Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- /**
- * Implements rounded corner interface for .ck-rounded-corners class.
- *
- * @see $ck-border-radius
- */
- @define-mixin ck-rounded-corners {
- border-radius: 0;
- @nest .ck-rounded-corners &,
- &.ck-rounded-corners {
- border-radius: var(--ck-border-radius);
- @mixin-content;
- }
- }
|