@syncfusion/ej2-angular-richtexteditor 20.2.40-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 +29 -15
- 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
|
@@ -418,31 +418,31 @@
|
|
|
418
418
|
}
|
|
419
419
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-edit-table,
|
|
420
420
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-edit-table {
|
|
421
|
-
max-height: 299px !important;
|
|
421
|
+
max-height: 299px !important; /* stylelint-disable-line declaration-no-important */
|
|
422
422
|
}
|
|
423
423
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-edit-table-prop-dialog,
|
|
424
424
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-edit-table-prop-dialog {
|
|
425
|
-
max-height: 373px !important;
|
|
425
|
+
max-height: 373px !important; /* stylelint-disable-line declaration-no-important */
|
|
426
426
|
}
|
|
427
427
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-link-dialog,
|
|
428
428
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-link-dialog {
|
|
429
|
-
max-height: 400px !important;
|
|
429
|
+
max-height: 400px !important; /* stylelint-disable-line declaration-no-important */
|
|
430
430
|
}
|
|
431
431
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-dialog,
|
|
432
432
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-dialog {
|
|
433
|
-
min-height: 425px !important;
|
|
433
|
+
min-height: 425px !important; /* stylelint-disable-line declaration-no-important */
|
|
434
434
|
}
|
|
435
435
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-link-dialog,
|
|
436
436
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-link-dialog {
|
|
437
|
-
max-height: 229px !important;
|
|
437
|
+
max-height: 229px !important; /* stylelint-disable-line declaration-no-important */
|
|
438
438
|
}
|
|
439
439
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-size-dialog,
|
|
440
440
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-size-dialog {
|
|
441
|
-
max-height: 309px !important;
|
|
441
|
+
max-height: 309px !important; /* stylelint-disable-line declaration-no-important */
|
|
442
442
|
}
|
|
443
443
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-alt-dialog,
|
|
444
444
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-alt-dialog {
|
|
445
|
-
min-height: 425px !important;
|
|
445
|
+
min-height: 425px !important; /* stylelint-disable-line declaration-no-important */
|
|
446
446
|
}
|
|
447
447
|
|
|
448
448
|
.e-richtexteditor {
|
|
@@ -468,13 +468,13 @@
|
|
|
468
468
|
}
|
|
469
469
|
.e-richtexteditor.e-rte-full-screen {
|
|
470
470
|
bottom: 0;
|
|
471
|
-
height: 100% !important;
|
|
471
|
+
height: 100% !important; /* stylelint-disable-line declaration-no-important */
|
|
472
472
|
left: 0;
|
|
473
473
|
overflow: auto;
|
|
474
474
|
position: fixed;
|
|
475
475
|
right: 0;
|
|
476
476
|
top: 0;
|
|
477
|
-
width: 100% !important;
|
|
477
|
+
width: 100% !important; /* stylelint-disable-line declaration-no-important */
|
|
478
478
|
z-index: 999;
|
|
479
479
|
}
|
|
480
480
|
.e-richtexteditor.e-rte-full-screen .e-resize-handle {
|
|
@@ -484,25 +484,25 @@
|
|
|
484
484
|
height: calc(100% - 42px);
|
|
485
485
|
}
|
|
486
486
|
.e-richtexteditor.e-rte-full-screen .e-rte-edit-table {
|
|
487
|
-
max-height: 252px !important;
|
|
487
|
+
max-height: 252px !important; /* stylelint-disable-line declaration-no-important */
|
|
488
488
|
}
|
|
489
489
|
.e-richtexteditor.e-rte-full-screen .e-rte-edit-table-prop-dialog {
|
|
490
|
-
max-height: 320px !important;
|
|
490
|
+
max-height: 320px !important; /* stylelint-disable-line declaration-no-important */
|
|
491
491
|
}
|
|
492
492
|
.e-richtexteditor.e-rte-full-screen .e-rte-link-dialog {
|
|
493
|
-
max-height: 353px !important;
|
|
493
|
+
max-height: 353px !important; /* stylelint-disable-line declaration-no-important */
|
|
494
494
|
}
|
|
495
495
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-dialog {
|
|
496
|
-
max-height: 390px !important;
|
|
496
|
+
max-height: 390px !important; /* stylelint-disable-line declaration-no-important */
|
|
497
497
|
}
|
|
498
498
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-link-dialog {
|
|
499
|
-
max-height: 191px !important;
|
|
499
|
+
max-height: 191px !important; /* stylelint-disable-line declaration-no-important */
|
|
500
500
|
}
|
|
501
501
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-size-dialog {
|
|
502
|
-
max-height: 256px !important;
|
|
502
|
+
max-height: 256px !important; /* stylelint-disable-line declaration-no-important */
|
|
503
503
|
}
|
|
504
504
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-alt-dialog {
|
|
505
|
-
max-height: 390px !important;
|
|
505
|
+
max-height: 390px !important; /* stylelint-disable-line declaration-no-important */
|
|
506
506
|
}
|
|
507
507
|
.e-richtexteditor.e-rtl .e-rte-character-count {
|
|
508
508
|
left: 0;
|
|
@@ -713,6 +713,7 @@
|
|
|
713
713
|
}
|
|
714
714
|
.e-richtexteditor .e-rte-content,
|
|
715
715
|
.e-richtexteditor .e-source-content {
|
|
716
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
716
717
|
-webkit-overflow-scrolling: touch;
|
|
717
718
|
overflow: auto;
|
|
718
719
|
transition: 100ms ease-out;
|
|
@@ -749,39 +750,39 @@
|
|
|
749
750
|
.e-richtexteditor .e-rte-content .e-content h1,
|
|
750
751
|
.e-richtexteditor .e-source-content .e-content h1 {
|
|
751
752
|
font-size: 2.17em;
|
|
752
|
-
font-weight:
|
|
753
|
+
font-weight: normal;
|
|
753
754
|
line-height: 1;
|
|
754
755
|
margin: 10px 0;
|
|
755
756
|
}
|
|
756
757
|
.e-richtexteditor .e-rte-content .e-content h2,
|
|
757
758
|
.e-richtexteditor .e-source-content .e-content h2 {
|
|
758
759
|
font-size: 1.74em;
|
|
759
|
-
font-weight:
|
|
760
|
+
font-weight: normal;
|
|
760
761
|
margin: 10px 0;
|
|
761
762
|
}
|
|
762
763
|
.e-richtexteditor .e-rte-content .e-content h3,
|
|
763
764
|
.e-richtexteditor .e-source-content .e-content h3 {
|
|
764
765
|
font-size: 1.31em;
|
|
765
|
-
font-weight:
|
|
766
|
+
font-weight: normal;
|
|
766
767
|
margin: 10px 0;
|
|
767
768
|
}
|
|
768
769
|
.e-richtexteditor .e-rte-content .e-content h4,
|
|
769
770
|
.e-richtexteditor .e-source-content .e-content h4 {
|
|
770
771
|
font-size: 16px;
|
|
771
|
-
font-weight:
|
|
772
|
+
font-weight: normal;
|
|
772
773
|
line-height: 1.5;
|
|
773
774
|
margin: 0;
|
|
774
775
|
}
|
|
775
776
|
.e-richtexteditor .e-rte-content .e-content h5,
|
|
776
777
|
.e-richtexteditor .e-source-content .e-content h5 {
|
|
777
778
|
font-size: 0.8em;
|
|
778
|
-
font-weight:
|
|
779
|
+
font-weight: normal;
|
|
779
780
|
margin: 0;
|
|
780
781
|
}
|
|
781
782
|
.e-richtexteditor .e-rte-content .e-content h6,
|
|
782
783
|
.e-richtexteditor .e-source-content .e-content h6 {
|
|
783
784
|
font-size: 0.65em;
|
|
784
|
-
font-weight:
|
|
785
|
+
font-weight: normal;
|
|
785
786
|
margin: 0;
|
|
786
787
|
}
|
|
787
788
|
.e-richtexteditor .e-rte-content .e-content blockquote,
|
|
@@ -809,7 +810,7 @@
|
|
|
809
810
|
.e-richtexteditor .e-rte-content .e-content b,
|
|
810
811
|
.e-richtexteditor .e-source-content .e-content strong,
|
|
811
812
|
.e-richtexteditor .e-source-content .e-content b {
|
|
812
|
-
font-weight:
|
|
813
|
+
font-weight: bold;
|
|
813
814
|
}
|
|
814
815
|
.e-richtexteditor .e-rte-content .e-content a,
|
|
815
816
|
.e-richtexteditor .e-source-content .e-content a {
|
|
@@ -977,37 +978,37 @@
|
|
|
977
978
|
font-weight: bold;
|
|
978
979
|
}
|
|
979
980
|
.e-rte-dropdown-popup ul .e-item.e-segoe-ui {
|
|
980
|
-
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
|
981
|
+
font-family: "Segoe UI", "Tahoma", "Geneva", "Verdana", sans-serif;
|
|
981
982
|
}
|
|
982
983
|
.e-rte-dropdown-popup ul .e-item.e-arial {
|
|
983
|
-
font-family: Arial, Helvetica, sans-serif;
|
|
984
|
+
font-family: "Arial", "Helvetica", sans-serif;
|
|
984
985
|
}
|
|
985
986
|
.e-rte-dropdown-popup ul .e-item.e-courier-new {
|
|
986
|
-
font-family: Courier New, Courier, monospace;
|
|
987
|
+
font-family: "Courier New", "Courier", monospace;
|
|
987
988
|
}
|
|
988
989
|
.e-rte-dropdown-popup ul .e-item.e-georgia {
|
|
989
|
-
font-family: Georgia, "Times New Roman", Times, serif;
|
|
990
|
+
font-family: "Georgia", "Times New Roman", "Times", serif;
|
|
990
991
|
}
|
|
991
992
|
.e-rte-dropdown-popup ul .e-item.e-helvetica-neue {
|
|
992
|
-
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
993
|
+
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
|
|
993
994
|
}
|
|
994
995
|
.e-rte-dropdown-popup ul .e-item.e-impact {
|
|
995
|
-
font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
|
|
996
|
+
font-family: "Impact", "Haettenschweiler", "Arial Narrow Bold", sans-serif;
|
|
996
997
|
}
|
|
997
998
|
.e-rte-dropdown-popup ul .e-item.e-lucida-console {
|
|
998
|
-
font-family: Lucida Console, Monaco, monospace;
|
|
999
|
+
font-family: "Lucida Console", "Monaco", monospace;
|
|
999
1000
|
}
|
|
1000
1001
|
.e-rte-dropdown-popup ul .e-item.e-tahoma {
|
|
1001
|
-
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
|
1002
|
+
font-family: "Segoe UI", "Tahoma", "Geneva", "Verdana", sans-serif;
|
|
1002
1003
|
}
|
|
1003
1004
|
.e-rte-dropdown-popup ul .e-item.e-times-new-roman {
|
|
1004
|
-
font-family: "Times New Roman", Times, serif;
|
|
1005
|
+
font-family: "Times New Roman", "Times", serif;
|
|
1005
1006
|
}
|
|
1006
1007
|
.e-rte-dropdown-popup ul .e-item.e-trebuchet-ms {
|
|
1007
|
-
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
|
|
1008
|
+
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", "Arial", sans-serif;
|
|
1008
1009
|
}
|
|
1009
1010
|
.e-rte-dropdown-popup ul .e-item.e-verdana {
|
|
1010
|
-
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
|
1011
|
+
font-family: "Verdana", "Geneva", "Tahoma", sans-serif;
|
|
1011
1012
|
}
|
|
1012
1013
|
.e-rte-dropdown-popup ul .e-item.e-roboto {
|
|
1013
1014
|
font-family: "Roboto", "Segoe UI", "GeezaPro", "DejaVu Serif", sans-serif;
|
|
@@ -418,31 +418,31 @@
|
|
|
418
418
|
}
|
|
419
419
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-edit-table,
|
|
420
420
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-edit-table {
|
|
421
|
-
max-height: 299px !important;
|
|
421
|
+
max-height: 299px !important; /* stylelint-disable-line declaration-no-important */
|
|
422
422
|
}
|
|
423
423
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-edit-table-prop-dialog,
|
|
424
424
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-edit-table-prop-dialog {
|
|
425
|
-
max-height: 373px !important;
|
|
425
|
+
max-height: 373px !important; /* stylelint-disable-line declaration-no-important */
|
|
426
426
|
}
|
|
427
427
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-link-dialog,
|
|
428
428
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-link-dialog {
|
|
429
|
-
max-height: 400px !important;
|
|
429
|
+
max-height: 400px !important; /* stylelint-disable-line declaration-no-important */
|
|
430
430
|
}
|
|
431
431
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-dialog,
|
|
432
432
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-dialog {
|
|
433
|
-
min-height: 425px !important;
|
|
433
|
+
min-height: 425px !important; /* stylelint-disable-line declaration-no-important */
|
|
434
434
|
}
|
|
435
435
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-link-dialog,
|
|
436
436
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-link-dialog {
|
|
437
|
-
max-height: 229px !important;
|
|
437
|
+
max-height: 229px !important; /* stylelint-disable-line declaration-no-important */
|
|
438
438
|
}
|
|
439
439
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-size-dialog,
|
|
440
440
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-size-dialog {
|
|
441
|
-
max-height: 309px !important;
|
|
441
|
+
max-height: 309px !important; /* stylelint-disable-line declaration-no-important */
|
|
442
442
|
}
|
|
443
443
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-alt-dialog,
|
|
444
444
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-alt-dialog {
|
|
445
|
-
min-height: 425px !important;
|
|
445
|
+
min-height: 425px !important; /* stylelint-disable-line declaration-no-important */
|
|
446
446
|
}
|
|
447
447
|
|
|
448
448
|
.e-richtexteditor {
|
|
@@ -468,13 +468,13 @@
|
|
|
468
468
|
}
|
|
469
469
|
.e-richtexteditor.e-rte-full-screen {
|
|
470
470
|
bottom: 0;
|
|
471
|
-
height: 100% !important;
|
|
471
|
+
height: 100% !important; /* stylelint-disable-line declaration-no-important */
|
|
472
472
|
left: 0;
|
|
473
473
|
overflow: auto;
|
|
474
474
|
position: fixed;
|
|
475
475
|
right: 0;
|
|
476
476
|
top: 0;
|
|
477
|
-
width: 100% !important;
|
|
477
|
+
width: 100% !important; /* stylelint-disable-line declaration-no-important */
|
|
478
478
|
z-index: 999;
|
|
479
479
|
}
|
|
480
480
|
.e-richtexteditor.e-rte-full-screen .e-resize-handle {
|
|
@@ -484,25 +484,25 @@
|
|
|
484
484
|
height: calc(100% - 42px);
|
|
485
485
|
}
|
|
486
486
|
.e-richtexteditor.e-rte-full-screen .e-rte-edit-table {
|
|
487
|
-
max-height: 252px !important;
|
|
487
|
+
max-height: 252px !important; /* stylelint-disable-line declaration-no-important */
|
|
488
488
|
}
|
|
489
489
|
.e-richtexteditor.e-rte-full-screen .e-rte-edit-table-prop-dialog {
|
|
490
|
-
max-height: 320px !important;
|
|
490
|
+
max-height: 320px !important; /* stylelint-disable-line declaration-no-important */
|
|
491
491
|
}
|
|
492
492
|
.e-richtexteditor.e-rte-full-screen .e-rte-link-dialog {
|
|
493
|
-
max-height: 353px !important;
|
|
493
|
+
max-height: 353px !important; /* stylelint-disable-line declaration-no-important */
|
|
494
494
|
}
|
|
495
495
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-dialog {
|
|
496
|
-
max-height: 390px !important;
|
|
496
|
+
max-height: 390px !important; /* stylelint-disable-line declaration-no-important */
|
|
497
497
|
}
|
|
498
498
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-link-dialog {
|
|
499
|
-
max-height: 191px !important;
|
|
499
|
+
max-height: 191px !important; /* stylelint-disable-line declaration-no-important */
|
|
500
500
|
}
|
|
501
501
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-size-dialog {
|
|
502
|
-
max-height: 256px !important;
|
|
502
|
+
max-height: 256px !important; /* stylelint-disable-line declaration-no-important */
|
|
503
503
|
}
|
|
504
504
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-alt-dialog {
|
|
505
|
-
max-height: 390px !important;
|
|
505
|
+
max-height: 390px !important; /* stylelint-disable-line declaration-no-important */
|
|
506
506
|
}
|
|
507
507
|
.e-richtexteditor.e-rtl .e-rte-character-count {
|
|
508
508
|
left: 0;
|
|
@@ -713,6 +713,7 @@
|
|
|
713
713
|
}
|
|
714
714
|
.e-richtexteditor .e-rte-content,
|
|
715
715
|
.e-richtexteditor .e-source-content {
|
|
716
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
716
717
|
-webkit-overflow-scrolling: touch;
|
|
717
718
|
overflow: auto;
|
|
718
719
|
transition: 100ms ease-out;
|
|
@@ -749,39 +750,39 @@
|
|
|
749
750
|
.e-richtexteditor .e-rte-content .e-content h1,
|
|
750
751
|
.e-richtexteditor .e-source-content .e-content h1 {
|
|
751
752
|
font-size: 2.17em;
|
|
752
|
-
font-weight:
|
|
753
|
+
font-weight: normal;
|
|
753
754
|
line-height: 1;
|
|
754
755
|
margin: 10px 0;
|
|
755
756
|
}
|
|
756
757
|
.e-richtexteditor .e-rte-content .e-content h2,
|
|
757
758
|
.e-richtexteditor .e-source-content .e-content h2 {
|
|
758
759
|
font-size: 1.74em;
|
|
759
|
-
font-weight:
|
|
760
|
+
font-weight: normal;
|
|
760
761
|
margin: 10px 0;
|
|
761
762
|
}
|
|
762
763
|
.e-richtexteditor .e-rte-content .e-content h3,
|
|
763
764
|
.e-richtexteditor .e-source-content .e-content h3 {
|
|
764
765
|
font-size: 1.31em;
|
|
765
|
-
font-weight:
|
|
766
|
+
font-weight: normal;
|
|
766
767
|
margin: 10px 0;
|
|
767
768
|
}
|
|
768
769
|
.e-richtexteditor .e-rte-content .e-content h4,
|
|
769
770
|
.e-richtexteditor .e-source-content .e-content h4 {
|
|
770
771
|
font-size: 16px;
|
|
771
|
-
font-weight:
|
|
772
|
+
font-weight: normal;
|
|
772
773
|
line-height: 1.5;
|
|
773
774
|
margin: 0;
|
|
774
775
|
}
|
|
775
776
|
.e-richtexteditor .e-rte-content .e-content h5,
|
|
776
777
|
.e-richtexteditor .e-source-content .e-content h5 {
|
|
777
778
|
font-size: 0.8em;
|
|
778
|
-
font-weight:
|
|
779
|
+
font-weight: normal;
|
|
779
780
|
margin: 0;
|
|
780
781
|
}
|
|
781
782
|
.e-richtexteditor .e-rte-content .e-content h6,
|
|
782
783
|
.e-richtexteditor .e-source-content .e-content h6 {
|
|
783
784
|
font-size: 0.65em;
|
|
784
|
-
font-weight:
|
|
785
|
+
font-weight: normal;
|
|
785
786
|
margin: 0;
|
|
786
787
|
}
|
|
787
788
|
.e-richtexteditor .e-rte-content .e-content blockquote,
|
|
@@ -809,7 +810,7 @@
|
|
|
809
810
|
.e-richtexteditor .e-rte-content .e-content b,
|
|
810
811
|
.e-richtexteditor .e-source-content .e-content strong,
|
|
811
812
|
.e-richtexteditor .e-source-content .e-content b {
|
|
812
|
-
font-weight:
|
|
813
|
+
font-weight: bold;
|
|
813
814
|
}
|
|
814
815
|
.e-richtexteditor .e-rte-content .e-content a,
|
|
815
816
|
.e-richtexteditor .e-source-content .e-content a {
|
|
@@ -977,37 +978,37 @@
|
|
|
977
978
|
font-weight: bold;
|
|
978
979
|
}
|
|
979
980
|
.e-rte-dropdown-popup ul .e-item.e-segoe-ui {
|
|
980
|
-
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
|
981
|
+
font-family: "Segoe UI", "Tahoma", "Geneva", "Verdana", sans-serif;
|
|
981
982
|
}
|
|
982
983
|
.e-rte-dropdown-popup ul .e-item.e-arial {
|
|
983
|
-
font-family: Arial, Helvetica, sans-serif;
|
|
984
|
+
font-family: "Arial", "Helvetica", sans-serif;
|
|
984
985
|
}
|
|
985
986
|
.e-rte-dropdown-popup ul .e-item.e-courier-new {
|
|
986
|
-
font-family: Courier New, Courier, monospace;
|
|
987
|
+
font-family: "Courier New", "Courier", monospace;
|
|
987
988
|
}
|
|
988
989
|
.e-rte-dropdown-popup ul .e-item.e-georgia {
|
|
989
|
-
font-family: Georgia, "Times New Roman", Times, serif;
|
|
990
|
+
font-family: "Georgia", "Times New Roman", "Times", serif;
|
|
990
991
|
}
|
|
991
992
|
.e-rte-dropdown-popup ul .e-item.e-helvetica-neue {
|
|
992
|
-
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
993
|
+
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
|
|
993
994
|
}
|
|
994
995
|
.e-rte-dropdown-popup ul .e-item.e-impact {
|
|
995
|
-
font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
|
|
996
|
+
font-family: "Impact", "Haettenschweiler", "Arial Narrow Bold", sans-serif;
|
|
996
997
|
}
|
|
997
998
|
.e-rte-dropdown-popup ul .e-item.e-lucida-console {
|
|
998
|
-
font-family: Lucida Console, Monaco, monospace;
|
|
999
|
+
font-family: "Lucida Console", "Monaco", monospace;
|
|
999
1000
|
}
|
|
1000
1001
|
.e-rte-dropdown-popup ul .e-item.e-tahoma {
|
|
1001
|
-
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
|
1002
|
+
font-family: "Segoe UI", "Tahoma", "Geneva", "Verdana", sans-serif;
|
|
1002
1003
|
}
|
|
1003
1004
|
.e-rte-dropdown-popup ul .e-item.e-times-new-roman {
|
|
1004
|
-
font-family: "Times New Roman", Times, serif;
|
|
1005
|
+
font-family: "Times New Roman", "Times", serif;
|
|
1005
1006
|
}
|
|
1006
1007
|
.e-rte-dropdown-popup ul .e-item.e-trebuchet-ms {
|
|
1007
|
-
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
|
|
1008
|
+
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", "Arial", sans-serif;
|
|
1008
1009
|
}
|
|
1009
1010
|
.e-rte-dropdown-popup ul .e-item.e-verdana {
|
|
1010
|
-
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
|
1011
|
+
font-family: "Verdana", "Geneva", "Tahoma", sans-serif;
|
|
1011
1012
|
}
|
|
1012
1013
|
.e-rte-dropdown-popup ul .e-item.e-roboto {
|
|
1013
1014
|
font-family: "Roboto", "Segoe UI", "GeezaPro", "DejaVu Serif", sans-serif;
|
|
@@ -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;
|