@edgex-fe/editor-preview 0.0.1

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.
@@ -0,0 +1,778 @@
1
+ .edgex-editor-preview,
2
+ .rich-content,
3
+ edgex-editor-preview {
4
+ --edgex-editor-preview-text-primary: var(--text-primary, #f9f9f9);
5
+ --edgex-editor-preview-text-orderbook: var(--text-orderbook, #c8c8c8);
6
+ --edgex-editor-preview-text-secondary: var(--text-secondary, #929292);
7
+ --edgex-editor-preview-text-tertiary: var(--text-tertiary, #808080);
8
+ --edgex-editor-preview-theme-normal: var(--theme-normal, #22fd73);
9
+ --edgex-editor-preview-theme-normal-20: var(--theme-normal-20, rgba(34, 253, 115, 0.2));
10
+ --edgex-editor-preview-fill-page-secondary: var(--fill-page-secondary, #181818);
11
+ --edgex-editor-preview-fill-page-tertiary: var(--fill-page-tertiary, #242424);
12
+ --edgex-editor-preview-line-divider-tertiary: var(--line-divider-tertiary, #242424);
13
+
14
+ display: flow-root;
15
+ width: 100%;
16
+ max-width: 100%;
17
+ overflow-x: auto;
18
+ color: var(--edgex-editor-preview-text-primary);
19
+ font-size: 0.875rem;
20
+ line-height: 1.5715;
21
+ overflow-wrap: break-word;
22
+ word-break: break-word;
23
+ }
24
+
25
+ .edgex-editor-preview > :first-child,
26
+ .rich-content > :first-child,
27
+ edgex-editor-preview > :first-child,
28
+ .edgex-editor-preview section > :first-child,
29
+ .edgex-editor-preview blockquote > :first-child,
30
+ .edgex-editor-preview div > :first-child,
31
+ .edgex-editor-preview details > :first-child,
32
+ .rich-content section > :first-child,
33
+ .rich-content blockquote > :first-child,
34
+ .rich-content div > :first-child,
35
+ .rich-content details > :first-child,
36
+ edgex-editor-preview section > :first-child,
37
+ edgex-editor-preview blockquote > :first-child,
38
+ edgex-editor-preview div > :first-child,
39
+ edgex-editor-preview details > :first-child {
40
+ margin-top: 0;
41
+ }
42
+
43
+ .edgex-editor-preview > :last-child,
44
+ .rich-content > :last-child,
45
+ edgex-editor-preview > :last-child,
46
+ .edgex-editor-preview section > :last-child,
47
+ .edgex-editor-preview blockquote > :last-child,
48
+ .edgex-editor-preview div > :last-child,
49
+ .edgex-editor-preview details > :last-child,
50
+ .rich-content section > :last-child,
51
+ .rich-content blockquote > :last-child,
52
+ .rich-content div > :last-child,
53
+ .rich-content details > :last-child,
54
+ edgex-editor-preview section > :last-child,
55
+ edgex-editor-preview blockquote > :last-child,
56
+ edgex-editor-preview div > :last-child,
57
+ edgex-editor-preview details > :last-child {
58
+ margin-bottom: 0;
59
+ }
60
+
61
+ .edgex-editor-preview p,
62
+ .edgex-editor-preview div,
63
+ .rich-content p,
64
+ .rich-content div,
65
+ edgex-editor-preview p,
66
+ edgex-editor-preview div {
67
+ margin: 0 0 1rem;
68
+ color: var(--edgex-editor-preview-text-secondary);
69
+ }
70
+
71
+ .edgex-editor-preview br,
72
+ .rich-content br,
73
+ edgex-editor-preview br {
74
+ line-height: inherit;
75
+ }
76
+
77
+ .edgex-editor-preview section,
78
+ .rich-content section,
79
+ edgex-editor-preview section {
80
+ margin: 1.5rem 0;
81
+ }
82
+
83
+ .edgex-editor-preview .ql-align-left,
84
+ .edgex-editor-preview .text-left,
85
+ .edgex-editor-preview [data-align="left"],
86
+ .rich-content .ql-align-left,
87
+ .rich-content .text-left,
88
+ .rich-content [data-align="left"],
89
+ edgex-editor-preview .ql-align-left,
90
+ edgex-editor-preview .text-left,
91
+ edgex-editor-preview [data-align="left"] {
92
+ text-align: left;
93
+ }
94
+
95
+ .edgex-editor-preview .ql-align-center,
96
+ .edgex-editor-preview .text-center,
97
+ .edgex-editor-preview [data-align="center"],
98
+ .rich-content .ql-align-center,
99
+ .rich-content .text-center,
100
+ .rich-content [data-align="center"],
101
+ edgex-editor-preview .ql-align-center,
102
+ edgex-editor-preview .text-center,
103
+ edgex-editor-preview [data-align="center"] {
104
+ text-align: center;
105
+ }
106
+
107
+ .edgex-editor-preview .ql-align-right,
108
+ .edgex-editor-preview .text-right,
109
+ .edgex-editor-preview [data-align="right"],
110
+ .rich-content .ql-align-right,
111
+ .rich-content .text-right,
112
+ .rich-content [data-align="right"],
113
+ edgex-editor-preview .ql-align-right,
114
+ edgex-editor-preview .text-right,
115
+ edgex-editor-preview [data-align="right"] {
116
+ text-align: right;
117
+ }
118
+
119
+ .edgex-editor-preview .ql-align-justify,
120
+ .edgex-editor-preview .text-justify,
121
+ .edgex-editor-preview [data-align="justify"],
122
+ .rich-content .ql-align-justify,
123
+ .rich-content .text-justify,
124
+ .rich-content [data-align="justify"],
125
+ edgex-editor-preview .ql-align-justify,
126
+ edgex-editor-preview .text-justify,
127
+ edgex-editor-preview [data-align="justify"] {
128
+ text-align: justify;
129
+ }
130
+
131
+ .edgex-editor-preview h1,
132
+ .edgex-editor-preview h2,
133
+ .edgex-editor-preview h3,
134
+ .edgex-editor-preview h4,
135
+ .edgex-editor-preview h5,
136
+ .edgex-editor-preview h6,
137
+ .rich-content h1,
138
+ .rich-content h2,
139
+ .rich-content h3,
140
+ .rich-content h4,
141
+ .rich-content h5,
142
+ .rich-content h6,
143
+ edgex-editor-preview h1,
144
+ edgex-editor-preview h2,
145
+ edgex-editor-preview h3,
146
+ edgex-editor-preview h4,
147
+ edgex-editor-preview h5,
148
+ edgex-editor-preview h6 {
149
+ margin: 1.5rem 0 0.75rem;
150
+ color: var(--edgex-editor-preview-text-primary);
151
+ font-weight: 500;
152
+ }
153
+
154
+ .edgex-editor-preview h1,
155
+ .rich-content h1,
156
+ edgex-editor-preview h1 {
157
+ margin-top: 2rem;
158
+ margin-bottom: 1rem;
159
+ font-size: 2.5rem;
160
+ line-height: 1.3;
161
+ }
162
+
163
+ .edgex-editor-preview h2,
164
+ .rich-content h2,
165
+ edgex-editor-preview h2 {
166
+ margin-top: 1.75rem;
167
+ margin-bottom: 0.875rem;
168
+ font-size: 1.25rem;
169
+ line-height: 1.4;
170
+ }
171
+
172
+ .edgex-editor-preview h3,
173
+ .rich-content h3,
174
+ edgex-editor-preview h3 {
175
+ font-size: 1.125rem;
176
+ line-height: 1.45;
177
+ }
178
+
179
+ .edgex-editor-preview h4,
180
+ .rich-content h4,
181
+ edgex-editor-preview h4,
182
+ .edgex-editor-preview h5,
183
+ .rich-content h5,
184
+ edgex-editor-preview h5 {
185
+ font-size: 1rem;
186
+ line-height: 1.5;
187
+ }
188
+
189
+ .edgex-editor-preview h6,
190
+ .rich-content h6,
191
+ edgex-editor-preview h6 {
192
+ color: var(--edgex-editor-preview-text-tertiary);
193
+ font-size: 0.75rem;
194
+ line-height: 1.5;
195
+ letter-spacing: 0.08em;
196
+ text-transform: uppercase;
197
+ }
198
+
199
+ .edgex-editor-preview ul,
200
+ .edgex-editor-preview ol,
201
+ .rich-content ul,
202
+ .rich-content ol,
203
+ edgex-editor-preview ul,
204
+ edgex-editor-preview ol {
205
+ margin: 0 0 1rem;
206
+ padding-left: 1.25rem;
207
+ color: var(--edgex-editor-preview-text-secondary);
208
+ }
209
+
210
+ .edgex-editor-preview li > ul,
211
+ .edgex-editor-preview li > ol,
212
+ .rich-content li > ul,
213
+ .rich-content li > ol,
214
+ edgex-editor-preview li > ul,
215
+ edgex-editor-preview li > ol {
216
+ margin-top: 0.5rem;
217
+ margin-bottom: 0;
218
+ }
219
+
220
+ .edgex-editor-preview dl,
221
+ .rich-content dl,
222
+ edgex-editor-preview dl {
223
+ margin: 0 0 1rem;
224
+ color: var(--edgex-editor-preview-text-secondary);
225
+ }
226
+
227
+ .edgex-editor-preview dt,
228
+ .rich-content dt,
229
+ edgex-editor-preview dt {
230
+ color: var(--edgex-editor-preview-text-primary);
231
+ font-weight: 500;
232
+ }
233
+
234
+ .edgex-editor-preview dd,
235
+ .rich-content dd,
236
+ edgex-editor-preview dd {
237
+ margin: 0.25rem 0 0.75rem 1rem;
238
+ }
239
+
240
+ .edgex-editor-preview ul,
241
+ .rich-content ul,
242
+ edgex-editor-preview ul {
243
+ list-style: disc;
244
+ }
245
+
246
+ .edgex-editor-preview ol,
247
+ .rich-content ol,
248
+ edgex-editor-preview ol {
249
+ list-style: decimal;
250
+ }
251
+
252
+ .edgex-editor-preview li + li,
253
+ .rich-content li + li,
254
+ edgex-editor-preview li + li {
255
+ margin-top: 0.5rem;
256
+ }
257
+
258
+ .edgex-editor-preview li::marker,
259
+ .rich-content li::marker,
260
+ edgex-editor-preview li::marker {
261
+ color: var(--edgex-editor-preview-theme-normal);
262
+ }
263
+
264
+ .edgex-editor-preview blockquote,
265
+ .rich-content blockquote,
266
+ edgex-editor-preview blockquote {
267
+ margin: 1rem 0;
268
+ border-left: 4px solid var(--edgex-editor-preview-theme-normal);
269
+ padding-left: 1.5rem;
270
+ }
271
+
272
+ .edgex-editor-preview blockquote p,
273
+ .edgex-editor-preview blockquote div,
274
+ .rich-content blockquote p,
275
+ .rich-content blockquote div,
276
+ edgex-editor-preview blockquote p,
277
+ edgex-editor-preview blockquote div {
278
+ color: var(--edgex-editor-preview-text-orderbook);
279
+ }
280
+
281
+ .edgex-editor-preview blockquote footer,
282
+ .rich-content blockquote footer,
283
+ edgex-editor-preview blockquote footer {
284
+ margin-top: 0.5rem;
285
+ color: var(--edgex-editor-preview-text-tertiary);
286
+ font-size: 0.75rem;
287
+ line-height: 1.5;
288
+ }
289
+
290
+ .edgex-editor-preview strong,
291
+ .edgex-editor-preview b,
292
+ .rich-content strong,
293
+ .rich-content b,
294
+ edgex-editor-preview strong,
295
+ edgex-editor-preview b {
296
+ color: var(--edgex-editor-preview-text-primary);
297
+ font-weight: 600;
298
+ }
299
+
300
+ .edgex-editor-preview em,
301
+ .edgex-editor-preview i,
302
+ .rich-content em,
303
+ .rich-content i,
304
+ edgex-editor-preview em,
305
+ edgex-editor-preview i {
306
+ font-style: italic;
307
+ }
308
+
309
+ .edgex-editor-preview u,
310
+ .rich-content u,
311
+ edgex-editor-preview u {
312
+ text-underline-offset: 4px;
313
+ }
314
+
315
+ .edgex-editor-preview abbr[title],
316
+ .rich-content abbr[title],
317
+ edgex-editor-preview abbr[title] {
318
+ text-decoration: underline dotted;
319
+ text-underline-offset: 3px;
320
+ }
321
+
322
+ .edgex-editor-preview s,
323
+ .edgex-editor-preview del,
324
+ .rich-content s,
325
+ .rich-content del,
326
+ edgex-editor-preview s,
327
+ edgex-editor-preview del {
328
+ text-decoration: line-through;
329
+ }
330
+
331
+ .edgex-editor-preview sub,
332
+ .edgex-editor-preview sup,
333
+ .rich-content sub,
334
+ .rich-content sup,
335
+ edgex-editor-preview sub,
336
+ edgex-editor-preview sup {
337
+ font-size: 0.75em;
338
+ line-height: 0;
339
+ }
340
+
341
+ .edgex-editor-preview small,
342
+ .rich-content small,
343
+ edgex-editor-preview small {
344
+ color: var(--edgex-editor-preview-text-tertiary);
345
+ font-size: 0.75rem;
346
+ }
347
+
348
+ .edgex-editor-preview mark,
349
+ .rich-content mark,
350
+ edgex-editor-preview mark {
351
+ border-radius: 0.25rem;
352
+ padding: 0 0.25rem;
353
+ background: var(--edgex-editor-preview-theme-normal-20);
354
+ color: var(--edgex-editor-preview-theme-normal);
355
+ }
356
+
357
+ .edgex-editor-preview span[style*="background"],
358
+ .edgex-editor-preview span[style*="background-color"],
359
+ .rich-content span[style*="background"],
360
+ .rich-content span[style*="background-color"],
361
+ edgex-editor-preview span[style*="background"],
362
+ edgex-editor-preview span[style*="background-color"] {
363
+ border-radius: 0.25rem;
364
+ padding: 0 0.25rem;
365
+ }
366
+
367
+ .edgex-editor-preview a,
368
+ .rich-content a,
369
+ edgex-editor-preview a {
370
+ color: var(--edgex-editor-preview-theme-normal);
371
+ text-decoration: underline;
372
+ text-underline-offset: 4px;
373
+ }
374
+
375
+ .edgex-editor-preview code,
376
+ .rich-content code,
377
+ edgex-editor-preview code {
378
+ border-radius: 0.25rem;
379
+ padding: 0.125rem 0.375rem;
380
+ background: var(--edgex-editor-preview-fill-page-tertiary);
381
+ color: var(--edgex-editor-preview-theme-normal);
382
+ font-size: 0.75rem;
383
+ }
384
+
385
+ .edgex-editor-preview kbd,
386
+ .rich-content kbd,
387
+ edgex-editor-preview kbd {
388
+ border: 1px solid var(--edgex-editor-preview-line-divider-tertiary);
389
+ border-radius: 0.25rem;
390
+ padding: 0.125rem 0.375rem;
391
+ background: var(--edgex-editor-preview-fill-page-secondary);
392
+ color: var(--edgex-editor-preview-text-primary);
393
+ font-size: 0.75rem;
394
+ font-weight: 500;
395
+ }
396
+
397
+ .edgex-editor-preview pre,
398
+ .rich-content pre,
399
+ edgex-editor-preview pre {
400
+ margin: 1rem 0;
401
+ overflow-x: auto;
402
+ border-radius: 0.75rem;
403
+ padding: 1rem;
404
+ background: var(--edgex-editor-preview-fill-page-secondary);
405
+ color: var(--edgex-editor-preview-text-secondary);
406
+ font-size: 0.75rem;
407
+ line-height: 1.6667;
408
+ }
409
+
410
+ .edgex-editor-preview pre code,
411
+ .rich-content pre code,
412
+ edgex-editor-preview pre code {
413
+ padding: 0;
414
+ background: transparent;
415
+ color: inherit;
416
+ font-size: inherit;
417
+ }
418
+
419
+ .edgex-editor-preview hr,
420
+ .rich-content hr,
421
+ edgex-editor-preview hr {
422
+ margin: 2rem 0;
423
+ border: 0;
424
+ border-top: 1px solid var(--edgex-editor-preview-line-divider-tertiary);
425
+ }
426
+
427
+ .edgex-editor-preview figure,
428
+ .rich-content figure,
429
+ edgex-editor-preview figure {
430
+ margin: 1rem 0;
431
+ }
432
+
433
+ .edgex-editor-preview img,
434
+ .edgex-editor-preview video,
435
+ .rich-content img,
436
+ .rich-content video,
437
+ edgex-editor-preview img,
438
+ edgex-editor-preview video {
439
+ display: block;
440
+ width: 100%;
441
+ height: auto;
442
+ max-width: 100%;
443
+ border-radius: 1rem;
444
+ background: var(--edgex-editor-preview-fill-page-secondary);
445
+ color: var(--edgex-editor-preview-text-tertiary);
446
+ font-size: 0.75rem;
447
+ line-height: 1.5;
448
+ }
449
+
450
+ .edgex-editor-preview video,
451
+ .rich-content video,
452
+ edgex-editor-preview video {
453
+ overflow: hidden;
454
+ }
455
+
456
+ .edgex-editor-preview figcaption,
457
+ .rich-content figcaption,
458
+ edgex-editor-preview figcaption {
459
+ margin-top: 0.5rem;
460
+ color: var(--edgex-editor-preview-text-tertiary);
461
+ font-size: 0.75rem;
462
+ line-height: 1.5;
463
+ }
464
+
465
+ .edgex-editor-preview details,
466
+ .rich-content details,
467
+ edgex-editor-preview details {
468
+ margin: 1rem 0;
469
+ border: 1px solid var(--edgex-editor-preview-line-divider-tertiary);
470
+ border-radius: 0.75rem;
471
+ padding: 1rem;
472
+ background: var(--edgex-editor-preview-fill-page-secondary);
473
+ color: var(--edgex-editor-preview-text-secondary);
474
+ }
475
+
476
+ .edgex-editor-preview summary,
477
+ .rich-content summary,
478
+ edgex-editor-preview summary {
479
+ cursor: pointer;
480
+ color: var(--edgex-editor-preview-text-primary);
481
+ font-weight: 500;
482
+ }
483
+
484
+ .edgex-editor-preview summary + *,
485
+ .rich-content summary + *,
486
+ edgex-editor-preview summary + * {
487
+ margin-top: 0.75rem;
488
+ }
489
+
490
+ .edgex-editor-preview .wysiwyg-table,
491
+ .rich-content .wysiwyg-table,
492
+ edgex-editor-preview .wysiwyg-table {
493
+ margin: 1rem 0;
494
+ max-width: 100%;
495
+ overflow-x: auto;
496
+ border: 1px solid var(--edgex-editor-preview-line-divider-tertiary);
497
+ border-radius: 0.75rem;
498
+ background: var(--edgex-editor-preview-fill-page-secondary);
499
+ }
500
+
501
+ .edgex-editor-preview table,
502
+ .rich-content table,
503
+ edgex-editor-preview table {
504
+ display: table;
505
+ margin: 1rem 0;
506
+ width: 100%;
507
+ border: 1px solid var(--edgex-editor-preview-line-divider-tertiary);
508
+ border-radius: 0.75rem;
509
+ border-spacing: 0;
510
+ background: var(--edgex-editor-preview-fill-page-secondary);
511
+ text-align: left;
512
+ }
513
+
514
+ .edgex-editor-preview caption,
515
+ .rich-content caption,
516
+ edgex-editor-preview caption {
517
+ caption-side: top;
518
+ padding: 0.75rem 1rem;
519
+ border-bottom: 1px solid var(--edgex-editor-preview-line-divider-tertiary);
520
+ color: var(--edgex-editor-preview-text-primary);
521
+ font-weight: 500;
522
+ text-align: left;
523
+ }
524
+
525
+ .edgex-editor-preview .wysiwyg-table table,
526
+ .rich-content .wysiwyg-table table,
527
+ edgex-editor-preview .wysiwyg-table table {
528
+ margin: 0;
529
+ border: 0;
530
+ border-radius: 0;
531
+ background: transparent;
532
+ }
533
+
534
+ .edgex-editor-preview th,
535
+ .edgex-editor-preview td,
536
+ .rich-content th,
537
+ .rich-content td,
538
+ edgex-editor-preview th,
539
+ edgex-editor-preview td {
540
+ min-width: 8rem;
541
+ padding: 0.75rem 1rem;
542
+ border-bottom: 1px solid var(--edgex-editor-preview-line-divider-tertiary);
543
+ color: var(--edgex-editor-preview-text-secondary);
544
+ vertical-align: top;
545
+ }
546
+
547
+ .edgex-editor-preview th,
548
+ .rich-content th,
549
+ edgex-editor-preview th {
550
+ color: var(--edgex-editor-preview-text-primary);
551
+ font-weight: 500;
552
+ }
553
+
554
+ .edgex-editor-preview thead th,
555
+ .rich-content thead th,
556
+ edgex-editor-preview thead th {
557
+ color: var(--edgex-editor-preview-text-tertiary);
558
+ font-size: 0.75rem;
559
+ line-height: 1.5;
560
+ }
561
+
562
+ .edgex-editor-preview tfoot th,
563
+ .edgex-editor-preview tfoot td,
564
+ .rich-content tfoot th,
565
+ .rich-content tfoot td,
566
+ edgex-editor-preview tfoot th,
567
+ edgex-editor-preview tfoot td {
568
+ background: var(--edgex-editor-preview-fill-page-tertiary);
569
+ color: var(--edgex-editor-preview-text-primary);
570
+ font-weight: 500;
571
+ }
572
+
573
+ .edgex-editor-preview tbody:last-child tr:last-child td,
574
+ .edgex-editor-preview tbody:last-child tr:last-child th,
575
+ .edgex-editor-preview tfoot tr:last-child td,
576
+ .edgex-editor-preview tfoot tr:last-child th,
577
+ .rich-content tbody:last-child tr:last-child td,
578
+ .rich-content tbody:last-child tr:last-child th,
579
+ .rich-content tfoot tr:last-child td,
580
+ .rich-content tfoot tr:last-child th,
581
+ edgex-editor-preview tbody:last-child tr:last-child td,
582
+ edgex-editor-preview tbody:last-child tr:last-child th,
583
+ edgex-editor-preview tfoot tr:last-child td,
584
+ edgex-editor-preview tfoot tr:last-child th {
585
+ border-bottom: 0;
586
+ }
587
+
588
+ @media (max-width: 768px) {
589
+ .edgex-editor-preview,
590
+ .rich-content,
591
+ edgex-editor-preview {
592
+ overflow-wrap: anywhere;
593
+ font-size: 0.8125rem;
594
+ line-height: 1.6154;
595
+ }
596
+
597
+ .edgex-editor-preview p,
598
+ .edgex-editor-preview div,
599
+ .edgex-editor-preview ul,
600
+ .edgex-editor-preview ol,
601
+ .edgex-editor-preview dl,
602
+ .rich-content p,
603
+ .rich-content div,
604
+ .rich-content ul,
605
+ .rich-content ol,
606
+ .rich-content dl,
607
+ edgex-editor-preview p,
608
+ edgex-editor-preview div,
609
+ edgex-editor-preview ul,
610
+ edgex-editor-preview ol,
611
+ edgex-editor-preview dl {
612
+ margin-bottom: 0.875rem;
613
+ }
614
+
615
+ .edgex-editor-preview section,
616
+ .rich-content section,
617
+ edgex-editor-preview section {
618
+ margin: 1.25rem 0;
619
+ }
620
+
621
+ .edgex-editor-preview h1,
622
+ .edgex-editor-preview h2,
623
+ .edgex-editor-preview h3,
624
+ .edgex-editor-preview h4,
625
+ .edgex-editor-preview h5,
626
+ .edgex-editor-preview h6,
627
+ .rich-content h1,
628
+ .rich-content h2,
629
+ .rich-content h3,
630
+ .rich-content h4,
631
+ .rich-content h5,
632
+ .rich-content h6,
633
+ edgex-editor-preview h1,
634
+ edgex-editor-preview h2,
635
+ edgex-editor-preview h3,
636
+ edgex-editor-preview h4,
637
+ edgex-editor-preview h5,
638
+ edgex-editor-preview h6 {
639
+ margin-top: 1.25rem;
640
+ margin-bottom: 0.625rem;
641
+ }
642
+
643
+ .edgex-editor-preview h1,
644
+ .rich-content h1,
645
+ edgex-editor-preview h1 {
646
+ margin-top: 1.5rem;
647
+ margin-bottom: 0.75rem;
648
+ font-size: 1.875rem;
649
+ line-height: 1.3334;
650
+ }
651
+
652
+ .edgex-editor-preview h2,
653
+ .rich-content h2,
654
+ edgex-editor-preview h2 {
655
+ margin-top: 1.375rem;
656
+ margin-bottom: 0.75rem;
657
+ font-size: 1.125rem;
658
+ line-height: 1.4445;
659
+ }
660
+
661
+ .edgex-editor-preview h3,
662
+ .rich-content h3,
663
+ edgex-editor-preview h3 {
664
+ font-size: 1rem;
665
+ line-height: 1.5;
666
+ }
667
+
668
+ .edgex-editor-preview h4,
669
+ .rich-content h4,
670
+ edgex-editor-preview h4,
671
+ .edgex-editor-preview h5,
672
+ .rich-content h5,
673
+ edgex-editor-preview h5 {
674
+ font-size: 0.9375rem;
675
+ line-height: 1.5334;
676
+ }
677
+
678
+ .edgex-editor-preview h6,
679
+ .rich-content h6,
680
+ edgex-editor-preview h6 {
681
+ font-size: 0.6875rem;
682
+ line-height: 1.4546;
683
+ }
684
+
685
+ .edgex-editor-preview ul,
686
+ .edgex-editor-preview ol,
687
+ .rich-content ul,
688
+ .rich-content ol,
689
+ edgex-editor-preview ul,
690
+ edgex-editor-preview ol {
691
+ padding-left: 1.125rem;
692
+ }
693
+
694
+ .edgex-editor-preview blockquote,
695
+ .rich-content blockquote,
696
+ edgex-editor-preview blockquote {
697
+ margin: 0.875rem 0;
698
+ border-left-width: 3px;
699
+ padding-left: 1rem;
700
+ }
701
+
702
+ .edgex-editor-preview pre,
703
+ .edgex-editor-preview figure,
704
+ .edgex-editor-preview table,
705
+ .edgex-editor-preview .wysiwyg-table,
706
+ .edgex-editor-preview details,
707
+ .rich-content pre,
708
+ .rich-content figure,
709
+ .rich-content table,
710
+ .rich-content .wysiwyg-table,
711
+ .rich-content details,
712
+ edgex-editor-preview pre,
713
+ edgex-editor-preview figure,
714
+ edgex-editor-preview table,
715
+ edgex-editor-preview .wysiwyg-table,
716
+ edgex-editor-preview details {
717
+ margin: 0.875rem 0;
718
+ }
719
+
720
+ .edgex-editor-preview pre,
721
+ .edgex-editor-preview details,
722
+ .rich-content pre,
723
+ .rich-content details,
724
+ edgex-editor-preview pre,
725
+ edgex-editor-preview details {
726
+ border-radius: 0.625rem;
727
+ padding: 0.875rem;
728
+ }
729
+
730
+ .edgex-editor-preview code,
731
+ .edgex-editor-preview kbd,
732
+ .rich-content code,
733
+ .rich-content kbd,
734
+ edgex-editor-preview code,
735
+ edgex-editor-preview kbd {
736
+ font-size: 0.6875rem;
737
+ }
738
+
739
+ .edgex-editor-preview hr,
740
+ .rich-content hr,
741
+ edgex-editor-preview hr {
742
+ margin: 1.5rem 0;
743
+ }
744
+
745
+ .edgex-editor-preview img,
746
+ .edgex-editor-preview video,
747
+ .rich-content img,
748
+ .rich-content video,
749
+ edgex-editor-preview img,
750
+ edgex-editor-preview video {
751
+ border-radius: 0.75rem;
752
+ }
753
+
754
+ .edgex-editor-preview table,
755
+ .edgex-editor-preview .wysiwyg-table,
756
+ .rich-content table,
757
+ .rich-content .wysiwyg-table,
758
+ edgex-editor-preview table,
759
+ edgex-editor-preview .wysiwyg-table {
760
+ border-radius: 0.625rem;
761
+ }
762
+
763
+ .edgex-editor-preview caption,
764
+ .rich-content caption,
765
+ edgex-editor-preview caption {
766
+ padding: 0.625rem 0.75rem;
767
+ }
768
+
769
+ .edgex-editor-preview th,
770
+ .edgex-editor-preview td,
771
+ .rich-content th,
772
+ .rich-content td,
773
+ edgex-editor-preview th,
774
+ edgex-editor-preview td {
775
+ min-width: 7rem;
776
+ padding: 0.625rem 0.75rem;
777
+ }
778
+ }