Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Merge pull request #282 from ckeditor/i/6446
Browse files Browse the repository at this point in the history
Other: Introduced the table cell overlay to improve the rendering of multiple–cell selections and bring compatibility with styled table cells. Closes ckeditor/ckeditor5#6446.
  • Loading branch information
oleq authored Apr 17, 2020
2 parents 06f6ca5 + afbf1ff commit 6a1c7b9
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions theme/ckeditor5-table/tableselection.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,31 @@
*/

:root {
--ck-table-selected-cell-background: hsl(210, 92%, 90%);
--ck-table-selected-cell-background: hsla(208, 90%, 80%, .3);
}

.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;

position: relative;
caret-color: transparent;
outline: unset;
box-shadow: unset;

& ::selection {
/* https://github.com/ckeditor/ckeditor5/issues/6446 */
&:after {
content: '';
pointer-events: none;
background-color: var(--ck-table-selected-cell-background);
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}

& ::selection,
&:focus {
background-color: transparent;
}

Expand All @@ -25,4 +37,3 @@
}
}
}

0 comments on commit 6a1c7b9

Please sign in to comment.