@meowdown/core 0.17.1 → 0.17.2
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/style.css +5 -2
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -359,7 +359,6 @@ img.ProseMirror-separator {
|
|
|
359
359
|
.ProseMirror .selectedCell {
|
|
360
360
|
border: 1px double var(--meowdown-node-outline);
|
|
361
361
|
background: var(--meowdown-node-selection);
|
|
362
|
-
--meowdown-selection: transparent;
|
|
363
362
|
caret-color: #0000;
|
|
364
363
|
}
|
|
365
364
|
|
|
@@ -367,8 +366,12 @@ img.ProseMirror-separator {
|
|
|
367
366
|
background: var(--meowdown-selection);
|
|
368
367
|
}
|
|
369
368
|
|
|
370
|
-
.ProseMirror
|
|
369
|
+
.ProseMirror.ProseMirror-hideselection ::selection {
|
|
371
370
|
--meowdown-selection: transparent;
|
|
371
|
+
caret-color: #0000;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
.ProseMirror .ProseMirror-selectednode {
|
|
372
375
|
outline: 1px solid var(--meowdown-node-outline);
|
|
373
376
|
background: var(--meowdown-node-selection);
|
|
374
377
|
border-radius: 2px;
|