| 1234567891011121314151617181920212223242526 |
- /*
- * Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- .ck-editor__editable .todo-list__checkmark {
- display: inline-block;
- position: relative;
- &::before {
- display: block;
- position: absolute;
- box-sizing: border-box;
- }
- &::after {
- display: block;
- position: absolute;
- box-sizing: content-box;
- pointer-events: none;
- }
- & input[type='checkbox'] {
- display: block;
- }
- }
|