| 12345678910111213141516171819202122232425262728 |
- /*
- * Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- :root {
- --ck-table-selected-cell-background: hsl(210, 92%, 90%);
- }
- .ck.ck-editor__editable .table table {
- & td.ck-editor__editable_selected,
- & th.ck-editor__editable_selected {
- background-color: var(--ck-table-selected-cell-background) !important;
- caret-color: transparent;
- outline: unset;
- box-shadow: unset;
- & ::selection {
- background-color: transparent;
- }
- & .ck-widget_selected {
- outline: unset;
- }
- }
- }
|