@ixo/editor 1.19.0 → 1.21.0
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-FDLWSUB5.mjs → chunk-XEZXD5ZV.mjs} +2821 -243
- package/dist/chunk-XEZXD5ZV.mjs.map +1 -0
- package/dist/index.d.ts +398 -22
- package/dist/index.mjs +1 -1
- package/dist/mantine/index.d.ts +18 -0
- package/dist/mantine/index.mjs +7 -3
- package/package.json +2 -1
- package/style-core.css +6 -6
- package/style-mantine.css +6 -6
- package/style.css +6 -6
- package/dist/chunk-FDLWSUB5.mjs.map +0 -1
package/style.css
CHANGED
|
@@ -102,13 +102,15 @@
|
|
|
102
102
|
position: relative;
|
|
103
103
|
width: 100%;
|
|
104
104
|
min-height: 200px;
|
|
105
|
-
font-family:
|
|
106
|
-
-apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell',
|
|
107
|
-
'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
|
|
105
|
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
|
|
108
106
|
-webkit-font-smoothing: antialiased;
|
|
109
107
|
-moz-osx-font-smoothing: grayscale;
|
|
110
108
|
}
|
|
111
109
|
|
|
110
|
+
.ixo-editor .bn-editor {
|
|
111
|
+
border-radius: 0px !important;
|
|
112
|
+
}
|
|
113
|
+
|
|
112
114
|
/* Light theme customizations */
|
|
113
115
|
.ixo-editor--theme-light {
|
|
114
116
|
--bn-colors-editor-background: #ffffff;
|
|
@@ -149,10 +151,9 @@
|
|
|
149
151
|
|
|
150
152
|
/* Editor content styles */
|
|
151
153
|
.ixo-editor .bn-container {
|
|
152
|
-
padding: 20px;
|
|
153
|
-
border-radius: 8px;
|
|
154
154
|
border: 1px solid var(--bn-colors-border);
|
|
155
155
|
transition: border-color 0.2s ease;
|
|
156
|
+
border-radius: 0px !important;
|
|
156
157
|
}
|
|
157
158
|
|
|
158
159
|
.ixo-editor .bn-container:focus-within {
|
|
@@ -315,7 +316,6 @@
|
|
|
315
316
|
|
|
316
317
|
.ixo-editor .bn-container::-webkit-scrollbar-thumb {
|
|
317
318
|
background-color: var(--bn-colors-border);
|
|
318
|
-
border-radius: 4px;
|
|
319
319
|
}
|
|
320
320
|
|
|
321
321
|
.ixo-editor .bn-container::-webkit-scrollbar-thumb:hover {
|