tableselection.css 606 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  4. */
  5. :root {
  6. --ck-table-selected-cell-background: hsl(210, 92%, 90%);
  7. }
  8. .ck.ck-editor__editable .table table {
  9. & td.ck-editor__editable_selected,
  10. & th.ck-editor__editable_selected {
  11. background-color: var(--ck-table-selected-cell-background) !important;
  12. caret-color: transparent;
  13. outline: unset;
  14. box-shadow: unset;
  15. & ::selection {
  16. background-color: transparent;
  17. }
  18. & .ck-widget_selected {
  19. outline: unset;
  20. }
  21. }
  22. }