list.css 503 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  4. */
  5. .ck-editor__editable .todo-list__checkmark {
  6. display: inline-block;
  7. position: relative;
  8. &::before {
  9. display: block;
  10. position: absolute;
  11. box-sizing: border-box;
  12. }
  13. &::after {
  14. display: block;
  15. position: absolute;
  16. box-sizing: content-box;
  17. pointer-events: none;
  18. }
  19. & input[type='checkbox'] {
  20. display: block;
  21. }
  22. }