reset.scss 489 B

1234567891011121314151617181920212223
  1. // Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
  2. // For licensing, see LICENSE.md or http://ckeditor.com/license
  3. /**
  4. * Resets an element, ignoring its children.
  5. */
  6. .ck-reset {
  7. // Do not include inheritable rules here.
  8. box-sizing: border-box;
  9. width: auto;
  10. height: auto;
  11. position: static;
  12. }
  13. /**
  14. * Resets an element AND its children.
  15. */
  16. .ck-reset_all {
  17. &, *, a, textarea {
  18. // The following must be identical to .ck-reset.
  19. @extend .ck-reset;
  20. }
  21. }