@ixo/editor 3.0.0-beta.4 → 3.0.0-beta.6
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-36GMPLM6.mjs → chunk-2BRSTS6Q.mjs} +2034 -2083
- package/dist/chunk-2BRSTS6Q.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 +6 -1
- package/style-mantine.css +6 -1
- package/style.css +6 -1
- package/dist/chunk-36GMPLM6.mjs.map +0 -1
package/dist/index.mjs
CHANGED
package/dist/mantine/index.mjs
CHANGED
package/package.json
CHANGED
package/style-core.css
CHANGED
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
--bn-colors-tooltip-background: #f0f0f0;
|
|
46
46
|
--bn-colors-tooltip-text: #1a1a1a;
|
|
47
47
|
--bn-colors-hovered-background: #2a2a2a;
|
|
48
|
-
--bn-colors-selected-background:
|
|
48
|
+
--bn-colors-selected-background: color-mix(in srgb, var(--mantine-color-neutralColor-7) 30%, transparent);
|
|
49
49
|
--bn-colors-border: #3a3a3a;
|
|
50
50
|
--bn-colors-side-menu: #999999;
|
|
51
51
|
--bn-colors-highlight-colors-blue: #60a5fa;
|
|
@@ -208,6 +208,11 @@
|
|
|
208
208
|
/* Selection styles */
|
|
209
209
|
.ixo-editor ::selection {
|
|
210
210
|
background-color: var(--bn-colors-selected-background);
|
|
211
|
+
color: var(--bn-colors-editor-text);
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
.ixo-editor--theme-dark ::selection {
|
|
215
|
+
background-color: color-mix(in srgb, var(--mantine-color-neutralColor-7) 30%, transparent) !important;
|
|
211
216
|
}
|
|
212
217
|
|
|
213
218
|
/* Scrollbar styles */
|
package/style-mantine.css
CHANGED
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
--bn-colors-tooltip-background: #f0f0f0;
|
|
143
143
|
--bn-colors-tooltip-text: #1a1a1a;
|
|
144
144
|
--bn-colors-hovered-background: #2a2a2a;
|
|
145
|
-
--bn-colors-selected-background:
|
|
145
|
+
--bn-colors-selected-background: color-mix(in srgb, var(--mantine-color-neutralColor-7) 30%, transparent);
|
|
146
146
|
--bn-colors-border: #3a3a3a;
|
|
147
147
|
--bn-colors-side-menu: #999999;
|
|
148
148
|
--bn-colors-highlight-colors-blue: #60a5fa;
|
|
@@ -305,6 +305,11 @@
|
|
|
305
305
|
/* Selection styles */
|
|
306
306
|
.ixo-editor ::selection {
|
|
307
307
|
background-color: var(--bn-colors-selected-background);
|
|
308
|
+
color: var(--bn-colors-editor-text);
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.ixo-editor--theme-dark ::selection {
|
|
312
|
+
background-color: color-mix(in srgb, var(--mantine-color-neutralColor-7) 30%, transparent) !important;
|
|
308
313
|
}
|
|
309
314
|
|
|
310
315
|
/* Scrollbar styles */
|
package/style.css
CHANGED
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
--bn-colors-tooltip-background: #f0f0f0;
|
|
143
143
|
--bn-colors-tooltip-text: #1a1a1a;
|
|
144
144
|
--bn-colors-hovered-background: #2a2a2a;
|
|
145
|
-
--bn-colors-selected-background:
|
|
145
|
+
--bn-colors-selected-background: color-mix(in srgb, var(--mantine-color-neutralColor-7) 30%, transparent);
|
|
146
146
|
--bn-colors-border: #3a3a3a;
|
|
147
147
|
--bn-colors-side-menu: #999999;
|
|
148
148
|
--bn-colors-highlight-colors-blue: #60a5fa;
|
|
@@ -305,6 +305,11 @@
|
|
|
305
305
|
/* Selection styles */
|
|
306
306
|
.ixo-editor ::selection {
|
|
307
307
|
background-color: var(--bn-colors-selected-background);
|
|
308
|
+
color: var(--bn-colors-editor-text);
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.ixo-editor--theme-dark ::selection {
|
|
312
|
+
background-color: color-mix(in srgb, var(--mantine-color-neutralColor-7) 30%, transparent) !important;
|
|
308
313
|
}
|
|
309
314
|
|
|
310
315
|
/* Scrollbar styles */
|