@syncfusion/ej2-angular-richtexteditor 20.2.43-ngcc → 20.2.43
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/esm2020/public_api.mjs +3 -0
- package/esm2020/src/index.mjs +5 -0
- package/esm2020/src/rich-text-editor/richtexteditor-all.module.mjs +59 -0
- package/esm2020/src/rich-text-editor/richtexteditor.component.mjs +168 -0
- package/esm2020/src/rich-text-editor/richtexteditor.module.mjs +25 -0
- package/esm2020/syncfusion-ej2-angular-richtexteditor.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-richtexteditor.mjs +252 -0
- package/fesm2015/syncfusion-ej2-angular-richtexteditor.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-richtexteditor.mjs +252 -0
- package/fesm2020/syncfusion-ej2-angular-richtexteditor.mjs.map +1 -0
- package/package.json +27 -13
- package/schematics/utils/lib-details.ts +2 -2
- package/src/rich-text-editor/richtexteditor-all.module.d.ts +6 -0
- package/src/rich-text-editor/richtexteditor.component.d.ts +3 -0
- package/src/rich-text-editor/richtexteditor.module.d.ts +6 -0
- package/styles/_all.scss +1 -0
- package/styles/bootstrap-dark.css +35 -34
- package/styles/bootstrap.css +35 -34
- package/styles/bootstrap4.css +35 -34
- package/styles/bootstrap5-dark.css +35 -34
- package/styles/bootstrap5.css +35 -34
- package/styles/fabric-dark.css +35 -34
- package/styles/fabric.css +35 -34
- package/styles/fluent-dark.css +35 -34
- package/styles/fluent.css +35 -34
- package/styles/highcontrast-light.css +35 -34
- package/styles/highcontrast.css +35 -34
- package/styles/material-dark.css +35 -34
- package/styles/material.css +35 -34
- package/styles/rich-text-editor/_all.scss +2 -0
- package/styles/rich-text-editor/_bootstrap-dark-definition.scss +208 -0
- package/styles/rich-text-editor/_bootstrap-definition.scss +263 -0
- package/styles/rich-text-editor/_bootstrap4-definition.scss +390 -0
- package/styles/rich-text-editor/_bootstrap5-dark-definition.scss +1 -0
- package/styles/rich-text-editor/_bootstrap5-definition.scss +193 -0
- package/styles/rich-text-editor/_fabric-dark-definition.scss +189 -0
- package/styles/rich-text-editor/_fabric-definition.scss +187 -0
- package/styles/rich-text-editor/_fluent-dark-definition.scss +1 -0
- package/styles/rich-text-editor/_fluent-definition.scss +196 -0
- package/styles/rich-text-editor/_fusionnew-definition.scss +193 -0
- package/styles/rich-text-editor/_highcontrast-definition.scss +187 -0
- package/styles/rich-text-editor/_highcontrast-light-definition.scss +187 -0
- package/styles/rich-text-editor/_layout.scss +1783 -0
- package/styles/rich-text-editor/_material-dark-definition.scss +191 -0
- package/styles/rich-text-editor/_material-definition.scss +189 -0
- package/styles/rich-text-editor/_material3-definition.scss +193 -0
- package/styles/rich-text-editor/_tailwind-dark-definition.scss +1 -0
- package/styles/rich-text-editor/_tailwind-definition.scss +191 -0
- package/styles/rich-text-editor/_theme.scss +644 -0
- package/styles/rich-text-editor/bootstrap-dark.css +35 -34
- package/styles/rich-text-editor/bootstrap-dark.scss +4 -1
- package/styles/rich-text-editor/bootstrap.css +35 -34
- package/styles/rich-text-editor/bootstrap.scss +4 -1
- package/styles/rich-text-editor/bootstrap4.css +35 -34
- package/styles/rich-text-editor/bootstrap4.scss +4 -1
- package/styles/rich-text-editor/bootstrap5-dark.css +35 -34
- package/styles/rich-text-editor/bootstrap5-dark.scss +4 -1
- package/styles/rich-text-editor/bootstrap5.css +35 -34
- package/styles/rich-text-editor/bootstrap5.scss +4 -1
- package/styles/rich-text-editor/fabric-dark.css +35 -34
- package/styles/rich-text-editor/fabric-dark.scss +4 -1
- package/styles/rich-text-editor/fabric.css +35 -34
- package/styles/rich-text-editor/fabric.scss +4 -1
- package/styles/rich-text-editor/fluent-dark.css +35 -34
- package/styles/rich-text-editor/fluent-dark.scss +4 -1
- package/styles/rich-text-editor/fluent.css +35 -34
- package/styles/rich-text-editor/fluent.scss +4 -1
- package/styles/rich-text-editor/highcontrast-light.css +35 -34
- package/styles/rich-text-editor/highcontrast-light.scss +4 -1
- package/styles/rich-text-editor/highcontrast.css +35 -34
- package/styles/rich-text-editor/highcontrast.scss +4 -1
- package/styles/rich-text-editor/icons/_bootstrap-dark.scss +305 -0
- package/styles/rich-text-editor/icons/_bootstrap.scss +305 -0
- package/styles/rich-text-editor/icons/_bootstrap4.scss +305 -0
- package/styles/rich-text-editor/icons/_bootstrap5-dark.scss +1 -0
- package/styles/rich-text-editor/icons/_bootstrap5.scss +304 -0
- package/styles/rich-text-editor/icons/_fabric-dark.scss +305 -0
- package/styles/rich-text-editor/icons/_fabric.scss +305 -0
- package/styles/rich-text-editor/icons/_fluent-dark.scss +1 -0
- package/styles/rich-text-editor/icons/_fluent.scss +304 -0
- package/styles/rich-text-editor/icons/_fusionnew.scss +304 -0
- package/styles/rich-text-editor/icons/_highcontrast-light.scss +305 -0
- package/styles/rich-text-editor/icons/_highcontrast.scss +305 -0
- package/styles/rich-text-editor/icons/_material-dark.scss +305 -0
- package/styles/rich-text-editor/icons/_material.scss +305 -0
- package/styles/rich-text-editor/icons/_material3.scss +304 -0
- package/styles/rich-text-editor/icons/_tailwind-dark.scss +1 -0
- package/styles/rich-text-editor/icons/_tailwind.scss +304 -0
- package/styles/rich-text-editor/material-dark.css +35 -34
- package/styles/rich-text-editor/material-dark.scss +4 -1
- package/styles/rich-text-editor/material.css +35 -34
- package/styles/rich-text-editor/material.scss +4 -1
- package/styles/rich-text-editor/tailwind-dark.css +35 -34
- package/styles/rich-text-editor/tailwind-dark.scss +4 -1
- package/styles/rich-text-editor/tailwind.css +35 -34
- package/styles/rich-text-editor/tailwind.scss +4 -1
- package/styles/tailwind-dark.css +35 -34
- package/styles/tailwind.css +35 -34
- package/syncfusion-ej2-angular-richtexteditor.d.ts +5 -0
- package/@syncfusion/ej2-angular-richtexteditor.es5.js +0 -303
- package/@syncfusion/ej2-angular-richtexteditor.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-richtexteditor.js +0 -284
- package/@syncfusion/ej2-angular-richtexteditor.js.map +0 -1
- package/CHANGELOG.md +0 -1088
- package/dist/ej2-angular-richtexteditor.umd.js +0 -726
- package/dist/ej2-angular-richtexteditor.umd.js.map +0 -1
- package/dist/ej2-angular-richtexteditor.umd.min.js +0 -11
- package/dist/ej2-angular-richtexteditor.umd.min.js.map +0 -1
- package/ej2-angular-richtexteditor.d.ts +0 -5
- package/ej2-angular-richtexteditor.metadata.json +0 -1
- package/postinstall/tagchange.js +0 -18
- package/schematics/collection.json +0 -40
- package/schematics/generators/richtexteditor-iframe/index.d.ts +0 -3
- package/schematics/generators/richtexteditor-iframe/index.js +0 -8
- package/schematics/generators/richtexteditor-iframe/sample-details.d.ts +0 -5
- package/schematics/generators/richtexteditor-iframe/sample-details.js +0 -7
- package/schematics/generators/richtexteditor-iframe/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -3
- package/schematics/generators/richtexteditor-iframe/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -44
- package/schematics/generators/richtexteditor-iframe/schema.d.ts +0 -3
- package/schematics/generators/richtexteditor-iframe/schema.js +0 -2
- package/schematics/generators/richtexteditor-iframe/schema.json +0 -125
- package/schematics/generators/richtexteditor-inline/index.d.ts +0 -3
- package/schematics/generators/richtexteditor-inline/index.js +0 -8
- package/schematics/generators/richtexteditor-inline/sample-details.d.ts +0 -5
- package/schematics/generators/richtexteditor-inline/sample-details.js +0 -7
- package/schematics/generators/richtexteditor-inline/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -3
- package/schematics/generators/richtexteditor-inline/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -10
- package/schematics/generators/richtexteditor-inline/schema.d.ts +0 -3
- package/schematics/generators/richtexteditor-inline/schema.js +0 -2
- package/schematics/generators/richtexteditor-inline/schema.json +0 -125
- package/schematics/generators/richtexteditor-markdown/index.d.ts +0 -3
- package/schematics/generators/richtexteditor-markdown/index.js +0 -8
- package/schematics/generators/richtexteditor-markdown/sample-details.d.ts +0 -5
- package/schematics/generators/richtexteditor-markdown/sample-details.js +0 -7
- package/schematics/generators/richtexteditor-markdown/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -3
- package/schematics/generators/richtexteditor-markdown/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -13
- package/schematics/generators/richtexteditor-markdown/schema.d.ts +0 -3
- package/schematics/generators/richtexteditor-markdown/schema.js +0 -2
- package/schematics/generators/richtexteditor-markdown/schema.json +0 -125
- package/schematics/generators/richtexteditor-overview/images/__path__/__name@dasherize__/RTEImage-Feather.png +0 -0
- package/schematics/generators/richtexteditor-overview/index.d.ts +0 -3
- package/schematics/generators/richtexteditor-overview/index.js +0 -8
- package/schematics/generators/richtexteditor-overview/sample-details.d.ts +0 -5
- package/schematics/generators/richtexteditor-overview/sample-details.js +0 -7
- package/schematics/generators/richtexteditor-overview/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -3
- package/schematics/generators/richtexteditor-overview/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -47
- package/schematics/generators/richtexteditor-overview/schema.d.ts +0 -3
- package/schematics/generators/richtexteditor-overview/schema.js +0 -2
- package/schematics/generators/richtexteditor-overview/schema.json +0 -125
- package/schematics/generators/richtexteditor-reactform/index.d.ts +0 -3
- package/schematics/generators/richtexteditor-reactform/index.js +0 -8
- package/schematics/generators/richtexteditor-reactform/sample-details.d.ts +0 -5
- package/schematics/generators/richtexteditor-reactform/sample-details.js +0 -7
- package/schematics/generators/richtexteditor-reactform/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -3
- package/schematics/generators/richtexteditor-reactform/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -20
- package/schematics/generators/richtexteditor-reactform/schema.d.ts +0 -3
- package/schematics/generators/richtexteditor-reactform/schema.js +0 -2
- package/schematics/generators/richtexteditor-reactform/schema.json +0 -125
- package/schematics/generators/richtexteditor-templatedriven/index.d.ts +0 -3
- package/schematics/generators/richtexteditor-templatedriven/index.js +0 -8
- package/schematics/generators/richtexteditor-templatedriven/sample-details.d.ts +0 -5
- package/schematics/generators/richtexteditor-templatedriven/sample-details.js +0 -7
- package/schematics/generators/richtexteditor-templatedriven/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -3
- package/schematics/generators/richtexteditor-templatedriven/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -19
- package/schematics/generators/richtexteditor-templatedriven/schema.d.ts +0 -3
- package/schematics/generators/richtexteditor-templatedriven/schema.js +0 -2
- package/schematics/generators/richtexteditor-templatedriven/schema.json +0 -125
- package/schematics/ng-add/index.d.ts +0 -3
- package/schematics/ng-add/index.js +0 -9
- package/schematics/ng-add/schema.d.ts +0 -13
- package/schematics/ng-add/schema.js +0 -2
- package/schematics/ng-add/schema.json +0 -34
- package/schematics/tsconfig.json +0 -25
- package/schematics/utils/lib-details.d.ts +0 -4
- package/schematics/utils/lib-details.js +0 -6
|
@@ -413,31 +413,31 @@
|
|
|
413
413
|
}
|
|
414
414
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-edit-table,
|
|
415
415
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-edit-table {
|
|
416
|
-
max-height: 283px !important;
|
|
416
|
+
max-height: 283px !important; /* stylelint-disable-line declaration-no-important */
|
|
417
417
|
}
|
|
418
418
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-edit-table-prop-dialog,
|
|
419
419
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-edit-table-prop-dialog {
|
|
420
|
-
max-height: 388px !important;
|
|
420
|
+
max-height: 388px !important; /* stylelint-disable-line declaration-no-important */
|
|
421
421
|
}
|
|
422
422
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-link-dialog,
|
|
423
423
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-link-dialog {
|
|
424
|
-
max-height: 378px !important;
|
|
424
|
+
max-height: 378px !important; /* stylelint-disable-line declaration-no-important */
|
|
425
425
|
}
|
|
426
426
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-dialog,
|
|
427
427
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-dialog {
|
|
428
|
-
min-height: 397px !important;
|
|
428
|
+
min-height: 397px !important; /* stylelint-disable-line declaration-no-important */
|
|
429
429
|
}
|
|
430
430
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-link-dialog,
|
|
431
431
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-link-dialog {
|
|
432
|
-
max-height: 211px !important;
|
|
432
|
+
max-height: 211px !important; /* stylelint-disable-line declaration-no-important */
|
|
433
433
|
}
|
|
434
434
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-size-dialog,
|
|
435
435
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-size-dialog {
|
|
436
|
-
max-height: 293px !important;
|
|
436
|
+
max-height: 293px !important; /* stylelint-disable-line declaration-no-important */
|
|
437
437
|
}
|
|
438
438
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-alt-dialog,
|
|
439
439
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-alt-dialog {
|
|
440
|
-
min-height: 397px !important;
|
|
440
|
+
min-height: 397px !important; /* stylelint-disable-line declaration-no-important */
|
|
441
441
|
}
|
|
442
442
|
|
|
443
443
|
.e-richtexteditor {
|
|
@@ -463,13 +463,13 @@
|
|
|
463
463
|
}
|
|
464
464
|
.e-richtexteditor.e-rte-full-screen {
|
|
465
465
|
bottom: 0;
|
|
466
|
-
height: 100% !important;
|
|
466
|
+
height: 100% !important; /* stylelint-disable-line declaration-no-important */
|
|
467
467
|
left: 0;
|
|
468
468
|
overflow: auto;
|
|
469
469
|
position: fixed;
|
|
470
470
|
right: 0;
|
|
471
471
|
top: 0;
|
|
472
|
-
width: 100% !important;
|
|
472
|
+
width: 100% !important; /* stylelint-disable-line declaration-no-important */
|
|
473
473
|
z-index: 999;
|
|
474
474
|
}
|
|
475
475
|
.e-richtexteditor.e-rte-full-screen .e-resize-handle {
|
|
@@ -479,25 +479,25 @@
|
|
|
479
479
|
height: calc(100% - 42px);
|
|
480
480
|
}
|
|
481
481
|
.e-richtexteditor.e-rte-full-screen .e-rte-edit-table {
|
|
482
|
-
max-height: 232px !important;
|
|
482
|
+
max-height: 232px !important; /* stylelint-disable-line declaration-no-important */
|
|
483
483
|
}
|
|
484
484
|
.e-richtexteditor.e-rte-full-screen .e-rte-edit-table-prop-dialog {
|
|
485
|
-
max-height: 340px !important;
|
|
485
|
+
max-height: 340px !important; /* stylelint-disable-line declaration-no-important */
|
|
486
486
|
}
|
|
487
487
|
.e-richtexteditor.e-rte-full-screen .e-rte-link-dialog {
|
|
488
|
-
max-height: 331px !important;
|
|
488
|
+
max-height: 331px !important; /* stylelint-disable-line declaration-no-important */
|
|
489
489
|
}
|
|
490
490
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-dialog {
|
|
491
|
-
max-height: 363px !important;
|
|
491
|
+
max-height: 363px !important; /* stylelint-disable-line declaration-no-important */
|
|
492
492
|
}
|
|
493
493
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-link-dialog {
|
|
494
|
-
max-height: 173px !important;
|
|
494
|
+
max-height: 173px !important; /* stylelint-disable-line declaration-no-important */
|
|
495
495
|
}
|
|
496
496
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-size-dialog {
|
|
497
|
-
max-height: 236px !important;
|
|
497
|
+
max-height: 236px !important; /* stylelint-disable-line declaration-no-important */
|
|
498
498
|
}
|
|
499
499
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-alt-dialog {
|
|
500
|
-
max-height: 363px !important;
|
|
500
|
+
max-height: 363px !important; /* stylelint-disable-line declaration-no-important */
|
|
501
501
|
}
|
|
502
502
|
.e-richtexteditor.e-rtl .e-rte-character-count {
|
|
503
503
|
left: 0;
|
|
@@ -700,6 +700,7 @@
|
|
|
700
700
|
}
|
|
701
701
|
.e-richtexteditor .e-rte-content,
|
|
702
702
|
.e-richtexteditor .e-source-content {
|
|
703
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
703
704
|
-webkit-overflow-scrolling: touch;
|
|
704
705
|
overflow: auto;
|
|
705
706
|
transition: 100ms ease-out;
|
|
@@ -736,39 +737,39 @@
|
|
|
736
737
|
.e-richtexteditor .e-rte-content .e-content h1,
|
|
737
738
|
.e-richtexteditor .e-source-content .e-content h1 {
|
|
738
739
|
font-size: 2.17em;
|
|
739
|
-
font-weight:
|
|
740
|
+
font-weight: normal;
|
|
740
741
|
line-height: 1;
|
|
741
742
|
margin: 10px 0;
|
|
742
743
|
}
|
|
743
744
|
.e-richtexteditor .e-rte-content .e-content h2,
|
|
744
745
|
.e-richtexteditor .e-source-content .e-content h2 {
|
|
745
746
|
font-size: 1.74em;
|
|
746
|
-
font-weight:
|
|
747
|
+
font-weight: normal;
|
|
747
748
|
margin: 10px 0;
|
|
748
749
|
}
|
|
749
750
|
.e-richtexteditor .e-rte-content .e-content h3,
|
|
750
751
|
.e-richtexteditor .e-source-content .e-content h3 {
|
|
751
752
|
font-size: 1.31em;
|
|
752
|
-
font-weight:
|
|
753
|
+
font-weight: normal;
|
|
753
754
|
margin: 10px 0;
|
|
754
755
|
}
|
|
755
756
|
.e-richtexteditor .e-rte-content .e-content h4,
|
|
756
757
|
.e-richtexteditor .e-source-content .e-content h4 {
|
|
757
758
|
font-size: 16px;
|
|
758
|
-
font-weight:
|
|
759
|
+
font-weight: normal;
|
|
759
760
|
line-height: 1.5;
|
|
760
761
|
margin: 0;
|
|
761
762
|
}
|
|
762
763
|
.e-richtexteditor .e-rte-content .e-content h5,
|
|
763
764
|
.e-richtexteditor .e-source-content .e-content h5 {
|
|
764
765
|
font-size: 0.8em;
|
|
765
|
-
font-weight:
|
|
766
|
+
font-weight: normal;
|
|
766
767
|
margin: 0;
|
|
767
768
|
}
|
|
768
769
|
.e-richtexteditor .e-rte-content .e-content h6,
|
|
769
770
|
.e-richtexteditor .e-source-content .e-content h6 {
|
|
770
771
|
font-size: 0.65em;
|
|
771
|
-
font-weight:
|
|
772
|
+
font-weight: normal;
|
|
772
773
|
margin: 0;
|
|
773
774
|
}
|
|
774
775
|
.e-richtexteditor .e-rte-content .e-content blockquote,
|
|
@@ -796,7 +797,7 @@
|
|
|
796
797
|
.e-richtexteditor .e-rte-content .e-content b,
|
|
797
798
|
.e-richtexteditor .e-source-content .e-content strong,
|
|
798
799
|
.e-richtexteditor .e-source-content .e-content b {
|
|
799
|
-
font-weight:
|
|
800
|
+
font-weight: bold;
|
|
800
801
|
}
|
|
801
802
|
.e-richtexteditor .e-rte-content .e-content a,
|
|
802
803
|
.e-richtexteditor .e-source-content .e-content a {
|
|
@@ -964,37 +965,37 @@
|
|
|
964
965
|
font-weight: bold;
|
|
965
966
|
}
|
|
966
967
|
.e-rte-dropdown-popup ul .e-item.e-segoe-ui {
|
|
967
|
-
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
|
968
|
+
font-family: "Segoe UI", "Tahoma", "Geneva", "Verdana", sans-serif;
|
|
968
969
|
}
|
|
969
970
|
.e-rte-dropdown-popup ul .e-item.e-arial {
|
|
970
|
-
font-family: Arial, Helvetica, sans-serif;
|
|
971
|
+
font-family: "Arial", "Helvetica", sans-serif;
|
|
971
972
|
}
|
|
972
973
|
.e-rte-dropdown-popup ul .e-item.e-courier-new {
|
|
973
|
-
font-family: Courier New, Courier, monospace;
|
|
974
|
+
font-family: "Courier New", "Courier", monospace;
|
|
974
975
|
}
|
|
975
976
|
.e-rte-dropdown-popup ul .e-item.e-georgia {
|
|
976
|
-
font-family: Georgia, "Times New Roman", Times, serif;
|
|
977
|
+
font-family: "Georgia", "Times New Roman", "Times", serif;
|
|
977
978
|
}
|
|
978
979
|
.e-rte-dropdown-popup ul .e-item.e-helvetica-neue {
|
|
979
|
-
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
980
|
+
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
|
|
980
981
|
}
|
|
981
982
|
.e-rte-dropdown-popup ul .e-item.e-impact {
|
|
982
|
-
font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
|
|
983
|
+
font-family: "Impact", "Haettenschweiler", "Arial Narrow Bold", sans-serif;
|
|
983
984
|
}
|
|
984
985
|
.e-rte-dropdown-popup ul .e-item.e-lucida-console {
|
|
985
|
-
font-family: Lucida Console, Monaco, monospace;
|
|
986
|
+
font-family: "Lucida Console", "Monaco", monospace;
|
|
986
987
|
}
|
|
987
988
|
.e-rte-dropdown-popup ul .e-item.e-tahoma {
|
|
988
|
-
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
|
989
|
+
font-family: "Segoe UI", "Tahoma", "Geneva", "Verdana", sans-serif;
|
|
989
990
|
}
|
|
990
991
|
.e-rte-dropdown-popup ul .e-item.e-times-new-roman {
|
|
991
|
-
font-family: "Times New Roman", Times, serif;
|
|
992
|
+
font-family: "Times New Roman", "Times", serif;
|
|
992
993
|
}
|
|
993
994
|
.e-rte-dropdown-popup ul .e-item.e-trebuchet-ms {
|
|
994
|
-
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
|
|
995
|
+
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", "Arial", sans-serif;
|
|
995
996
|
}
|
|
996
997
|
.e-rte-dropdown-popup ul .e-item.e-verdana {
|
|
997
|
-
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
|
998
|
+
font-family: "Verdana", "Geneva", "Tahoma", sans-serif;
|
|
998
999
|
}
|
|
999
1000
|
.e-rte-dropdown-popup ul .e-item.e-roboto {
|
|
1000
1001
|
font-family: "Roboto", "Segoe UI", "GeezaPro", "DejaVu Serif", sans-serif;
|
package/styles/tailwind-dark.css
CHANGED
|
@@ -413,31 +413,31 @@
|
|
|
413
413
|
}
|
|
414
414
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-edit-table,
|
|
415
415
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-edit-table {
|
|
416
|
-
max-height: 283px !important;
|
|
416
|
+
max-height: 283px !important; /* stylelint-disable-line declaration-no-important */
|
|
417
417
|
}
|
|
418
418
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-edit-table-prop-dialog,
|
|
419
419
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-edit-table-prop-dialog {
|
|
420
|
-
max-height: 388px !important;
|
|
420
|
+
max-height: 388px !important; /* stylelint-disable-line declaration-no-important */
|
|
421
421
|
}
|
|
422
422
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-link-dialog,
|
|
423
423
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-link-dialog {
|
|
424
|
-
max-height: 378px !important;
|
|
424
|
+
max-height: 378px !important; /* stylelint-disable-line declaration-no-important */
|
|
425
425
|
}
|
|
426
426
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-dialog,
|
|
427
427
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-dialog {
|
|
428
|
-
min-height: 397px !important;
|
|
428
|
+
min-height: 397px !important; /* stylelint-disable-line declaration-no-important */
|
|
429
429
|
}
|
|
430
430
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-link-dialog,
|
|
431
431
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-link-dialog {
|
|
432
|
-
max-height: 211px !important;
|
|
432
|
+
max-height: 211px !important; /* stylelint-disable-line declaration-no-important */
|
|
433
433
|
}
|
|
434
434
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-size-dialog,
|
|
435
435
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-size-dialog {
|
|
436
|
-
max-height: 293px !important;
|
|
436
|
+
max-height: 293px !important; /* stylelint-disable-line declaration-no-important */
|
|
437
437
|
}
|
|
438
438
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-alt-dialog,
|
|
439
439
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-alt-dialog {
|
|
440
|
-
min-height: 397px !important;
|
|
440
|
+
min-height: 397px !important; /* stylelint-disable-line declaration-no-important */
|
|
441
441
|
}
|
|
442
442
|
|
|
443
443
|
.e-richtexteditor {
|
|
@@ -463,13 +463,13 @@
|
|
|
463
463
|
}
|
|
464
464
|
.e-richtexteditor.e-rte-full-screen {
|
|
465
465
|
bottom: 0;
|
|
466
|
-
height: 100% !important;
|
|
466
|
+
height: 100% !important; /* stylelint-disable-line declaration-no-important */
|
|
467
467
|
left: 0;
|
|
468
468
|
overflow: auto;
|
|
469
469
|
position: fixed;
|
|
470
470
|
right: 0;
|
|
471
471
|
top: 0;
|
|
472
|
-
width: 100% !important;
|
|
472
|
+
width: 100% !important; /* stylelint-disable-line declaration-no-important */
|
|
473
473
|
z-index: 999;
|
|
474
474
|
}
|
|
475
475
|
.e-richtexteditor.e-rte-full-screen .e-resize-handle {
|
|
@@ -479,25 +479,25 @@
|
|
|
479
479
|
height: calc(100% - 42px);
|
|
480
480
|
}
|
|
481
481
|
.e-richtexteditor.e-rte-full-screen .e-rte-edit-table {
|
|
482
|
-
max-height: 232px !important;
|
|
482
|
+
max-height: 232px !important; /* stylelint-disable-line declaration-no-important */
|
|
483
483
|
}
|
|
484
484
|
.e-richtexteditor.e-rte-full-screen .e-rte-edit-table-prop-dialog {
|
|
485
|
-
max-height: 340px !important;
|
|
485
|
+
max-height: 340px !important; /* stylelint-disable-line declaration-no-important */
|
|
486
486
|
}
|
|
487
487
|
.e-richtexteditor.e-rte-full-screen .e-rte-link-dialog {
|
|
488
|
-
max-height: 331px !important;
|
|
488
|
+
max-height: 331px !important; /* stylelint-disable-line declaration-no-important */
|
|
489
489
|
}
|
|
490
490
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-dialog {
|
|
491
|
-
max-height: 363px !important;
|
|
491
|
+
max-height: 363px !important; /* stylelint-disable-line declaration-no-important */
|
|
492
492
|
}
|
|
493
493
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-link-dialog {
|
|
494
|
-
max-height: 173px !important;
|
|
494
|
+
max-height: 173px !important; /* stylelint-disable-line declaration-no-important */
|
|
495
495
|
}
|
|
496
496
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-size-dialog {
|
|
497
|
-
max-height: 236px !important;
|
|
497
|
+
max-height: 236px !important; /* stylelint-disable-line declaration-no-important */
|
|
498
498
|
}
|
|
499
499
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-alt-dialog {
|
|
500
|
-
max-height: 363px !important;
|
|
500
|
+
max-height: 363px !important; /* stylelint-disable-line declaration-no-important */
|
|
501
501
|
}
|
|
502
502
|
.e-richtexteditor.e-rtl .e-rte-character-count {
|
|
503
503
|
left: 0;
|
|
@@ -700,6 +700,7 @@
|
|
|
700
700
|
}
|
|
701
701
|
.e-richtexteditor .e-rte-content,
|
|
702
702
|
.e-richtexteditor .e-source-content {
|
|
703
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
703
704
|
-webkit-overflow-scrolling: touch;
|
|
704
705
|
overflow: auto;
|
|
705
706
|
transition: 100ms ease-out;
|
|
@@ -736,39 +737,39 @@
|
|
|
736
737
|
.e-richtexteditor .e-rte-content .e-content h1,
|
|
737
738
|
.e-richtexteditor .e-source-content .e-content h1 {
|
|
738
739
|
font-size: 2.17em;
|
|
739
|
-
font-weight:
|
|
740
|
+
font-weight: normal;
|
|
740
741
|
line-height: 1;
|
|
741
742
|
margin: 10px 0;
|
|
742
743
|
}
|
|
743
744
|
.e-richtexteditor .e-rte-content .e-content h2,
|
|
744
745
|
.e-richtexteditor .e-source-content .e-content h2 {
|
|
745
746
|
font-size: 1.74em;
|
|
746
|
-
font-weight:
|
|
747
|
+
font-weight: normal;
|
|
747
748
|
margin: 10px 0;
|
|
748
749
|
}
|
|
749
750
|
.e-richtexteditor .e-rte-content .e-content h3,
|
|
750
751
|
.e-richtexteditor .e-source-content .e-content h3 {
|
|
751
752
|
font-size: 1.31em;
|
|
752
|
-
font-weight:
|
|
753
|
+
font-weight: normal;
|
|
753
754
|
margin: 10px 0;
|
|
754
755
|
}
|
|
755
756
|
.e-richtexteditor .e-rte-content .e-content h4,
|
|
756
757
|
.e-richtexteditor .e-source-content .e-content h4 {
|
|
757
758
|
font-size: 16px;
|
|
758
|
-
font-weight:
|
|
759
|
+
font-weight: normal;
|
|
759
760
|
line-height: 1.5;
|
|
760
761
|
margin: 0;
|
|
761
762
|
}
|
|
762
763
|
.e-richtexteditor .e-rte-content .e-content h5,
|
|
763
764
|
.e-richtexteditor .e-source-content .e-content h5 {
|
|
764
765
|
font-size: 0.8em;
|
|
765
|
-
font-weight:
|
|
766
|
+
font-weight: normal;
|
|
766
767
|
margin: 0;
|
|
767
768
|
}
|
|
768
769
|
.e-richtexteditor .e-rte-content .e-content h6,
|
|
769
770
|
.e-richtexteditor .e-source-content .e-content h6 {
|
|
770
771
|
font-size: 0.65em;
|
|
771
|
-
font-weight:
|
|
772
|
+
font-weight: normal;
|
|
772
773
|
margin: 0;
|
|
773
774
|
}
|
|
774
775
|
.e-richtexteditor .e-rte-content .e-content blockquote,
|
|
@@ -796,7 +797,7 @@
|
|
|
796
797
|
.e-richtexteditor .e-rte-content .e-content b,
|
|
797
798
|
.e-richtexteditor .e-source-content .e-content strong,
|
|
798
799
|
.e-richtexteditor .e-source-content .e-content b {
|
|
799
|
-
font-weight:
|
|
800
|
+
font-weight: bold;
|
|
800
801
|
}
|
|
801
802
|
.e-richtexteditor .e-rte-content .e-content a,
|
|
802
803
|
.e-richtexteditor .e-source-content .e-content a {
|
|
@@ -964,37 +965,37 @@
|
|
|
964
965
|
font-weight: bold;
|
|
965
966
|
}
|
|
966
967
|
.e-rte-dropdown-popup ul .e-item.e-segoe-ui {
|
|
967
|
-
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
|
968
|
+
font-family: "Segoe UI", "Tahoma", "Geneva", "Verdana", sans-serif;
|
|
968
969
|
}
|
|
969
970
|
.e-rte-dropdown-popup ul .e-item.e-arial {
|
|
970
|
-
font-family: Arial, Helvetica, sans-serif;
|
|
971
|
+
font-family: "Arial", "Helvetica", sans-serif;
|
|
971
972
|
}
|
|
972
973
|
.e-rte-dropdown-popup ul .e-item.e-courier-new {
|
|
973
|
-
font-family: Courier New, Courier, monospace;
|
|
974
|
+
font-family: "Courier New", "Courier", monospace;
|
|
974
975
|
}
|
|
975
976
|
.e-rte-dropdown-popup ul .e-item.e-georgia {
|
|
976
|
-
font-family: Georgia, "Times New Roman", Times, serif;
|
|
977
|
+
font-family: "Georgia", "Times New Roman", "Times", serif;
|
|
977
978
|
}
|
|
978
979
|
.e-rte-dropdown-popup ul .e-item.e-helvetica-neue {
|
|
979
|
-
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
980
|
+
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
|
|
980
981
|
}
|
|
981
982
|
.e-rte-dropdown-popup ul .e-item.e-impact {
|
|
982
|
-
font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
|
|
983
|
+
font-family: "Impact", "Haettenschweiler", "Arial Narrow Bold", sans-serif;
|
|
983
984
|
}
|
|
984
985
|
.e-rte-dropdown-popup ul .e-item.e-lucida-console {
|
|
985
|
-
font-family: Lucida Console, Monaco, monospace;
|
|
986
|
+
font-family: "Lucida Console", "Monaco", monospace;
|
|
986
987
|
}
|
|
987
988
|
.e-rte-dropdown-popup ul .e-item.e-tahoma {
|
|
988
|
-
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
|
989
|
+
font-family: "Segoe UI", "Tahoma", "Geneva", "Verdana", sans-serif;
|
|
989
990
|
}
|
|
990
991
|
.e-rte-dropdown-popup ul .e-item.e-times-new-roman {
|
|
991
|
-
font-family: "Times New Roman", Times, serif;
|
|
992
|
+
font-family: "Times New Roman", "Times", serif;
|
|
992
993
|
}
|
|
993
994
|
.e-rte-dropdown-popup ul .e-item.e-trebuchet-ms {
|
|
994
|
-
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
|
|
995
|
+
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", "Arial", sans-serif;
|
|
995
996
|
}
|
|
996
997
|
.e-rte-dropdown-popup ul .e-item.e-verdana {
|
|
997
|
-
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
|
998
|
+
font-family: "Verdana", "Geneva", "Tahoma", sans-serif;
|
|
998
999
|
}
|
|
999
1000
|
.e-rte-dropdown-popup ul .e-item.e-roboto {
|
|
1000
1001
|
font-family: "Roboto", "Segoe UI", "GeezaPro", "DejaVu Serif", sans-serif;
|
package/styles/tailwind.css
CHANGED
|
@@ -413,31 +413,31 @@
|
|
|
413
413
|
}
|
|
414
414
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-edit-table,
|
|
415
415
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-edit-table {
|
|
416
|
-
max-height: 283px !important;
|
|
416
|
+
max-height: 283px !important; /* stylelint-disable-line declaration-no-important */
|
|
417
417
|
}
|
|
418
418
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-edit-table-prop-dialog,
|
|
419
419
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-edit-table-prop-dialog {
|
|
420
|
-
max-height: 388px !important;
|
|
420
|
+
max-height: 388px !important; /* stylelint-disable-line declaration-no-important */
|
|
421
421
|
}
|
|
422
422
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-link-dialog,
|
|
423
423
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-link-dialog {
|
|
424
|
-
max-height: 378px !important;
|
|
424
|
+
max-height: 378px !important; /* stylelint-disable-line declaration-no-important */
|
|
425
425
|
}
|
|
426
426
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-dialog,
|
|
427
427
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-dialog {
|
|
428
|
-
min-height: 397px !important;
|
|
428
|
+
min-height: 397px !important; /* stylelint-disable-line declaration-no-important */
|
|
429
429
|
}
|
|
430
430
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-link-dialog,
|
|
431
431
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-link-dialog {
|
|
432
|
-
max-height: 211px !important;
|
|
432
|
+
max-height: 211px !important; /* stylelint-disable-line declaration-no-important */
|
|
433
433
|
}
|
|
434
434
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-size-dialog,
|
|
435
435
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-size-dialog {
|
|
436
|
-
max-height: 293px !important;
|
|
436
|
+
max-height: 293px !important; /* stylelint-disable-line declaration-no-important */
|
|
437
437
|
}
|
|
438
438
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-alt-dialog,
|
|
439
439
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-alt-dialog {
|
|
440
|
-
min-height: 397px !important;
|
|
440
|
+
min-height: 397px !important; /* stylelint-disable-line declaration-no-important */
|
|
441
441
|
}
|
|
442
442
|
|
|
443
443
|
.e-richtexteditor {
|
|
@@ -463,13 +463,13 @@
|
|
|
463
463
|
}
|
|
464
464
|
.e-richtexteditor.e-rte-full-screen {
|
|
465
465
|
bottom: 0;
|
|
466
|
-
height: 100% !important;
|
|
466
|
+
height: 100% !important; /* stylelint-disable-line declaration-no-important */
|
|
467
467
|
left: 0;
|
|
468
468
|
overflow: auto;
|
|
469
469
|
position: fixed;
|
|
470
470
|
right: 0;
|
|
471
471
|
top: 0;
|
|
472
|
-
width: 100% !important;
|
|
472
|
+
width: 100% !important; /* stylelint-disable-line declaration-no-important */
|
|
473
473
|
z-index: 999;
|
|
474
474
|
}
|
|
475
475
|
.e-richtexteditor.e-rte-full-screen .e-resize-handle {
|
|
@@ -479,25 +479,25 @@
|
|
|
479
479
|
height: calc(100% - 42px);
|
|
480
480
|
}
|
|
481
481
|
.e-richtexteditor.e-rte-full-screen .e-rte-edit-table {
|
|
482
|
-
max-height: 232px !important;
|
|
482
|
+
max-height: 232px !important; /* stylelint-disable-line declaration-no-important */
|
|
483
483
|
}
|
|
484
484
|
.e-richtexteditor.e-rte-full-screen .e-rte-edit-table-prop-dialog {
|
|
485
|
-
max-height: 340px !important;
|
|
485
|
+
max-height: 340px !important; /* stylelint-disable-line declaration-no-important */
|
|
486
486
|
}
|
|
487
487
|
.e-richtexteditor.e-rte-full-screen .e-rte-link-dialog {
|
|
488
|
-
max-height: 331px !important;
|
|
488
|
+
max-height: 331px !important; /* stylelint-disable-line declaration-no-important */
|
|
489
489
|
}
|
|
490
490
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-dialog {
|
|
491
|
-
max-height: 363px !important;
|
|
491
|
+
max-height: 363px !important; /* stylelint-disable-line declaration-no-important */
|
|
492
492
|
}
|
|
493
493
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-link-dialog {
|
|
494
|
-
max-height: 173px !important;
|
|
494
|
+
max-height: 173px !important; /* stylelint-disable-line declaration-no-important */
|
|
495
495
|
}
|
|
496
496
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-size-dialog {
|
|
497
|
-
max-height: 236px !important;
|
|
497
|
+
max-height: 236px !important; /* stylelint-disable-line declaration-no-important */
|
|
498
498
|
}
|
|
499
499
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-alt-dialog {
|
|
500
|
-
max-height: 363px !important;
|
|
500
|
+
max-height: 363px !important; /* stylelint-disable-line declaration-no-important */
|
|
501
501
|
}
|
|
502
502
|
.e-richtexteditor.e-rtl .e-rte-character-count {
|
|
503
503
|
left: 0;
|
|
@@ -700,6 +700,7 @@
|
|
|
700
700
|
}
|
|
701
701
|
.e-richtexteditor .e-rte-content,
|
|
702
702
|
.e-richtexteditor .e-source-content {
|
|
703
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
703
704
|
-webkit-overflow-scrolling: touch;
|
|
704
705
|
overflow: auto;
|
|
705
706
|
transition: 100ms ease-out;
|
|
@@ -736,39 +737,39 @@
|
|
|
736
737
|
.e-richtexteditor .e-rte-content .e-content h1,
|
|
737
738
|
.e-richtexteditor .e-source-content .e-content h1 {
|
|
738
739
|
font-size: 2.17em;
|
|
739
|
-
font-weight:
|
|
740
|
+
font-weight: normal;
|
|
740
741
|
line-height: 1;
|
|
741
742
|
margin: 10px 0;
|
|
742
743
|
}
|
|
743
744
|
.e-richtexteditor .e-rte-content .e-content h2,
|
|
744
745
|
.e-richtexteditor .e-source-content .e-content h2 {
|
|
745
746
|
font-size: 1.74em;
|
|
746
|
-
font-weight:
|
|
747
|
+
font-weight: normal;
|
|
747
748
|
margin: 10px 0;
|
|
748
749
|
}
|
|
749
750
|
.e-richtexteditor .e-rte-content .e-content h3,
|
|
750
751
|
.e-richtexteditor .e-source-content .e-content h3 {
|
|
751
752
|
font-size: 1.31em;
|
|
752
|
-
font-weight:
|
|
753
|
+
font-weight: normal;
|
|
753
754
|
margin: 10px 0;
|
|
754
755
|
}
|
|
755
756
|
.e-richtexteditor .e-rte-content .e-content h4,
|
|
756
757
|
.e-richtexteditor .e-source-content .e-content h4 {
|
|
757
758
|
font-size: 16px;
|
|
758
|
-
font-weight:
|
|
759
|
+
font-weight: normal;
|
|
759
760
|
line-height: 1.5;
|
|
760
761
|
margin: 0;
|
|
761
762
|
}
|
|
762
763
|
.e-richtexteditor .e-rte-content .e-content h5,
|
|
763
764
|
.e-richtexteditor .e-source-content .e-content h5 {
|
|
764
765
|
font-size: 0.8em;
|
|
765
|
-
font-weight:
|
|
766
|
+
font-weight: normal;
|
|
766
767
|
margin: 0;
|
|
767
768
|
}
|
|
768
769
|
.e-richtexteditor .e-rte-content .e-content h6,
|
|
769
770
|
.e-richtexteditor .e-source-content .e-content h6 {
|
|
770
771
|
font-size: 0.65em;
|
|
771
|
-
font-weight:
|
|
772
|
+
font-weight: normal;
|
|
772
773
|
margin: 0;
|
|
773
774
|
}
|
|
774
775
|
.e-richtexteditor .e-rte-content .e-content blockquote,
|
|
@@ -796,7 +797,7 @@
|
|
|
796
797
|
.e-richtexteditor .e-rte-content .e-content b,
|
|
797
798
|
.e-richtexteditor .e-source-content .e-content strong,
|
|
798
799
|
.e-richtexteditor .e-source-content .e-content b {
|
|
799
|
-
font-weight:
|
|
800
|
+
font-weight: bold;
|
|
800
801
|
}
|
|
801
802
|
.e-richtexteditor .e-rte-content .e-content a,
|
|
802
803
|
.e-richtexteditor .e-source-content .e-content a {
|
|
@@ -964,37 +965,37 @@
|
|
|
964
965
|
font-weight: bold;
|
|
965
966
|
}
|
|
966
967
|
.e-rte-dropdown-popup ul .e-item.e-segoe-ui {
|
|
967
|
-
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
|
968
|
+
font-family: "Segoe UI", "Tahoma", "Geneva", "Verdana", sans-serif;
|
|
968
969
|
}
|
|
969
970
|
.e-rte-dropdown-popup ul .e-item.e-arial {
|
|
970
|
-
font-family: Arial, Helvetica, sans-serif;
|
|
971
|
+
font-family: "Arial", "Helvetica", sans-serif;
|
|
971
972
|
}
|
|
972
973
|
.e-rte-dropdown-popup ul .e-item.e-courier-new {
|
|
973
|
-
font-family: Courier New, Courier, monospace;
|
|
974
|
+
font-family: "Courier New", "Courier", monospace;
|
|
974
975
|
}
|
|
975
976
|
.e-rte-dropdown-popup ul .e-item.e-georgia {
|
|
976
|
-
font-family: Georgia, "Times New Roman", Times, serif;
|
|
977
|
+
font-family: "Georgia", "Times New Roman", "Times", serif;
|
|
977
978
|
}
|
|
978
979
|
.e-rte-dropdown-popup ul .e-item.e-helvetica-neue {
|
|
979
|
-
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
980
|
+
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
|
|
980
981
|
}
|
|
981
982
|
.e-rte-dropdown-popup ul .e-item.e-impact {
|
|
982
|
-
font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
|
|
983
|
+
font-family: "Impact", "Haettenschweiler", "Arial Narrow Bold", sans-serif;
|
|
983
984
|
}
|
|
984
985
|
.e-rte-dropdown-popup ul .e-item.e-lucida-console {
|
|
985
|
-
font-family: Lucida Console, Monaco, monospace;
|
|
986
|
+
font-family: "Lucida Console", "Monaco", monospace;
|
|
986
987
|
}
|
|
987
988
|
.e-rte-dropdown-popup ul .e-item.e-tahoma {
|
|
988
|
-
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
|
989
|
+
font-family: "Segoe UI", "Tahoma", "Geneva", "Verdana", sans-serif;
|
|
989
990
|
}
|
|
990
991
|
.e-rte-dropdown-popup ul .e-item.e-times-new-roman {
|
|
991
|
-
font-family: "Times New Roman", Times, serif;
|
|
992
|
+
font-family: "Times New Roman", "Times", serif;
|
|
992
993
|
}
|
|
993
994
|
.e-rte-dropdown-popup ul .e-item.e-trebuchet-ms {
|
|
994
|
-
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
|
|
995
|
+
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", "Arial", sans-serif;
|
|
995
996
|
}
|
|
996
997
|
.e-rte-dropdown-popup ul .e-item.e-verdana {
|
|
997
|
-
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
|
998
|
+
font-family: "Verdana", "Geneva", "Tahoma", sans-serif;
|
|
998
999
|
}
|
|
999
1000
|
.e-rte-dropdown-popup ul .e-item.e-roboto {
|
|
1000
1001
|
font-family: "Roboto", "Segoe UI", "GeezaPro", "DejaVu Serif", sans-serif;
|