@ckeditor/ckeditor5-table 48.0.1 → 48.1.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index-editor.css +5 -5
- package/dist/index.css +5 -5
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +70 -19
- package/dist/index.js.map +1 -1
- package/package.json +9 -9
package/dist/index-editor.css
CHANGED
|
@@ -514,13 +514,13 @@
|
|
|
514
514
|
--ck-table-selected-cell-background:#9ecffa4d;
|
|
515
515
|
}
|
|
516
516
|
|
|
517
|
-
.ck.ck-editor__editable .table table td
|
|
517
|
+
.ck.ck-editor__editable .table table :where(td, th).ck-editor__editable_selected{
|
|
518
518
|
caret-color:#0000;
|
|
519
519
|
box-shadow:unset;
|
|
520
520
|
position:relative;
|
|
521
521
|
}
|
|
522
522
|
|
|
523
|
-
|
|
523
|
+
.ck.ck-editor__editable .table table :where(td, th).ck-editor__editable_selected:after{
|
|
524
524
|
content:"";
|
|
525
525
|
pointer-events:none;
|
|
526
526
|
background-color:var(--ck-table-selected-cell-background);
|
|
@@ -528,15 +528,15 @@
|
|
|
528
528
|
inset:0;
|
|
529
529
|
}
|
|
530
530
|
|
|
531
|
-
|
|
531
|
+
.ck.ck-editor__editable .table table :where(td, th).ck-editor__editable_selected ::selection, .ck.ck-editor__editable .table table :where(td, th).ck-editor__editable_selected:focus{
|
|
532
532
|
background-color:#0000;
|
|
533
533
|
}
|
|
534
534
|
|
|
535
|
-
|
|
535
|
+
.ck.ck-editor__editable .table table :where(td, th).ck-editor__editable_selected .ck-widget{
|
|
536
536
|
outline:unset;
|
|
537
537
|
}
|
|
538
538
|
|
|
539
|
-
|
|
539
|
+
.ck.ck-editor__editable .table table :where(td, th).ck-editor__editable_selected .ck-widget > .ck-widget__selection-handle{
|
|
540
540
|
display:none;
|
|
541
541
|
}
|
|
542
542
|
|
package/dist/index.css
CHANGED
|
@@ -631,13 +631,13 @@
|
|
|
631
631
|
--ck-table-selected-cell-background: #9ecffa4d;
|
|
632
632
|
}
|
|
633
633
|
|
|
634
|
-
.ck.ck-editor__editable .table table td
|
|
634
|
+
.ck.ck-editor__editable .table table :where(td, th).ck-editor__editable_selected {
|
|
635
635
|
caret-color: #0000;
|
|
636
636
|
box-shadow: unset;
|
|
637
637
|
position: relative;
|
|
638
638
|
}
|
|
639
639
|
|
|
640
|
-
|
|
640
|
+
.ck.ck-editor__editable .table table :where(td, th).ck-editor__editable_selected:after {
|
|
641
641
|
content: "";
|
|
642
642
|
pointer-events: none;
|
|
643
643
|
background-color: var(--ck-table-selected-cell-background);
|
|
@@ -645,15 +645,15 @@
|
|
|
645
645
|
inset: 0;
|
|
646
646
|
}
|
|
647
647
|
|
|
648
|
-
|
|
648
|
+
.ck.ck-editor__editable .table table :where(td, th).ck-editor__editable_selected ::selection, .ck.ck-editor__editable .table table :where(td, th).ck-editor__editable_selected:focus {
|
|
649
649
|
background-color: #0000;
|
|
650
650
|
}
|
|
651
651
|
|
|
652
|
-
|
|
652
|
+
.ck.ck-editor__editable .table table :where(td, th).ck-editor__editable_selected .ck-widget {
|
|
653
653
|
outline: unset;
|
|
654
654
|
}
|
|
655
655
|
|
|
656
|
-
|
|
656
|
+
.ck.ck-editor__editable .table table :where(td, th).ck-editor__editable_selected .ck-widget > .ck-widget__selection-handle {
|
|
657
657
|
display: none;
|
|
658
658
|
}
|
|
659
659
|
|