@ixo/editor 3.0.0-beta.7 → 3.0.0-beta.8
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/{chunk-IWNDIVXR.mjs → chunk-TFBZGDAV.mjs} +24 -4
- package/dist/chunk-TFBZGDAV.mjs.map +1 -0
- package/dist/index.mjs +1 -1
- package/dist/mantine/index.mjs +1 -1
- package/package.json +1 -1
- package/style-core.css +11 -0
- package/style-mantine.css +11 -0
- package/style.css +11 -0
- package/dist/chunk-IWNDIVXR.mjs.map +0 -1
package/dist/index.mjs
CHANGED
package/dist/mantine/index.mjs
CHANGED
package/package.json
CHANGED
package/style-core.css
CHANGED
|
@@ -76,6 +76,17 @@
|
|
|
76
76
|
min-height: 1.5em;
|
|
77
77
|
}
|
|
78
78
|
|
|
79
|
+
/* Disable text selection on custom (non-editable) blocks.
|
|
80
|
+
Standard text blocks re-enable it via .bn-inline-content below. */
|
|
81
|
+
.ixo-editor div.bn-block-content {
|
|
82
|
+
user-select: none;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
/* Re-enable text selection inside standard editable block content */
|
|
86
|
+
.ixo-editor .bn-inline-content {
|
|
87
|
+
user-select: text;
|
|
88
|
+
}
|
|
89
|
+
|
|
79
90
|
/* Heading styles */
|
|
80
91
|
.ixo-editor h1.bn-inline-content {
|
|
81
92
|
font-size: 2em;
|
package/style-mantine.css
CHANGED
|
@@ -173,6 +173,17 @@
|
|
|
173
173
|
min-height: 1.5em;
|
|
174
174
|
}
|
|
175
175
|
|
|
176
|
+
/* Disable text selection on custom (non-editable) blocks.
|
|
177
|
+
Standard text blocks re-enable it via .bn-inline-content below. */
|
|
178
|
+
.ixo-editor div.bn-block-content {
|
|
179
|
+
user-select: none;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
/* Re-enable text selection inside standard editable block content */
|
|
183
|
+
.ixo-editor .bn-inline-content {
|
|
184
|
+
user-select: text;
|
|
185
|
+
}
|
|
186
|
+
|
|
176
187
|
/* Heading styles */
|
|
177
188
|
.ixo-editor h1.bn-inline-content {
|
|
178
189
|
font-size: 2em;
|
package/style.css
CHANGED
|
@@ -173,6 +173,17 @@
|
|
|
173
173
|
min-height: 1.5em;
|
|
174
174
|
}
|
|
175
175
|
|
|
176
|
+
/* Disable text selection on custom (non-editable) blocks.
|
|
177
|
+
Standard text blocks re-enable it via .bn-inline-content below. */
|
|
178
|
+
.ixo-editor div.bn-block-content {
|
|
179
|
+
user-select: none;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
/* Re-enable text selection inside standard editable block content */
|
|
183
|
+
.ixo-editor .bn-inline-content {
|
|
184
|
+
user-select: text;
|
|
185
|
+
}
|
|
186
|
+
|
|
176
187
|
/* Heading styles */
|
|
177
188
|
.ixo-editor h1.bn-inline-content {
|
|
178
189
|
font-size: 2em;
|