| 1234567891011121314151617181920212223 |
- // Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
- // For licensing, see LICENSE.md or http://ckeditor.com/license
- /**
- * Resets an element, ignoring its children.
- */
- .ck-reset {
- // Do not include inheritable rules here.
- box-sizing: border-box;
- width: auto;
- height: auto;
- position: static;
- }
- /**
- * Resets an element AND its children.
- */
- .ck-reset_all {
- &, *, a, textarea {
- // The following must be identical to .ck-reset.
- @extend .ck-reset;
- }
- }
|