@syncfusion/ej2-angular-richtexteditor 20.2.40-ngcc → 20.2.40
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 -1085
- 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
|
@@ -408,31 +408,31 @@
|
|
|
408
408
|
}
|
|
409
409
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-edit-table,
|
|
410
410
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-edit-table {
|
|
411
|
-
max-height: 309px !important;
|
|
411
|
+
max-height: 309px !important; /* stylelint-disable-line declaration-no-important */
|
|
412
412
|
}
|
|
413
413
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-edit-table-prop-dialog,
|
|
414
414
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-edit-table-prop-dialog {
|
|
415
|
-
max-height: 400px !important;
|
|
415
|
+
max-height: 400px !important; /* stylelint-disable-line declaration-no-important */
|
|
416
416
|
}
|
|
417
417
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-link-dialog,
|
|
418
418
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-link-dialog {
|
|
419
|
-
max-height: 404px !important;
|
|
419
|
+
max-height: 404px !important; /* stylelint-disable-line declaration-no-important */
|
|
420
420
|
}
|
|
421
421
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-dialog,
|
|
422
422
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-dialog {
|
|
423
|
-
min-height: 430px !important;
|
|
423
|
+
min-height: 430px !important; /* stylelint-disable-line declaration-no-important */
|
|
424
424
|
}
|
|
425
425
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-link-dialog,
|
|
426
426
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-link-dialog {
|
|
427
|
-
max-height: 226px !important;
|
|
427
|
+
max-height: 226px !important; /* stylelint-disable-line declaration-no-important */
|
|
428
428
|
}
|
|
429
429
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-size-dialog,
|
|
430
430
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-size-dialog {
|
|
431
|
-
max-height: 305px !important;
|
|
431
|
+
max-height: 305px !important; /* stylelint-disable-line declaration-no-important */
|
|
432
432
|
}
|
|
433
433
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-alt-dialog,
|
|
434
434
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-alt-dialog {
|
|
435
|
-
min-height: 430px !important;
|
|
435
|
+
min-height: 430px !important; /* stylelint-disable-line declaration-no-important */
|
|
436
436
|
}
|
|
437
437
|
|
|
438
438
|
.e-richtexteditor {
|
|
@@ -458,13 +458,13 @@
|
|
|
458
458
|
}
|
|
459
459
|
.e-richtexteditor.e-rte-full-screen {
|
|
460
460
|
bottom: 0;
|
|
461
|
-
height: 100% !important;
|
|
461
|
+
height: 100% !important; /* stylelint-disable-line declaration-no-important */
|
|
462
462
|
left: 0;
|
|
463
463
|
overflow: auto;
|
|
464
464
|
position: fixed;
|
|
465
465
|
right: 0;
|
|
466
466
|
top: 0;
|
|
467
|
-
width: 100% !important;
|
|
467
|
+
width: 100% !important; /* stylelint-disable-line declaration-no-important */
|
|
468
468
|
z-index: 999;
|
|
469
469
|
}
|
|
470
470
|
.e-richtexteditor.e-rte-full-screen .e-resize-handle {
|
|
@@ -474,25 +474,25 @@
|
|
|
474
474
|
height: calc(100% - 42px);
|
|
475
475
|
}
|
|
476
476
|
.e-richtexteditor.e-rte-full-screen .e-rte-edit-table {
|
|
477
|
-
max-height: 295px !important;
|
|
477
|
+
max-height: 295px !important; /* stylelint-disable-line declaration-no-important */
|
|
478
478
|
}
|
|
479
479
|
.e-richtexteditor.e-rte-full-screen .e-rte-edit-table-prop-dialog {
|
|
480
|
-
max-height: 375px !important;
|
|
480
|
+
max-height: 375px !important; /* stylelint-disable-line declaration-no-important */
|
|
481
481
|
}
|
|
482
482
|
.e-richtexteditor.e-rte-full-screen .e-rte-link-dialog {
|
|
483
|
-
max-height: 406px !important;
|
|
483
|
+
max-height: 406px !important; /* stylelint-disable-line declaration-no-important */
|
|
484
484
|
}
|
|
485
485
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-dialog {
|
|
486
|
-
max-height: 433px !important;
|
|
486
|
+
max-height: 433px !important; /* stylelint-disable-line declaration-no-important */
|
|
487
487
|
}
|
|
488
488
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-link-dialog {
|
|
489
|
-
max-height: 228px !important;
|
|
489
|
+
max-height: 228px !important; /* stylelint-disable-line declaration-no-important */
|
|
490
490
|
}
|
|
491
491
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-size-dialog {
|
|
492
|
-
max-height: 291px !important;
|
|
492
|
+
max-height: 291px !important; /* stylelint-disable-line declaration-no-important */
|
|
493
493
|
}
|
|
494
494
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-alt-dialog {
|
|
495
|
-
max-height: 433px !important;
|
|
495
|
+
max-height: 433px !important; /* stylelint-disable-line declaration-no-important */
|
|
496
496
|
}
|
|
497
497
|
.e-richtexteditor.e-rtl .e-rte-character-count {
|
|
498
498
|
left: 0;
|
|
@@ -694,6 +694,7 @@
|
|
|
694
694
|
}
|
|
695
695
|
.e-richtexteditor .e-rte-content,
|
|
696
696
|
.e-richtexteditor .e-source-content {
|
|
697
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
697
698
|
-webkit-overflow-scrolling: touch;
|
|
698
699
|
overflow: auto;
|
|
699
700
|
transition: 100ms ease-out;
|
|
@@ -730,39 +731,39 @@
|
|
|
730
731
|
.e-richtexteditor .e-rte-content .e-content h1,
|
|
731
732
|
.e-richtexteditor .e-source-content .e-content h1 {
|
|
732
733
|
font-size: 2.17em;
|
|
733
|
-
font-weight:
|
|
734
|
+
font-weight: normal;
|
|
734
735
|
line-height: 1;
|
|
735
736
|
margin: 10px 0;
|
|
736
737
|
}
|
|
737
738
|
.e-richtexteditor .e-rte-content .e-content h2,
|
|
738
739
|
.e-richtexteditor .e-source-content .e-content h2 {
|
|
739
740
|
font-size: 1.74em;
|
|
740
|
-
font-weight:
|
|
741
|
+
font-weight: normal;
|
|
741
742
|
margin: 10px 0;
|
|
742
743
|
}
|
|
743
744
|
.e-richtexteditor .e-rte-content .e-content h3,
|
|
744
745
|
.e-richtexteditor .e-source-content .e-content h3 {
|
|
745
746
|
font-size: 1.31em;
|
|
746
|
-
font-weight:
|
|
747
|
+
font-weight: normal;
|
|
747
748
|
margin: 10px 0;
|
|
748
749
|
}
|
|
749
750
|
.e-richtexteditor .e-rte-content .e-content h4,
|
|
750
751
|
.e-richtexteditor .e-source-content .e-content h4 {
|
|
751
752
|
font-size: 16px;
|
|
752
|
-
font-weight:
|
|
753
|
+
font-weight: normal;
|
|
753
754
|
line-height: 1.5;
|
|
754
755
|
margin: 0;
|
|
755
756
|
}
|
|
756
757
|
.e-richtexteditor .e-rte-content .e-content h5,
|
|
757
758
|
.e-richtexteditor .e-source-content .e-content h5 {
|
|
758
759
|
font-size: 0.8em;
|
|
759
|
-
font-weight:
|
|
760
|
+
font-weight: normal;
|
|
760
761
|
margin: 0;
|
|
761
762
|
}
|
|
762
763
|
.e-richtexteditor .e-rte-content .e-content h6,
|
|
763
764
|
.e-richtexteditor .e-source-content .e-content h6 {
|
|
764
765
|
font-size: 0.65em;
|
|
765
|
-
font-weight:
|
|
766
|
+
font-weight: normal;
|
|
766
767
|
margin: 0;
|
|
767
768
|
}
|
|
768
769
|
.e-richtexteditor .e-rte-content .e-content blockquote,
|
|
@@ -790,7 +791,7 @@
|
|
|
790
791
|
.e-richtexteditor .e-rte-content .e-content b,
|
|
791
792
|
.e-richtexteditor .e-source-content .e-content strong,
|
|
792
793
|
.e-richtexteditor .e-source-content .e-content b {
|
|
793
|
-
font-weight:
|
|
794
|
+
font-weight: bold;
|
|
794
795
|
}
|
|
795
796
|
.e-richtexteditor .e-rte-content .e-content a,
|
|
796
797
|
.e-richtexteditor .e-source-content .e-content a {
|
|
@@ -958,37 +959,37 @@
|
|
|
958
959
|
font-weight: bold;
|
|
959
960
|
}
|
|
960
961
|
.e-rte-dropdown-popup ul .e-item.e-segoe-ui {
|
|
961
|
-
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
|
962
|
+
font-family: "Segoe UI", "Tahoma", "Geneva", "Verdana", sans-serif;
|
|
962
963
|
}
|
|
963
964
|
.e-rte-dropdown-popup ul .e-item.e-arial {
|
|
964
|
-
font-family: Arial, Helvetica, sans-serif;
|
|
965
|
+
font-family: "Arial", "Helvetica", sans-serif;
|
|
965
966
|
}
|
|
966
967
|
.e-rte-dropdown-popup ul .e-item.e-courier-new {
|
|
967
|
-
font-family: Courier New, Courier, monospace;
|
|
968
|
+
font-family: "Courier New", "Courier", monospace;
|
|
968
969
|
}
|
|
969
970
|
.e-rte-dropdown-popup ul .e-item.e-georgia {
|
|
970
|
-
font-family: Georgia, "Times New Roman", Times, serif;
|
|
971
|
+
font-family: "Georgia", "Times New Roman", "Times", serif;
|
|
971
972
|
}
|
|
972
973
|
.e-rte-dropdown-popup ul .e-item.e-helvetica-neue {
|
|
973
|
-
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
974
|
+
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
|
|
974
975
|
}
|
|
975
976
|
.e-rte-dropdown-popup ul .e-item.e-impact {
|
|
976
|
-
font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
|
|
977
|
+
font-family: "Impact", "Haettenschweiler", "Arial Narrow Bold", sans-serif;
|
|
977
978
|
}
|
|
978
979
|
.e-rte-dropdown-popup ul .e-item.e-lucida-console {
|
|
979
|
-
font-family: Lucida Console, Monaco, monospace;
|
|
980
|
+
font-family: "Lucida Console", "Monaco", monospace;
|
|
980
981
|
}
|
|
981
982
|
.e-rte-dropdown-popup ul .e-item.e-tahoma {
|
|
982
|
-
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
|
983
|
+
font-family: "Segoe UI", "Tahoma", "Geneva", "Verdana", sans-serif;
|
|
983
984
|
}
|
|
984
985
|
.e-rte-dropdown-popup ul .e-item.e-times-new-roman {
|
|
985
|
-
font-family: "Times New Roman", Times, serif;
|
|
986
|
+
font-family: "Times New Roman", "Times", serif;
|
|
986
987
|
}
|
|
987
988
|
.e-rte-dropdown-popup ul .e-item.e-trebuchet-ms {
|
|
988
|
-
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
|
|
989
|
+
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", "Arial", sans-serif;
|
|
989
990
|
}
|
|
990
991
|
.e-rte-dropdown-popup ul .e-item.e-verdana {
|
|
991
|
-
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
|
992
|
+
font-family: "Verdana", "Geneva", "Tahoma", sans-serif;
|
|
992
993
|
}
|
|
993
994
|
.e-rte-dropdown-popup ul .e-item.e-roboto {
|
|
994
995
|
font-family: "Roboto", "Segoe UI", "GeezaPro", "DejaVu Serif", sans-serif;
|
package/styles/highcontrast.css
CHANGED
|
@@ -408,31 +408,31 @@
|
|
|
408
408
|
}
|
|
409
409
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-edit-table,
|
|
410
410
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-edit-table {
|
|
411
|
-
max-height: 309px !important;
|
|
411
|
+
max-height: 309px !important; /* stylelint-disable-line declaration-no-important */
|
|
412
412
|
}
|
|
413
413
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-edit-table-prop-dialog,
|
|
414
414
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-edit-table-prop-dialog {
|
|
415
|
-
max-height: 400px !important;
|
|
415
|
+
max-height: 400px !important; /* stylelint-disable-line declaration-no-important */
|
|
416
416
|
}
|
|
417
417
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-link-dialog,
|
|
418
418
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-link-dialog {
|
|
419
|
-
max-height: 404px !important;
|
|
419
|
+
max-height: 404px !important; /* stylelint-disable-line declaration-no-important */
|
|
420
420
|
}
|
|
421
421
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-dialog,
|
|
422
422
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-dialog {
|
|
423
|
-
min-height: 430px !important;
|
|
423
|
+
min-height: 430px !important; /* stylelint-disable-line declaration-no-important */
|
|
424
424
|
}
|
|
425
425
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-link-dialog,
|
|
426
426
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-link-dialog {
|
|
427
|
-
max-height: 226px !important;
|
|
427
|
+
max-height: 226px !important; /* stylelint-disable-line declaration-no-important */
|
|
428
428
|
}
|
|
429
429
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-size-dialog,
|
|
430
430
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-size-dialog {
|
|
431
|
-
max-height: 305px !important;
|
|
431
|
+
max-height: 305px !important; /* stylelint-disable-line declaration-no-important */
|
|
432
432
|
}
|
|
433
433
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-alt-dialog,
|
|
434
434
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-alt-dialog {
|
|
435
|
-
min-height: 430px !important;
|
|
435
|
+
min-height: 430px !important; /* stylelint-disable-line declaration-no-important */
|
|
436
436
|
}
|
|
437
437
|
|
|
438
438
|
.e-richtexteditor {
|
|
@@ -458,13 +458,13 @@
|
|
|
458
458
|
}
|
|
459
459
|
.e-richtexteditor.e-rte-full-screen {
|
|
460
460
|
bottom: 0;
|
|
461
|
-
height: 100% !important;
|
|
461
|
+
height: 100% !important; /* stylelint-disable-line declaration-no-important */
|
|
462
462
|
left: 0;
|
|
463
463
|
overflow: auto;
|
|
464
464
|
position: fixed;
|
|
465
465
|
right: 0;
|
|
466
466
|
top: 0;
|
|
467
|
-
width: 100% !important;
|
|
467
|
+
width: 100% !important; /* stylelint-disable-line declaration-no-important */
|
|
468
468
|
z-index: 999;
|
|
469
469
|
}
|
|
470
470
|
.e-richtexteditor.e-rte-full-screen .e-resize-handle {
|
|
@@ -474,25 +474,25 @@
|
|
|
474
474
|
height: calc(100% - 42px);
|
|
475
475
|
}
|
|
476
476
|
.e-richtexteditor.e-rte-full-screen .e-rte-edit-table {
|
|
477
|
-
max-height: 295px !important;
|
|
477
|
+
max-height: 295px !important; /* stylelint-disable-line declaration-no-important */
|
|
478
478
|
}
|
|
479
479
|
.e-richtexteditor.e-rte-full-screen .e-rte-edit-table-prop-dialog {
|
|
480
|
-
max-height: 375px !important;
|
|
480
|
+
max-height: 375px !important; /* stylelint-disable-line declaration-no-important */
|
|
481
481
|
}
|
|
482
482
|
.e-richtexteditor.e-rte-full-screen .e-rte-link-dialog {
|
|
483
|
-
max-height: 406px !important;
|
|
483
|
+
max-height: 406px !important; /* stylelint-disable-line declaration-no-important */
|
|
484
484
|
}
|
|
485
485
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-dialog {
|
|
486
|
-
max-height: 433px !important;
|
|
486
|
+
max-height: 433px !important; /* stylelint-disable-line declaration-no-important */
|
|
487
487
|
}
|
|
488
488
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-link-dialog {
|
|
489
|
-
max-height: 228px !important;
|
|
489
|
+
max-height: 228px !important; /* stylelint-disable-line declaration-no-important */
|
|
490
490
|
}
|
|
491
491
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-size-dialog {
|
|
492
|
-
max-height: 291px !important;
|
|
492
|
+
max-height: 291px !important; /* stylelint-disable-line declaration-no-important */
|
|
493
493
|
}
|
|
494
494
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-alt-dialog {
|
|
495
|
-
max-height: 433px !important;
|
|
495
|
+
max-height: 433px !important; /* stylelint-disable-line declaration-no-important */
|
|
496
496
|
}
|
|
497
497
|
.e-richtexteditor.e-rtl .e-rte-character-count {
|
|
498
498
|
left: 0;
|
|
@@ -694,6 +694,7 @@
|
|
|
694
694
|
}
|
|
695
695
|
.e-richtexteditor .e-rte-content,
|
|
696
696
|
.e-richtexteditor .e-source-content {
|
|
697
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
697
698
|
-webkit-overflow-scrolling: touch;
|
|
698
699
|
overflow: auto;
|
|
699
700
|
transition: 100ms ease-out;
|
|
@@ -730,39 +731,39 @@
|
|
|
730
731
|
.e-richtexteditor .e-rte-content .e-content h1,
|
|
731
732
|
.e-richtexteditor .e-source-content .e-content h1 {
|
|
732
733
|
font-size: 2.17em;
|
|
733
|
-
font-weight:
|
|
734
|
+
font-weight: normal;
|
|
734
735
|
line-height: 1;
|
|
735
736
|
margin: 10px 0;
|
|
736
737
|
}
|
|
737
738
|
.e-richtexteditor .e-rte-content .e-content h2,
|
|
738
739
|
.e-richtexteditor .e-source-content .e-content h2 {
|
|
739
740
|
font-size: 1.74em;
|
|
740
|
-
font-weight:
|
|
741
|
+
font-weight: normal;
|
|
741
742
|
margin: 10px 0;
|
|
742
743
|
}
|
|
743
744
|
.e-richtexteditor .e-rte-content .e-content h3,
|
|
744
745
|
.e-richtexteditor .e-source-content .e-content h3 {
|
|
745
746
|
font-size: 1.31em;
|
|
746
|
-
font-weight:
|
|
747
|
+
font-weight: normal;
|
|
747
748
|
margin: 10px 0;
|
|
748
749
|
}
|
|
749
750
|
.e-richtexteditor .e-rte-content .e-content h4,
|
|
750
751
|
.e-richtexteditor .e-source-content .e-content h4 {
|
|
751
752
|
font-size: 16px;
|
|
752
|
-
font-weight:
|
|
753
|
+
font-weight: normal;
|
|
753
754
|
line-height: 1.5;
|
|
754
755
|
margin: 0;
|
|
755
756
|
}
|
|
756
757
|
.e-richtexteditor .e-rte-content .e-content h5,
|
|
757
758
|
.e-richtexteditor .e-source-content .e-content h5 {
|
|
758
759
|
font-size: 0.8em;
|
|
759
|
-
font-weight:
|
|
760
|
+
font-weight: normal;
|
|
760
761
|
margin: 0;
|
|
761
762
|
}
|
|
762
763
|
.e-richtexteditor .e-rte-content .e-content h6,
|
|
763
764
|
.e-richtexteditor .e-source-content .e-content h6 {
|
|
764
765
|
font-size: 0.65em;
|
|
765
|
-
font-weight:
|
|
766
|
+
font-weight: normal;
|
|
766
767
|
margin: 0;
|
|
767
768
|
}
|
|
768
769
|
.e-richtexteditor .e-rte-content .e-content blockquote,
|
|
@@ -790,7 +791,7 @@
|
|
|
790
791
|
.e-richtexteditor .e-rte-content .e-content b,
|
|
791
792
|
.e-richtexteditor .e-source-content .e-content strong,
|
|
792
793
|
.e-richtexteditor .e-source-content .e-content b {
|
|
793
|
-
font-weight:
|
|
794
|
+
font-weight: bold;
|
|
794
795
|
}
|
|
795
796
|
.e-richtexteditor .e-rte-content .e-content a,
|
|
796
797
|
.e-richtexteditor .e-source-content .e-content a {
|
|
@@ -958,37 +959,37 @@
|
|
|
958
959
|
font-weight: bold;
|
|
959
960
|
}
|
|
960
961
|
.e-rte-dropdown-popup ul .e-item.e-segoe-ui {
|
|
961
|
-
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
|
962
|
+
font-family: "Segoe UI", "Tahoma", "Geneva", "Verdana", sans-serif;
|
|
962
963
|
}
|
|
963
964
|
.e-rte-dropdown-popup ul .e-item.e-arial {
|
|
964
|
-
font-family: Arial, Helvetica, sans-serif;
|
|
965
|
+
font-family: "Arial", "Helvetica", sans-serif;
|
|
965
966
|
}
|
|
966
967
|
.e-rte-dropdown-popup ul .e-item.e-courier-new {
|
|
967
|
-
font-family: Courier New, Courier, monospace;
|
|
968
|
+
font-family: "Courier New", "Courier", monospace;
|
|
968
969
|
}
|
|
969
970
|
.e-rte-dropdown-popup ul .e-item.e-georgia {
|
|
970
|
-
font-family: Georgia, "Times New Roman", Times, serif;
|
|
971
|
+
font-family: "Georgia", "Times New Roman", "Times", serif;
|
|
971
972
|
}
|
|
972
973
|
.e-rte-dropdown-popup ul .e-item.e-helvetica-neue {
|
|
973
|
-
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
974
|
+
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
|
|
974
975
|
}
|
|
975
976
|
.e-rte-dropdown-popup ul .e-item.e-impact {
|
|
976
|
-
font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
|
|
977
|
+
font-family: "Impact", "Haettenschweiler", "Arial Narrow Bold", sans-serif;
|
|
977
978
|
}
|
|
978
979
|
.e-rte-dropdown-popup ul .e-item.e-lucida-console {
|
|
979
|
-
font-family: Lucida Console, Monaco, monospace;
|
|
980
|
+
font-family: "Lucida Console", "Monaco", monospace;
|
|
980
981
|
}
|
|
981
982
|
.e-rte-dropdown-popup ul .e-item.e-tahoma {
|
|
982
|
-
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
|
983
|
+
font-family: "Segoe UI", "Tahoma", "Geneva", "Verdana", sans-serif;
|
|
983
984
|
}
|
|
984
985
|
.e-rte-dropdown-popup ul .e-item.e-times-new-roman {
|
|
985
|
-
font-family: "Times New Roman", Times, serif;
|
|
986
|
+
font-family: "Times New Roman", "Times", serif;
|
|
986
987
|
}
|
|
987
988
|
.e-rte-dropdown-popup ul .e-item.e-trebuchet-ms {
|
|
988
|
-
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
|
|
989
|
+
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", "Arial", sans-serif;
|
|
989
990
|
}
|
|
990
991
|
.e-rte-dropdown-popup ul .e-item.e-verdana {
|
|
991
|
-
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
|
992
|
+
font-family: "Verdana", "Geneva", "Tahoma", sans-serif;
|
|
992
993
|
}
|
|
993
994
|
.e-rte-dropdown-popup ul .e-item.e-roboto {
|
|
994
995
|
font-family: "Roboto", "Segoe UI", "GeezaPro", "DejaVu Serif", sans-serif;
|
package/styles/material-dark.css
CHANGED
|
@@ -409,31 +409,31 @@
|
|
|
409
409
|
}
|
|
410
410
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-edit-table,
|
|
411
411
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-edit-table {
|
|
412
|
-
max-height: 312px !important;
|
|
412
|
+
max-height: 312px !important; /* stylelint-disable-line declaration-no-important */
|
|
413
413
|
}
|
|
414
414
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-edit-table-prop-dialog,
|
|
415
415
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-edit-table-prop-dialog {
|
|
416
|
-
max-height: 385px !important;
|
|
416
|
+
max-height: 385px !important; /* stylelint-disable-line declaration-no-important */
|
|
417
417
|
}
|
|
418
418
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-link-dialog,
|
|
419
419
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-link-dialog {
|
|
420
|
-
max-height: 437px !important;
|
|
420
|
+
max-height: 437px !important; /* stylelint-disable-line declaration-no-important */
|
|
421
421
|
}
|
|
422
422
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-dialog,
|
|
423
423
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-dialog {
|
|
424
|
-
min-height: 451px !important;
|
|
424
|
+
min-height: 451px !important; /* stylelint-disable-line declaration-no-important */
|
|
425
425
|
}
|
|
426
426
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-link-dialog,
|
|
427
427
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-link-dialog {
|
|
428
|
-
max-height: 250px !important;
|
|
428
|
+
max-height: 250px !important; /* stylelint-disable-line declaration-no-important */
|
|
429
429
|
}
|
|
430
430
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-size-dialog,
|
|
431
431
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-size-dialog {
|
|
432
|
-
max-height: 312px !important;
|
|
432
|
+
max-height: 312px !important; /* stylelint-disable-line declaration-no-important */
|
|
433
433
|
}
|
|
434
434
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-alt-dialog,
|
|
435
435
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-alt-dialog {
|
|
436
|
-
min-height: 451px !important;
|
|
436
|
+
min-height: 451px !important; /* stylelint-disable-line declaration-no-important */
|
|
437
437
|
}
|
|
438
438
|
|
|
439
439
|
.e-richtexteditor {
|
|
@@ -459,13 +459,13 @@
|
|
|
459
459
|
}
|
|
460
460
|
.e-richtexteditor.e-rte-full-screen {
|
|
461
461
|
bottom: 0;
|
|
462
|
-
height: 100% !important;
|
|
462
|
+
height: 100% !important; /* stylelint-disable-line declaration-no-important */
|
|
463
463
|
left: 0;
|
|
464
464
|
overflow: auto;
|
|
465
465
|
position: fixed;
|
|
466
466
|
right: 0;
|
|
467
467
|
top: 0;
|
|
468
|
-
width: 100% !important;
|
|
468
|
+
width: 100% !important; /* stylelint-disable-line declaration-no-important */
|
|
469
469
|
z-index: 999;
|
|
470
470
|
}
|
|
471
471
|
.e-richtexteditor.e-rte-full-screen .e-resize-handle {
|
|
@@ -475,25 +475,25 @@
|
|
|
475
475
|
height: calc(100% - 42px);
|
|
476
476
|
}
|
|
477
477
|
.e-richtexteditor.e-rte-full-screen .e-rte-edit-table {
|
|
478
|
-
max-height: 250px !important;
|
|
478
|
+
max-height: 250px !important; /* stylelint-disable-line declaration-no-important */
|
|
479
479
|
}
|
|
480
480
|
.e-richtexteditor.e-rte-full-screen .e-rte-edit-table-prop-dialog {
|
|
481
|
-
max-height: 321px !important;
|
|
481
|
+
max-height: 321px !important; /* stylelint-disable-line declaration-no-important */
|
|
482
482
|
}
|
|
483
483
|
.e-richtexteditor.e-rte-full-screen .e-rte-link-dialog {
|
|
484
|
-
max-height: 365px !important;
|
|
484
|
+
max-height: 365px !important; /* stylelint-disable-line declaration-no-important */
|
|
485
485
|
}
|
|
486
486
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-dialog {
|
|
487
|
-
max-height: 403px !important;
|
|
487
|
+
max-height: 403px !important; /* stylelint-disable-line declaration-no-important */
|
|
488
488
|
}
|
|
489
489
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-link-dialog {
|
|
490
|
-
max-height: 198px !important;
|
|
490
|
+
max-height: 198px !important; /* stylelint-disable-line declaration-no-important */
|
|
491
491
|
}
|
|
492
492
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-size-dialog {
|
|
493
|
-
max-height: 260px !important;
|
|
493
|
+
max-height: 260px !important; /* stylelint-disable-line declaration-no-important */
|
|
494
494
|
}
|
|
495
495
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-alt-dialog {
|
|
496
|
-
max-height: 403px !important;
|
|
496
|
+
max-height: 403px !important; /* stylelint-disable-line declaration-no-important */
|
|
497
497
|
}
|
|
498
498
|
.e-richtexteditor.e-rtl .e-rte-character-count {
|
|
499
499
|
left: 0;
|
|
@@ -695,6 +695,7 @@
|
|
|
695
695
|
}
|
|
696
696
|
.e-richtexteditor .e-rte-content,
|
|
697
697
|
.e-richtexteditor .e-source-content {
|
|
698
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
698
699
|
-webkit-overflow-scrolling: touch;
|
|
699
700
|
overflow: auto;
|
|
700
701
|
transition: 100ms ease-out;
|
|
@@ -731,39 +732,39 @@
|
|
|
731
732
|
.e-richtexteditor .e-rte-content .e-content h1,
|
|
732
733
|
.e-richtexteditor .e-source-content .e-content h1 {
|
|
733
734
|
font-size: 2.17em;
|
|
734
|
-
font-weight:
|
|
735
|
+
font-weight: normal;
|
|
735
736
|
line-height: 1;
|
|
736
737
|
margin: 10px 0;
|
|
737
738
|
}
|
|
738
739
|
.e-richtexteditor .e-rte-content .e-content h2,
|
|
739
740
|
.e-richtexteditor .e-source-content .e-content h2 {
|
|
740
741
|
font-size: 1.74em;
|
|
741
|
-
font-weight:
|
|
742
|
+
font-weight: normal;
|
|
742
743
|
margin: 10px 0;
|
|
743
744
|
}
|
|
744
745
|
.e-richtexteditor .e-rte-content .e-content h3,
|
|
745
746
|
.e-richtexteditor .e-source-content .e-content h3 {
|
|
746
747
|
font-size: 1.31em;
|
|
747
|
-
font-weight:
|
|
748
|
+
font-weight: normal;
|
|
748
749
|
margin: 10px 0;
|
|
749
750
|
}
|
|
750
751
|
.e-richtexteditor .e-rte-content .e-content h4,
|
|
751
752
|
.e-richtexteditor .e-source-content .e-content h4 {
|
|
752
753
|
font-size: 16px;
|
|
753
|
-
font-weight:
|
|
754
|
+
font-weight: normal;
|
|
754
755
|
line-height: 1.5;
|
|
755
756
|
margin: 0;
|
|
756
757
|
}
|
|
757
758
|
.e-richtexteditor .e-rte-content .e-content h5,
|
|
758
759
|
.e-richtexteditor .e-source-content .e-content h5 {
|
|
759
760
|
font-size: 0.8em;
|
|
760
|
-
font-weight:
|
|
761
|
+
font-weight: normal;
|
|
761
762
|
margin: 0;
|
|
762
763
|
}
|
|
763
764
|
.e-richtexteditor .e-rte-content .e-content h6,
|
|
764
765
|
.e-richtexteditor .e-source-content .e-content h6 {
|
|
765
766
|
font-size: 0.65em;
|
|
766
|
-
font-weight:
|
|
767
|
+
font-weight: normal;
|
|
767
768
|
margin: 0;
|
|
768
769
|
}
|
|
769
770
|
.e-richtexteditor .e-rte-content .e-content blockquote,
|
|
@@ -791,7 +792,7 @@
|
|
|
791
792
|
.e-richtexteditor .e-rte-content .e-content b,
|
|
792
793
|
.e-richtexteditor .e-source-content .e-content strong,
|
|
793
794
|
.e-richtexteditor .e-source-content .e-content b {
|
|
794
|
-
font-weight:
|
|
795
|
+
font-weight: bold;
|
|
795
796
|
}
|
|
796
797
|
.e-richtexteditor .e-rte-content .e-content a,
|
|
797
798
|
.e-richtexteditor .e-source-content .e-content a {
|
|
@@ -959,37 +960,37 @@
|
|
|
959
960
|
font-weight: bold;
|
|
960
961
|
}
|
|
961
962
|
.e-rte-dropdown-popup ul .e-item.e-segoe-ui {
|
|
962
|
-
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
|
963
|
+
font-family: "Segoe UI", "Tahoma", "Geneva", "Verdana", sans-serif;
|
|
963
964
|
}
|
|
964
965
|
.e-rte-dropdown-popup ul .e-item.e-arial {
|
|
965
|
-
font-family: Arial, Helvetica, sans-serif;
|
|
966
|
+
font-family: "Arial", "Helvetica", sans-serif;
|
|
966
967
|
}
|
|
967
968
|
.e-rte-dropdown-popup ul .e-item.e-courier-new {
|
|
968
|
-
font-family: Courier New, Courier, monospace;
|
|
969
|
+
font-family: "Courier New", "Courier", monospace;
|
|
969
970
|
}
|
|
970
971
|
.e-rte-dropdown-popup ul .e-item.e-georgia {
|
|
971
|
-
font-family: Georgia, "Times New Roman", Times, serif;
|
|
972
|
+
font-family: "Georgia", "Times New Roman", "Times", serif;
|
|
972
973
|
}
|
|
973
974
|
.e-rte-dropdown-popup ul .e-item.e-helvetica-neue {
|
|
974
|
-
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
975
|
+
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
|
|
975
976
|
}
|
|
976
977
|
.e-rte-dropdown-popup ul .e-item.e-impact {
|
|
977
|
-
font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
|
|
978
|
+
font-family: "Impact", "Haettenschweiler", "Arial Narrow Bold", sans-serif;
|
|
978
979
|
}
|
|
979
980
|
.e-rte-dropdown-popup ul .e-item.e-lucida-console {
|
|
980
|
-
font-family: Lucida Console, Monaco, monospace;
|
|
981
|
+
font-family: "Lucida Console", "Monaco", monospace;
|
|
981
982
|
}
|
|
982
983
|
.e-rte-dropdown-popup ul .e-item.e-tahoma {
|
|
983
|
-
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
|
984
|
+
font-family: "Segoe UI", "Tahoma", "Geneva", "Verdana", sans-serif;
|
|
984
985
|
}
|
|
985
986
|
.e-rte-dropdown-popup ul .e-item.e-times-new-roman {
|
|
986
|
-
font-family: "Times New Roman", Times, serif;
|
|
987
|
+
font-family: "Times New Roman", "Times", serif;
|
|
987
988
|
}
|
|
988
989
|
.e-rte-dropdown-popup ul .e-item.e-trebuchet-ms {
|
|
989
|
-
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
|
|
990
|
+
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", "Arial", sans-serif;
|
|
990
991
|
}
|
|
991
992
|
.e-rte-dropdown-popup ul .e-item.e-verdana {
|
|
992
|
-
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
|
993
|
+
font-family: "Verdana", "Geneva", "Tahoma", sans-serif;
|
|
993
994
|
}
|
|
994
995
|
.e-rte-dropdown-popup ul .e-item.e-roboto {
|
|
995
996
|
font-family: "Roboto", "Segoe UI", "GeezaPro", "DejaVu Serif", sans-serif;
|