@zipify/wysiwyg 1.0.0-dev.93 → 1.0.0-dev.94
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/wysiwyg.css +2 -3
- package/lib/styles/content.css +2 -4
- package/package.json +1 -1
package/dist/wysiwyg.css
CHANGED
|
@@ -734,9 +734,6 @@ $font-height--xs: 1.33;
|
|
|
734
734
|
$font-height--sm: 1.43;
|
|
735
735
|
$font-height--md: 1.72;
|
|
736
736
|
*/
|
|
737
|
-
.zw-wysiwyg [contenteditable] {
|
|
738
|
-
outline: none;
|
|
739
|
-
}
|
|
740
737
|
.zw-wysiwyg__placeholder:first-child:last-child::before {
|
|
741
738
|
content: attr(data-placeholder);
|
|
742
739
|
color: rgb(var(--zw-color-n70));
|
|
@@ -783,6 +780,8 @@ $font-height--md: 1.72;
|
|
|
783
780
|
/* ProseMirror styles */
|
|
784
781
|
.ProseMirror {
|
|
785
782
|
position: relative;
|
|
783
|
+
outline: none;
|
|
784
|
+
overflow: auto;
|
|
786
785
|
}
|
|
787
786
|
.ProseMirror {
|
|
788
787
|
word-wrap: break-word;
|
package/lib/styles/content.css
CHANGED
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
.zw-wysiwyg [contenteditable] {
|
|
2
|
-
outline: none;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
1
|
.zw-wysiwyg__placeholder:first-child:last-child::before {
|
|
6
2
|
content: attr(data-placeholder);
|
|
7
3
|
color: rgb(var(--zw-color-n70));
|
|
@@ -59,6 +55,8 @@
|
|
|
59
55
|
|
|
60
56
|
.ProseMirror {
|
|
61
57
|
position: relative;
|
|
58
|
+
outline: none;
|
|
59
|
+
overflow: auto;
|
|
62
60
|
}
|
|
63
61
|
|
|
64
62
|
.ProseMirror {
|