fable-editor 1.2.2 → 1.2.3
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/angular/LICENSE +20 -18
- package/dist/angular/core/editor.d.ts +4 -0
- package/dist/angular/esm2022/core/editor.mjs +56 -2
- package/dist/angular/fesm2022/fable-editor.mjs +55 -1
- package/dist/angular/fesm2022/fable-editor.mjs.map +1 -1
- package/dist/core/editor.css +34 -0
- package/dist/core/editor.d.ts +4 -0
- package/dist/core/editor.d.ts.map +1 -1
- package/dist/core/index.cjs +3 -3
- package/dist/core/index.mjs +80 -46
- package/dist/react/index.cjs +11 -11
- package/dist/react/index.mjs +600 -566
- package/package.json +1 -1
- package/style.css +34 -0
package/package.json
CHANGED
package/style.css
CHANGED
|
@@ -301,6 +301,38 @@
|
|
|
301
301
|
margin: 0 0 1em;
|
|
302
302
|
}
|
|
303
303
|
|
|
304
|
+
.earea blockquote {
|
|
305
|
+
margin: 0 0 1em;
|
|
306
|
+
padding: 2px 20px 2px 44px;
|
|
307
|
+
border-left: 3px solid var(--fable-primary, #df3c2b);
|
|
308
|
+
position: relative;
|
|
309
|
+
font-style: italic;
|
|
310
|
+
color: #556;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.earea blockquote::before {
|
|
314
|
+
content: "\201C";
|
|
315
|
+
position: absolute;
|
|
316
|
+
left: 12px;
|
|
317
|
+
top: -6px;
|
|
318
|
+
font-family: Georgia, 'Times New Roman', serif;
|
|
319
|
+
font-style: normal;
|
|
320
|
+
font-size: 34px;
|
|
321
|
+
line-height: 1;
|
|
322
|
+
color: var(--fable-primary, #df3c2b);
|
|
323
|
+
opacity: .55;
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
.earea blockquote > :last-child::after {
|
|
327
|
+
content: "\201D";
|
|
328
|
+
font-family: Georgia, 'Times New Roman', serif;
|
|
329
|
+
font-style: normal;
|
|
330
|
+
font-size: 20px;
|
|
331
|
+
color: var(--fable-primary, #df3c2b);
|
|
332
|
+
opacity: .7;
|
|
333
|
+
margin-inline-start: 2px;
|
|
334
|
+
}
|
|
335
|
+
|
|
304
336
|
.earea table {
|
|
305
337
|
border-collapse: collapse;
|
|
306
338
|
}
|
|
@@ -1036,6 +1068,8 @@
|
|
|
1036
1068
|
justify-content: space-between;
|
|
1037
1069
|
/* gap: 4px;
|
|
1038
1070
|
padding: 6px; */
|
|
1071
|
+
border-radius: 5px;
|
|
1072
|
+
overflow: hidden;
|
|
1039
1073
|
}
|
|
1040
1074
|
|
|
1041
1075
|
.cpal button {
|