_rounded.scss 483 B

12345678910111213141516171819202122
  1. // Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
  2. // For licensing, see LICENSE.md or http://ckeditor.com/license
  3. /**
  4. * Default border-radius value.
  5. *
  6. * @access public
  7. */
  8. $ck-border-radius: 2px !default;
  9. /**
  10. * Implements rounded corner interface for .ck-rounded-corners class.
  11. *
  12. * @access public
  13. * @see $ck-border-radius
  14. */
  15. @mixin ck-rounded-corners() {
  16. &.ck-rounded-corners,
  17. .ck-rounded-corners & {
  18. border-radius: $ck-border-radius;
  19. }
  20. }