@trafica/editor 1.0.18 → 1.0.20
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.js +33 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +33 -1
- package/dist/index.mjs.map +1 -1
- package/dist/styles/editor.css +6 -1
- package/package.json +1 -1
package/dist/styles/editor.css
CHANGED
|
@@ -434,11 +434,16 @@
|
|
|
434
434
|
|
|
435
435
|
/* Selected cells (multi-cell table selection) */
|
|
436
436
|
.editor-canvas .editor-cell-selected {
|
|
437
|
-
background: rgba(59, 130, 246, 0.12) !important;
|
|
438
437
|
outline: 2px solid rgba(59, 130, 246, 0.5);
|
|
439
438
|
outline-offset: -2px;
|
|
440
439
|
}
|
|
441
440
|
|
|
441
|
+
/* Active cell — cursor is currently inside this cell */
|
|
442
|
+
.editor-canvas .editor-cell-active {
|
|
443
|
+
outline: 2px solid #3b82f6;
|
|
444
|
+
outline-offset: -2px;
|
|
445
|
+
}
|
|
446
|
+
|
|
442
447
|
/* Paragraphs inside cells lose their outer margin */
|
|
443
448
|
.editor-canvas .editor-table-cell .editor-paragraph,
|
|
444
449
|
.editor-canvas .editor-table-header-cell .editor-paragraph {
|