@syncfusion/ej2-angular-richtexteditor 20.2.39-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 +28 -14
- 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 -1075
- 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: 335px !important;
|
|
411
|
+
max-height: 335px !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: 427px !important;
|
|
415
|
+
max-height: 427px !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: 430px !important;
|
|
419
|
+
max-height: 430px !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: 456px !important;
|
|
423
|
+
min-height: 456px !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: 252px !important;
|
|
427
|
+
max-height: 252px !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: 331px !important;
|
|
431
|
+
max-height: 331px !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: 456px !important;
|
|
435
|
+
min-height: 456px !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: 293px !important;
|
|
477
|
+
max-height: 293px !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: 373px !important;
|
|
480
|
+
max-height: 373px !important; /* stylelint-disable-line declaration-no-important */
|
|
481
481
|
}
|
|
482
482
|
.e-richtexteditor.e-rte-full-screen .e-rte-link-dialog {
|
|
483
|
-
max-height: 404px !important;
|
|
483
|
+
max-height: 404px !important; /* stylelint-disable-line declaration-no-important */
|
|
484
484
|
}
|
|
485
485
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-dialog {
|
|
486
|
-
max-height: 431px !important;
|
|
486
|
+
max-height: 431px !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: 225px !important;
|
|
489
|
+
max-height: 225px !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: 289px !important;
|
|
492
|
+
max-height: 289px !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: 431px !important;
|
|
495
|
+
max-height: 431px !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;
|
|
@@ -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: 306px !important;
|
|
412
|
+
max-height: 306px !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: 388px !important;
|
|
416
|
+
max-height: 388px !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: 411px !important;
|
|
420
|
+
max-height: 411px !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: 428px !important;
|
|
424
|
+
min-height: 428px !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: 240px !important;
|
|
428
|
+
max-height: 240px !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: 316px !important;
|
|
432
|
+
max-height: 316px !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: 428px !important;
|
|
436
|
+
min-height: 428px !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: 272px !important;
|
|
478
|
+
max-height: 272px !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: 340px !important;
|
|
481
|
+
max-height: 340px !important; /* stylelint-disable-line declaration-no-important */
|
|
482
482
|
}
|
|
483
483
|
.e-richtexteditor.e-rte-full-screen .e-rte-link-dialog {
|
|
484
|
-
max-height: 380px !important;
|
|
484
|
+
max-height: 380px !important; /* stylelint-disable-line declaration-no-important */
|
|
485
485
|
}
|
|
486
486
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-dialog {
|
|
487
|
-
max-height: 410px !important;
|
|
487
|
+
max-height: 410px !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: 218px !important;
|
|
490
|
+
max-height: 218px !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: 276px !important;
|
|
493
|
+
max-height: 276px !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: 410px !important;
|
|
496
|
+
max-height: 410px !important; /* stylelint-disable-line declaration-no-important */
|
|
497
497
|
}
|
|
498
498
|
.e-richtexteditor.e-rtl .e-rte-character-count {
|
|
499
499
|
left: 0;
|
|
@@ -697,6 +697,7 @@
|
|
|
697
697
|
}
|
|
698
698
|
.e-richtexteditor .e-rte-content,
|
|
699
699
|
.e-richtexteditor .e-source-content {
|
|
700
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
700
701
|
-webkit-overflow-scrolling: touch;
|
|
701
702
|
overflow: auto;
|
|
702
703
|
transition: 100ms ease-out;
|
|
@@ -733,39 +734,39 @@
|
|
|
733
734
|
.e-richtexteditor .e-rte-content .e-content h1,
|
|
734
735
|
.e-richtexteditor .e-source-content .e-content h1 {
|
|
735
736
|
font-size: 2.17em;
|
|
736
|
-
font-weight:
|
|
737
|
+
font-weight: normal;
|
|
737
738
|
line-height: 1;
|
|
738
739
|
margin: 10px 0;
|
|
739
740
|
}
|
|
740
741
|
.e-richtexteditor .e-rte-content .e-content h2,
|
|
741
742
|
.e-richtexteditor .e-source-content .e-content h2 {
|
|
742
743
|
font-size: 1.74em;
|
|
743
|
-
font-weight:
|
|
744
|
+
font-weight: normal;
|
|
744
745
|
margin: 10px 0;
|
|
745
746
|
}
|
|
746
747
|
.e-richtexteditor .e-rte-content .e-content h3,
|
|
747
748
|
.e-richtexteditor .e-source-content .e-content h3 {
|
|
748
749
|
font-size: 1.31em;
|
|
749
|
-
font-weight:
|
|
750
|
+
font-weight: normal;
|
|
750
751
|
margin: 10px 0;
|
|
751
752
|
}
|
|
752
753
|
.e-richtexteditor .e-rte-content .e-content h4,
|
|
753
754
|
.e-richtexteditor .e-source-content .e-content h4 {
|
|
754
755
|
font-size: 16px;
|
|
755
|
-
font-weight:
|
|
756
|
+
font-weight: normal;
|
|
756
757
|
line-height: 1.5;
|
|
757
758
|
margin: 0;
|
|
758
759
|
}
|
|
759
760
|
.e-richtexteditor .e-rte-content .e-content h5,
|
|
760
761
|
.e-richtexteditor .e-source-content .e-content h5 {
|
|
761
762
|
font-size: 0.8em;
|
|
762
|
-
font-weight:
|
|
763
|
+
font-weight: normal;
|
|
763
764
|
margin: 0;
|
|
764
765
|
}
|
|
765
766
|
.e-richtexteditor .e-rte-content .e-content h6,
|
|
766
767
|
.e-richtexteditor .e-source-content .e-content h6 {
|
|
767
768
|
font-size: 0.65em;
|
|
768
|
-
font-weight:
|
|
769
|
+
font-weight: normal;
|
|
769
770
|
margin: 0;
|
|
770
771
|
}
|
|
771
772
|
.e-richtexteditor .e-rte-content .e-content blockquote,
|
|
@@ -793,7 +794,7 @@
|
|
|
793
794
|
.e-richtexteditor .e-rte-content .e-content b,
|
|
794
795
|
.e-richtexteditor .e-source-content .e-content strong,
|
|
795
796
|
.e-richtexteditor .e-source-content .e-content b {
|
|
796
|
-
font-weight:
|
|
797
|
+
font-weight: bold;
|
|
797
798
|
}
|
|
798
799
|
.e-richtexteditor .e-rte-content .e-content a,
|
|
799
800
|
.e-richtexteditor .e-source-content .e-content a {
|
|
@@ -961,37 +962,37 @@
|
|
|
961
962
|
font-weight: bold;
|
|
962
963
|
}
|
|
963
964
|
.e-rte-dropdown-popup ul .e-item.e-segoe-ui {
|
|
964
|
-
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
|
965
|
+
font-family: "Segoe UI", "Tahoma", "Geneva", "Verdana", sans-serif;
|
|
965
966
|
}
|
|
966
967
|
.e-rte-dropdown-popup ul .e-item.e-arial {
|
|
967
|
-
font-family: Arial, Helvetica, sans-serif;
|
|
968
|
+
font-family: "Arial", "Helvetica", sans-serif;
|
|
968
969
|
}
|
|
969
970
|
.e-rte-dropdown-popup ul .e-item.e-courier-new {
|
|
970
|
-
font-family: Courier New, Courier, monospace;
|
|
971
|
+
font-family: "Courier New", "Courier", monospace;
|
|
971
972
|
}
|
|
972
973
|
.e-rte-dropdown-popup ul .e-item.e-georgia {
|
|
973
|
-
font-family: Georgia, "Times New Roman", Times, serif;
|
|
974
|
+
font-family: "Georgia", "Times New Roman", "Times", serif;
|
|
974
975
|
}
|
|
975
976
|
.e-rte-dropdown-popup ul .e-item.e-helvetica-neue {
|
|
976
|
-
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
977
|
+
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
|
|
977
978
|
}
|
|
978
979
|
.e-rte-dropdown-popup ul .e-item.e-impact {
|
|
979
|
-
font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
|
|
980
|
+
font-family: "Impact", "Haettenschweiler", "Arial Narrow Bold", sans-serif;
|
|
980
981
|
}
|
|
981
982
|
.e-rte-dropdown-popup ul .e-item.e-lucida-console {
|
|
982
|
-
font-family: Lucida Console, Monaco, monospace;
|
|
983
|
+
font-family: "Lucida Console", "Monaco", monospace;
|
|
983
984
|
}
|
|
984
985
|
.e-rte-dropdown-popup ul .e-item.e-tahoma {
|
|
985
|
-
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
|
986
|
+
font-family: "Segoe UI", "Tahoma", "Geneva", "Verdana", sans-serif;
|
|
986
987
|
}
|
|
987
988
|
.e-rte-dropdown-popup ul .e-item.e-times-new-roman {
|
|
988
|
-
font-family: "Times New Roman", Times, serif;
|
|
989
|
+
font-family: "Times New Roman", "Times", serif;
|
|
989
990
|
}
|
|
990
991
|
.e-rte-dropdown-popup ul .e-item.e-trebuchet-ms {
|
|
991
|
-
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
|
|
992
|
+
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", "Arial", sans-serif;
|
|
992
993
|
}
|
|
993
994
|
.e-rte-dropdown-popup ul .e-item.e-verdana {
|
|
994
|
-
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
|
995
|
+
font-family: "Verdana", "Geneva", "Tahoma", sans-serif;
|
|
995
996
|
}
|
|
996
997
|
.e-rte-dropdown-popup ul .e-item.e-roboto {
|
|
997
998
|
font-family: "Roboto", "Segoe UI", "GeezaPro", "DejaVu Serif", sans-serif;
|
|
@@ -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: 306px !important;
|
|
412
|
+
max-height: 306px !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: 388px !important;
|
|
416
|
+
max-height: 388px !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: 411px !important;
|
|
420
|
+
max-height: 411px !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: 428px !important;
|
|
424
|
+
min-height: 428px !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: 240px !important;
|
|
428
|
+
max-height: 240px !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: 316px !important;
|
|
432
|
+
max-height: 316px !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: 428px !important;
|
|
436
|
+
min-height: 428px !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: 272px !important;
|
|
478
|
+
max-height: 272px !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: 340px !important;
|
|
481
|
+
max-height: 340px !important; /* stylelint-disable-line declaration-no-important */
|
|
482
482
|
}
|
|
483
483
|
.e-richtexteditor.e-rte-full-screen .e-rte-link-dialog {
|
|
484
|
-
max-height: 380px !important;
|
|
484
|
+
max-height: 380px !important; /* stylelint-disable-line declaration-no-important */
|
|
485
485
|
}
|
|
486
486
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-dialog {
|
|
487
|
-
max-height: 410px !important;
|
|
487
|
+
max-height: 410px !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: 218px !important;
|
|
490
|
+
max-height: 218px !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: 276px !important;
|
|
493
|
+
max-height: 276px !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: 410px !important;
|
|
496
|
+
max-height: 410px !important; /* stylelint-disable-line declaration-no-important */
|
|
497
497
|
}
|
|
498
498
|
.e-richtexteditor.e-rtl .e-rte-character-count {
|
|
499
499
|
left: 0;
|
|
@@ -697,6 +697,7 @@
|
|
|
697
697
|
}
|
|
698
698
|
.e-richtexteditor .e-rte-content,
|
|
699
699
|
.e-richtexteditor .e-source-content {
|
|
700
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
700
701
|
-webkit-overflow-scrolling: touch;
|
|
701
702
|
overflow: auto;
|
|
702
703
|
transition: 100ms ease-out;
|
|
@@ -733,39 +734,39 @@
|
|
|
733
734
|
.e-richtexteditor .e-rte-content .e-content h1,
|
|
734
735
|
.e-richtexteditor .e-source-content .e-content h1 {
|
|
735
736
|
font-size: 2.17em;
|
|
736
|
-
font-weight:
|
|
737
|
+
font-weight: normal;
|
|
737
738
|
line-height: 1;
|
|
738
739
|
margin: 10px 0;
|
|
739
740
|
}
|
|
740
741
|
.e-richtexteditor .e-rte-content .e-content h2,
|
|
741
742
|
.e-richtexteditor .e-source-content .e-content h2 {
|
|
742
743
|
font-size: 1.74em;
|
|
743
|
-
font-weight:
|
|
744
|
+
font-weight: normal;
|
|
744
745
|
margin: 10px 0;
|
|
745
746
|
}
|
|
746
747
|
.e-richtexteditor .e-rte-content .e-content h3,
|
|
747
748
|
.e-richtexteditor .e-source-content .e-content h3 {
|
|
748
749
|
font-size: 1.31em;
|
|
749
|
-
font-weight:
|
|
750
|
+
font-weight: normal;
|
|
750
751
|
margin: 10px 0;
|
|
751
752
|
}
|
|
752
753
|
.e-richtexteditor .e-rte-content .e-content h4,
|
|
753
754
|
.e-richtexteditor .e-source-content .e-content h4 {
|
|
754
755
|
font-size: 16px;
|
|
755
|
-
font-weight:
|
|
756
|
+
font-weight: normal;
|
|
756
757
|
line-height: 1.5;
|
|
757
758
|
margin: 0;
|
|
758
759
|
}
|
|
759
760
|
.e-richtexteditor .e-rte-content .e-content h5,
|
|
760
761
|
.e-richtexteditor .e-source-content .e-content h5 {
|
|
761
762
|
font-size: 0.8em;
|
|
762
|
-
font-weight:
|
|
763
|
+
font-weight: normal;
|
|
763
764
|
margin: 0;
|
|
764
765
|
}
|
|
765
766
|
.e-richtexteditor .e-rte-content .e-content h6,
|
|
766
767
|
.e-richtexteditor .e-source-content .e-content h6 {
|
|
767
768
|
font-size: 0.65em;
|
|
768
|
-
font-weight:
|
|
769
|
+
font-weight: normal;
|
|
769
770
|
margin: 0;
|
|
770
771
|
}
|
|
771
772
|
.e-richtexteditor .e-rte-content .e-content blockquote,
|
|
@@ -793,7 +794,7 @@
|
|
|
793
794
|
.e-richtexteditor .e-rte-content .e-content b,
|
|
794
795
|
.e-richtexteditor .e-source-content .e-content strong,
|
|
795
796
|
.e-richtexteditor .e-source-content .e-content b {
|
|
796
|
-
font-weight:
|
|
797
|
+
font-weight: bold;
|
|
797
798
|
}
|
|
798
799
|
.e-richtexteditor .e-rte-content .e-content a,
|
|
799
800
|
.e-richtexteditor .e-source-content .e-content a {
|
|
@@ -961,37 +962,37 @@
|
|
|
961
962
|
font-weight: bold;
|
|
962
963
|
}
|
|
963
964
|
.e-rte-dropdown-popup ul .e-item.e-segoe-ui {
|
|
964
|
-
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
|
965
|
+
font-family: "Segoe UI", "Tahoma", "Geneva", "Verdana", sans-serif;
|
|
965
966
|
}
|
|
966
967
|
.e-rte-dropdown-popup ul .e-item.e-arial {
|
|
967
|
-
font-family: Arial, Helvetica, sans-serif;
|
|
968
|
+
font-family: "Arial", "Helvetica", sans-serif;
|
|
968
969
|
}
|
|
969
970
|
.e-rte-dropdown-popup ul .e-item.e-courier-new {
|
|
970
|
-
font-family: Courier New, Courier, monospace;
|
|
971
|
+
font-family: "Courier New", "Courier", monospace;
|
|
971
972
|
}
|
|
972
973
|
.e-rte-dropdown-popup ul .e-item.e-georgia {
|
|
973
|
-
font-family: Georgia, "Times New Roman", Times, serif;
|
|
974
|
+
font-family: "Georgia", "Times New Roman", "Times", serif;
|
|
974
975
|
}
|
|
975
976
|
.e-rte-dropdown-popup ul .e-item.e-helvetica-neue {
|
|
976
|
-
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
977
|
+
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
|
|
977
978
|
}
|
|
978
979
|
.e-rte-dropdown-popup ul .e-item.e-impact {
|
|
979
|
-
font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
|
|
980
|
+
font-family: "Impact", "Haettenschweiler", "Arial Narrow Bold", sans-serif;
|
|
980
981
|
}
|
|
981
982
|
.e-rte-dropdown-popup ul .e-item.e-lucida-console {
|
|
982
|
-
font-family: Lucida Console, Monaco, monospace;
|
|
983
|
+
font-family: "Lucida Console", "Monaco", monospace;
|
|
983
984
|
}
|
|
984
985
|
.e-rte-dropdown-popup ul .e-item.e-tahoma {
|
|
985
|
-
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
|
986
|
+
font-family: "Segoe UI", "Tahoma", "Geneva", "Verdana", sans-serif;
|
|
986
987
|
}
|
|
987
988
|
.e-rte-dropdown-popup ul .e-item.e-times-new-roman {
|
|
988
|
-
font-family: "Times New Roman", Times, serif;
|
|
989
|
+
font-family: "Times New Roman", "Times", serif;
|
|
989
990
|
}
|
|
990
991
|
.e-rte-dropdown-popup ul .e-item.e-trebuchet-ms {
|
|
991
|
-
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
|
|
992
|
+
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", "Arial", sans-serif;
|
|
992
993
|
}
|
|
993
994
|
.e-rte-dropdown-popup ul .e-item.e-verdana {
|
|
994
|
-
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
|
995
|
+
font-family: "Verdana", "Geneva", "Tahoma", sans-serif;
|
|
995
996
|
}
|
|
996
997
|
.e-rte-dropdown-popup ul .e-item.e-roboto {
|
|
997
998
|
font-family: "Roboto", "Segoe UI", "GeezaPro", "DejaVu Serif", sans-serif;
|