Browse Source

Disabled pointer-events on the selected table cell overlay to stay on the safe side.

Aleksander Nowodzinski 5 years ago
parent
commit
6b55eab3c6

+ 2 - 1
packages/ckeditor5-theme-lark/theme/ckeditor5-table/tableselection.css

@@ -4,7 +4,7 @@
  */
 
 :root {
-		--ck-table-selected-cell-background: hsla(208, 90%, 80%, .3);
+	--ck-table-selected-cell-background: hsla(208, 90%, 80%, .3);
 }
 
 .ck.ck-editor__editable .table table {
@@ -17,6 +17,7 @@
 
 		&:after {
 			content: '';
+			pointer-events: none;
 			background-color: var(--ck-table-selected-cell-background);
 			position: absolute;
 			top: 0;