@syncfusion/ej2-angular-richtexteditor 20.2.38-ngcc → 20.2.39
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 +38 -37
- 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 +38 -37
- 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 -1066
- package/dist/ej2-angular-richtexteditor.umd.js +0 -725
- 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 -124
- 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 -124
- 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 -124
- 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 -124
- 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 -124
- 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 -124
- 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
|
@@ -419,31 +419,31 @@
|
|
|
419
419
|
}
|
|
420
420
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-edit-table,
|
|
421
421
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-edit-table {
|
|
422
|
-
max-height: 330px !important;
|
|
422
|
+
max-height: 330px !important; /* stylelint-disable-line declaration-no-important */
|
|
423
423
|
}
|
|
424
424
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-edit-table-prop-dialog,
|
|
425
425
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-edit-table-prop-dialog {
|
|
426
|
-
max-height: 414px !important;
|
|
426
|
+
max-height: 414px !important; /* stylelint-disable-line declaration-no-important */
|
|
427
427
|
}
|
|
428
428
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-link-dialog,
|
|
429
429
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-link-dialog {
|
|
430
|
-
max-height: 427px !important;
|
|
430
|
+
max-height: 427px !important; /* stylelint-disable-line declaration-no-important */
|
|
431
431
|
}
|
|
432
432
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-dialog,
|
|
433
433
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-dialog {
|
|
434
|
-
min-height: 457px !important;
|
|
434
|
+
min-height: 457px !important; /* stylelint-disable-line declaration-no-important */
|
|
435
435
|
}
|
|
436
436
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-link-dialog,
|
|
437
437
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-link-dialog {
|
|
438
|
-
max-height: 256px !important;
|
|
438
|
+
max-height: 256px !important; /* stylelint-disable-line declaration-no-important */
|
|
439
439
|
}
|
|
440
440
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-size-dialog,
|
|
441
441
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-size-dialog {
|
|
442
|
-
max-height: 327px !important;
|
|
442
|
+
max-height: 327px !important; /* stylelint-disable-line declaration-no-important */
|
|
443
443
|
}
|
|
444
444
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-alt-dialog,
|
|
445
445
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-alt-dialog {
|
|
446
|
-
min-height: 457px !important;
|
|
446
|
+
min-height: 457px !important; /* stylelint-disable-line declaration-no-important */
|
|
447
447
|
}
|
|
448
448
|
|
|
449
449
|
.e-richtexteditor {
|
|
@@ -469,13 +469,13 @@
|
|
|
469
469
|
}
|
|
470
470
|
.e-richtexteditor.e-rte-full-screen {
|
|
471
471
|
bottom: 0;
|
|
472
|
-
height: 100% !important;
|
|
472
|
+
height: 100% !important; /* stylelint-disable-line declaration-no-important */
|
|
473
473
|
left: 0;
|
|
474
474
|
overflow: auto;
|
|
475
475
|
position: fixed;
|
|
476
476
|
right: 0;
|
|
477
477
|
top: 0;
|
|
478
|
-
width: 100% !important;
|
|
478
|
+
width: 100% !important; /* stylelint-disable-line declaration-no-important */
|
|
479
479
|
z-index: 999;
|
|
480
480
|
}
|
|
481
481
|
.e-richtexteditor.e-rte-full-screen .e-resize-handle {
|
|
@@ -485,25 +485,25 @@
|
|
|
485
485
|
height: calc(100% - 42px);
|
|
486
486
|
}
|
|
487
487
|
.e-richtexteditor.e-rte-full-screen .e-rte-edit-table {
|
|
488
|
-
max-height: 287px !important;
|
|
488
|
+
max-height: 287px !important; /* stylelint-disable-line declaration-no-important */
|
|
489
489
|
}
|
|
490
490
|
.e-richtexteditor.e-rte-full-screen .e-rte-edit-table-prop-dialog {
|
|
491
|
-
max-height: 365px !important;
|
|
491
|
+
max-height: 365px !important; /* stylelint-disable-line declaration-no-important */
|
|
492
492
|
}
|
|
493
493
|
.e-richtexteditor.e-rte-full-screen .e-rte-link-dialog {
|
|
494
|
-
max-height: 394px !important;
|
|
494
|
+
max-height: 394px !important; /* stylelint-disable-line declaration-no-important */
|
|
495
495
|
}
|
|
496
496
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-dialog {
|
|
497
|
-
max-height: 426px !important;
|
|
497
|
+
max-height: 426px !important; /* stylelint-disable-line declaration-no-important */
|
|
498
498
|
}
|
|
499
499
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-link-dialog {
|
|
500
|
-
max-height: 223px !important;
|
|
500
|
+
max-height: 223px !important; /* stylelint-disable-line declaration-no-important */
|
|
501
501
|
}
|
|
502
502
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-size-dialog {
|
|
503
|
-
max-height: 284px !important;
|
|
503
|
+
max-height: 284px !important; /* stylelint-disable-line declaration-no-important */
|
|
504
504
|
}
|
|
505
505
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-alt-dialog {
|
|
506
|
-
max-height: 426px !important;
|
|
506
|
+
max-height: 426px !important; /* stylelint-disable-line declaration-no-important */
|
|
507
507
|
}
|
|
508
508
|
.e-richtexteditor.e-rtl .e-rte-character-count {
|
|
509
509
|
left: 0;
|
|
@@ -705,6 +705,7 @@
|
|
|
705
705
|
}
|
|
706
706
|
.e-richtexteditor .e-rte-content,
|
|
707
707
|
.e-richtexteditor .e-source-content {
|
|
708
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
708
709
|
-webkit-overflow-scrolling: touch;
|
|
709
710
|
overflow: auto;
|
|
710
711
|
transition: 100ms ease-out;
|
|
@@ -741,39 +742,39 @@
|
|
|
741
742
|
.e-richtexteditor .e-rte-content .e-content h1,
|
|
742
743
|
.e-richtexteditor .e-source-content .e-content h1 {
|
|
743
744
|
font-size: 2.17em;
|
|
744
|
-
font-weight:
|
|
745
|
+
font-weight: normal;
|
|
745
746
|
line-height: 1;
|
|
746
747
|
margin: 10px 0;
|
|
747
748
|
}
|
|
748
749
|
.e-richtexteditor .e-rte-content .e-content h2,
|
|
749
750
|
.e-richtexteditor .e-source-content .e-content h2 {
|
|
750
751
|
font-size: 1.74em;
|
|
751
|
-
font-weight:
|
|
752
|
+
font-weight: normal;
|
|
752
753
|
margin: 10px 0;
|
|
753
754
|
}
|
|
754
755
|
.e-richtexteditor .e-rte-content .e-content h3,
|
|
755
756
|
.e-richtexteditor .e-source-content .e-content h3 {
|
|
756
757
|
font-size: 1.31em;
|
|
757
|
-
font-weight:
|
|
758
|
+
font-weight: normal;
|
|
758
759
|
margin: 10px 0;
|
|
759
760
|
}
|
|
760
761
|
.e-richtexteditor .e-rte-content .e-content h4,
|
|
761
762
|
.e-richtexteditor .e-source-content .e-content h4 {
|
|
762
763
|
font-size: 16px;
|
|
763
|
-
font-weight:
|
|
764
|
+
font-weight: normal;
|
|
764
765
|
line-height: 1.5;
|
|
765
766
|
margin: 0;
|
|
766
767
|
}
|
|
767
768
|
.e-richtexteditor .e-rte-content .e-content h5,
|
|
768
769
|
.e-richtexteditor .e-source-content .e-content h5 {
|
|
769
770
|
font-size: 0.8em;
|
|
770
|
-
font-weight:
|
|
771
|
+
font-weight: normal;
|
|
771
772
|
margin: 0;
|
|
772
773
|
}
|
|
773
774
|
.e-richtexteditor .e-rte-content .e-content h6,
|
|
774
775
|
.e-richtexteditor .e-source-content .e-content h6 {
|
|
775
776
|
font-size: 0.65em;
|
|
776
|
-
font-weight:
|
|
777
|
+
font-weight: normal;
|
|
777
778
|
margin: 0;
|
|
778
779
|
}
|
|
779
780
|
.e-richtexteditor .e-rte-content .e-content blockquote,
|
|
@@ -801,7 +802,7 @@
|
|
|
801
802
|
.e-richtexteditor .e-rte-content .e-content b,
|
|
802
803
|
.e-richtexteditor .e-source-content .e-content strong,
|
|
803
804
|
.e-richtexteditor .e-source-content .e-content b {
|
|
804
|
-
font-weight:
|
|
805
|
+
font-weight: bold;
|
|
805
806
|
}
|
|
806
807
|
.e-richtexteditor .e-rte-content .e-content a,
|
|
807
808
|
.e-richtexteditor .e-source-content .e-content a {
|
|
@@ -969,37 +970,37 @@
|
|
|
969
970
|
font-weight: bold;
|
|
970
971
|
}
|
|
971
972
|
.e-rte-dropdown-popup ul .e-item.e-segoe-ui {
|
|
972
|
-
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
|
973
|
+
font-family: "Segoe UI", "Tahoma", "Geneva", "Verdana", sans-serif;
|
|
973
974
|
}
|
|
974
975
|
.e-rte-dropdown-popup ul .e-item.e-arial {
|
|
975
|
-
font-family: Arial, Helvetica, sans-serif;
|
|
976
|
+
font-family: "Arial", "Helvetica", sans-serif;
|
|
976
977
|
}
|
|
977
978
|
.e-rte-dropdown-popup ul .e-item.e-courier-new {
|
|
978
|
-
font-family: Courier New, Courier, monospace;
|
|
979
|
+
font-family: "Courier New", "Courier", monospace;
|
|
979
980
|
}
|
|
980
981
|
.e-rte-dropdown-popup ul .e-item.e-georgia {
|
|
981
|
-
font-family: Georgia, "Times New Roman", Times, serif;
|
|
982
|
+
font-family: "Georgia", "Times New Roman", "Times", serif;
|
|
982
983
|
}
|
|
983
984
|
.e-rte-dropdown-popup ul .e-item.e-helvetica-neue {
|
|
984
|
-
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
985
|
+
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
|
|
985
986
|
}
|
|
986
987
|
.e-rte-dropdown-popup ul .e-item.e-impact {
|
|
987
|
-
font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
|
|
988
|
+
font-family: "Impact", "Haettenschweiler", "Arial Narrow Bold", sans-serif;
|
|
988
989
|
}
|
|
989
990
|
.e-rte-dropdown-popup ul .e-item.e-lucida-console {
|
|
990
|
-
font-family: Lucida Console, Monaco, monospace;
|
|
991
|
+
font-family: "Lucida Console", "Monaco", monospace;
|
|
991
992
|
}
|
|
992
993
|
.e-rte-dropdown-popup ul .e-item.e-tahoma {
|
|
993
|
-
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
|
994
|
+
font-family: "Segoe UI", "Tahoma", "Geneva", "Verdana", sans-serif;
|
|
994
995
|
}
|
|
995
996
|
.e-rte-dropdown-popup ul .e-item.e-times-new-roman {
|
|
996
|
-
font-family: "Times New Roman", Times, serif;
|
|
997
|
+
font-family: "Times New Roman", "Times", serif;
|
|
997
998
|
}
|
|
998
999
|
.e-rte-dropdown-popup ul .e-item.e-trebuchet-ms {
|
|
999
|
-
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
|
|
1000
|
+
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", "Arial", sans-serif;
|
|
1000
1001
|
}
|
|
1001
1002
|
.e-rte-dropdown-popup ul .e-item.e-verdana {
|
|
1002
|
-
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
|
1003
|
+
font-family: "Verdana", "Geneva", "Tahoma", sans-serif;
|
|
1003
1004
|
}
|
|
1004
1005
|
.e-rte-dropdown-popup ul .e-item.e-roboto {
|
|
1005
1006
|
font-family: "Roboto", "Segoe UI", "GeezaPro", "DejaVu Serif", sans-serif;
|
|
@@ -560,31 +560,31 @@
|
|
|
560
560
|
}
|
|
561
561
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-edit-table,
|
|
562
562
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-edit-table {
|
|
563
|
-
max-height: 330px !important;
|
|
563
|
+
max-height: 330px !important; /* stylelint-disable-line declaration-no-important */
|
|
564
564
|
}
|
|
565
565
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-edit-table-prop-dialog,
|
|
566
566
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-edit-table-prop-dialog {
|
|
567
|
-
max-height: 414px !important;
|
|
567
|
+
max-height: 414px !important; /* stylelint-disable-line declaration-no-important */
|
|
568
568
|
}
|
|
569
569
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-link-dialog,
|
|
570
570
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-link-dialog {
|
|
571
|
-
max-height: 427px !important;
|
|
571
|
+
max-height: 427px !important; /* stylelint-disable-line declaration-no-important */
|
|
572
572
|
}
|
|
573
573
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-dialog,
|
|
574
574
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-dialog {
|
|
575
|
-
min-height: 457px !important;
|
|
575
|
+
min-height: 457px !important; /* stylelint-disable-line declaration-no-important */
|
|
576
576
|
}
|
|
577
577
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-link-dialog,
|
|
578
578
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-link-dialog {
|
|
579
|
-
max-height: 256px !important;
|
|
579
|
+
max-height: 256px !important; /* stylelint-disable-line declaration-no-important */
|
|
580
580
|
}
|
|
581
581
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-size-dialog,
|
|
582
582
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-size-dialog {
|
|
583
|
-
max-height: 327px !important;
|
|
583
|
+
max-height: 327px !important; /* stylelint-disable-line declaration-no-important */
|
|
584
584
|
}
|
|
585
585
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-alt-dialog,
|
|
586
586
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-alt-dialog {
|
|
587
|
-
min-height: 457px !important;
|
|
587
|
+
min-height: 457px !important; /* stylelint-disable-line declaration-no-important */
|
|
588
588
|
}
|
|
589
589
|
|
|
590
590
|
.e-richtexteditor {
|
|
@@ -610,13 +610,13 @@
|
|
|
610
610
|
}
|
|
611
611
|
.e-richtexteditor.e-rte-full-screen {
|
|
612
612
|
bottom: 0;
|
|
613
|
-
height: 100% !important;
|
|
613
|
+
height: 100% !important; /* stylelint-disable-line declaration-no-important */
|
|
614
614
|
left: 0;
|
|
615
615
|
overflow: auto;
|
|
616
616
|
position: fixed;
|
|
617
617
|
right: 0;
|
|
618
618
|
top: 0;
|
|
619
|
-
width: 100% !important;
|
|
619
|
+
width: 100% !important; /* stylelint-disable-line declaration-no-important */
|
|
620
620
|
z-index: 999;
|
|
621
621
|
}
|
|
622
622
|
.e-richtexteditor.e-rte-full-screen .e-resize-handle {
|
|
@@ -626,25 +626,25 @@
|
|
|
626
626
|
height: calc(100% - 42px);
|
|
627
627
|
}
|
|
628
628
|
.e-richtexteditor.e-rte-full-screen .e-rte-edit-table {
|
|
629
|
-
max-height: 287px !important;
|
|
629
|
+
max-height: 287px !important; /* stylelint-disable-line declaration-no-important */
|
|
630
630
|
}
|
|
631
631
|
.e-richtexteditor.e-rte-full-screen .e-rte-edit-table-prop-dialog {
|
|
632
|
-
max-height: 365px !important;
|
|
632
|
+
max-height: 365px !important; /* stylelint-disable-line declaration-no-important */
|
|
633
633
|
}
|
|
634
634
|
.e-richtexteditor.e-rte-full-screen .e-rte-link-dialog {
|
|
635
|
-
max-height: 394px !important;
|
|
635
|
+
max-height: 394px !important; /* stylelint-disable-line declaration-no-important */
|
|
636
636
|
}
|
|
637
637
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-dialog {
|
|
638
|
-
max-height: 426px !important;
|
|
638
|
+
max-height: 426px !important; /* stylelint-disable-line declaration-no-important */
|
|
639
639
|
}
|
|
640
640
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-link-dialog {
|
|
641
|
-
max-height: 223px !important;
|
|
641
|
+
max-height: 223px !important; /* stylelint-disable-line declaration-no-important */
|
|
642
642
|
}
|
|
643
643
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-size-dialog {
|
|
644
|
-
max-height: 284px !important;
|
|
644
|
+
max-height: 284px !important; /* stylelint-disable-line declaration-no-important */
|
|
645
645
|
}
|
|
646
646
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-alt-dialog {
|
|
647
|
-
max-height: 426px !important;
|
|
647
|
+
max-height: 426px !important; /* stylelint-disable-line declaration-no-important */
|
|
648
648
|
}
|
|
649
649
|
.e-richtexteditor.e-rtl .e-rte-character-count {
|
|
650
650
|
left: 0;
|
|
@@ -846,6 +846,7 @@
|
|
|
846
846
|
}
|
|
847
847
|
.e-richtexteditor .e-rte-content,
|
|
848
848
|
.e-richtexteditor .e-source-content {
|
|
849
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
849
850
|
-webkit-overflow-scrolling: touch;
|
|
850
851
|
overflow: auto;
|
|
851
852
|
transition: 100ms ease-out;
|
|
@@ -882,39 +883,39 @@
|
|
|
882
883
|
.e-richtexteditor .e-rte-content .e-content h1,
|
|
883
884
|
.e-richtexteditor .e-source-content .e-content h1 {
|
|
884
885
|
font-size: 2.17em;
|
|
885
|
-
font-weight:
|
|
886
|
+
font-weight: normal;
|
|
886
887
|
line-height: 1;
|
|
887
888
|
margin: 10px 0;
|
|
888
889
|
}
|
|
889
890
|
.e-richtexteditor .e-rte-content .e-content h2,
|
|
890
891
|
.e-richtexteditor .e-source-content .e-content h2 {
|
|
891
892
|
font-size: 1.74em;
|
|
892
|
-
font-weight:
|
|
893
|
+
font-weight: normal;
|
|
893
894
|
margin: 10px 0;
|
|
894
895
|
}
|
|
895
896
|
.e-richtexteditor .e-rte-content .e-content h3,
|
|
896
897
|
.e-richtexteditor .e-source-content .e-content h3 {
|
|
897
898
|
font-size: 1.31em;
|
|
898
|
-
font-weight:
|
|
899
|
+
font-weight: normal;
|
|
899
900
|
margin: 10px 0;
|
|
900
901
|
}
|
|
901
902
|
.e-richtexteditor .e-rte-content .e-content h4,
|
|
902
903
|
.e-richtexteditor .e-source-content .e-content h4 {
|
|
903
904
|
font-size: 16px;
|
|
904
|
-
font-weight:
|
|
905
|
+
font-weight: normal;
|
|
905
906
|
line-height: 1.5;
|
|
906
907
|
margin: 0;
|
|
907
908
|
}
|
|
908
909
|
.e-richtexteditor .e-rte-content .e-content h5,
|
|
909
910
|
.e-richtexteditor .e-source-content .e-content h5 {
|
|
910
911
|
font-size: 0.8em;
|
|
911
|
-
font-weight:
|
|
912
|
+
font-weight: normal;
|
|
912
913
|
margin: 0;
|
|
913
914
|
}
|
|
914
915
|
.e-richtexteditor .e-rte-content .e-content h6,
|
|
915
916
|
.e-richtexteditor .e-source-content .e-content h6 {
|
|
916
917
|
font-size: 0.65em;
|
|
917
|
-
font-weight:
|
|
918
|
+
font-weight: normal;
|
|
918
919
|
margin: 0;
|
|
919
920
|
}
|
|
920
921
|
.e-richtexteditor .e-rte-content .e-content blockquote,
|
|
@@ -942,7 +943,7 @@
|
|
|
942
943
|
.e-richtexteditor .e-rte-content .e-content b,
|
|
943
944
|
.e-richtexteditor .e-source-content .e-content strong,
|
|
944
945
|
.e-richtexteditor .e-source-content .e-content b {
|
|
945
|
-
font-weight:
|
|
946
|
+
font-weight: bold;
|
|
946
947
|
}
|
|
947
948
|
.e-richtexteditor .e-rte-content .e-content a,
|
|
948
949
|
.e-richtexteditor .e-source-content .e-content a {
|
|
@@ -1110,37 +1111,37 @@
|
|
|
1110
1111
|
font-weight: bold;
|
|
1111
1112
|
}
|
|
1112
1113
|
.e-rte-dropdown-popup ul .e-item.e-segoe-ui {
|
|
1113
|
-
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
|
1114
|
+
font-family: "Segoe UI", "Tahoma", "Geneva", "Verdana", sans-serif;
|
|
1114
1115
|
}
|
|
1115
1116
|
.e-rte-dropdown-popup ul .e-item.e-arial {
|
|
1116
|
-
font-family: Arial, Helvetica, sans-serif;
|
|
1117
|
+
font-family: "Arial", "Helvetica", sans-serif;
|
|
1117
1118
|
}
|
|
1118
1119
|
.e-rte-dropdown-popup ul .e-item.e-courier-new {
|
|
1119
|
-
font-family: Courier New, Courier, monospace;
|
|
1120
|
+
font-family: "Courier New", "Courier", monospace;
|
|
1120
1121
|
}
|
|
1121
1122
|
.e-rte-dropdown-popup ul .e-item.e-georgia {
|
|
1122
|
-
font-family: Georgia, "Times New Roman", Times, serif;
|
|
1123
|
+
font-family: "Georgia", "Times New Roman", "Times", serif;
|
|
1123
1124
|
}
|
|
1124
1125
|
.e-rte-dropdown-popup ul .e-item.e-helvetica-neue {
|
|
1125
|
-
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
1126
|
+
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
|
|
1126
1127
|
}
|
|
1127
1128
|
.e-rte-dropdown-popup ul .e-item.e-impact {
|
|
1128
|
-
font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
|
|
1129
|
+
font-family: "Impact", "Haettenschweiler", "Arial Narrow Bold", sans-serif;
|
|
1129
1130
|
}
|
|
1130
1131
|
.e-rte-dropdown-popup ul .e-item.e-lucida-console {
|
|
1131
|
-
font-family: Lucida Console, Monaco, monospace;
|
|
1132
|
+
font-family: "Lucida Console", "Monaco", monospace;
|
|
1132
1133
|
}
|
|
1133
1134
|
.e-rte-dropdown-popup ul .e-item.e-tahoma {
|
|
1134
|
-
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
|
1135
|
+
font-family: "Segoe UI", "Tahoma", "Geneva", "Verdana", sans-serif;
|
|
1135
1136
|
}
|
|
1136
1137
|
.e-rte-dropdown-popup ul .e-item.e-times-new-roman {
|
|
1137
|
-
font-family: "Times New Roman", Times, serif;
|
|
1138
|
+
font-family: "Times New Roman", "Times", serif;
|
|
1138
1139
|
}
|
|
1139
1140
|
.e-rte-dropdown-popup ul .e-item.e-trebuchet-ms {
|
|
1140
|
-
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
|
|
1141
|
+
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", "Arial", sans-serif;
|
|
1141
1142
|
}
|
|
1142
1143
|
.e-rte-dropdown-popup ul .e-item.e-verdana {
|
|
1143
|
-
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
|
1144
|
+
font-family: "Verdana", "Geneva", "Tahoma", sans-serif;
|
|
1144
1145
|
}
|
|
1145
1146
|
.e-rte-dropdown-popup ul .e-item.e-roboto {
|
|
1146
1147
|
font-family: "Roboto", "Segoe UI", "GeezaPro", "DejaVu Serif", sans-serif;
|
|
@@ -655,31 +655,31 @@
|
|
|
655
655
|
}
|
|
656
656
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-edit-table,
|
|
657
657
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-edit-table {
|
|
658
|
-
max-height: 302px !important;
|
|
658
|
+
max-height: 302px !important; /* stylelint-disable-line declaration-no-important */
|
|
659
659
|
}
|
|
660
660
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-edit-table-prop-dialog,
|
|
661
661
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-edit-table-prop-dialog {
|
|
662
|
-
max-height: 378px !important;
|
|
662
|
+
max-height: 378px !important; /* stylelint-disable-line declaration-no-important */
|
|
663
663
|
}
|
|
664
664
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-link-dialog,
|
|
665
665
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-link-dialog {
|
|
666
|
-
max-height: 404px !important;
|
|
666
|
+
max-height: 404px !important; /* stylelint-disable-line declaration-no-important */
|
|
667
667
|
}
|
|
668
668
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-dialog,
|
|
669
669
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-dialog {
|
|
670
|
-
min-height: 428px !important;
|
|
670
|
+
min-height: 428px !important; /* stylelint-disable-line declaration-no-important */
|
|
671
671
|
}
|
|
672
672
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-link-dialog,
|
|
673
673
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-link-dialog {
|
|
674
|
-
max-height: 231px !important;
|
|
674
|
+
max-height: 231px !important; /* stylelint-disable-line declaration-no-important */
|
|
675
675
|
}
|
|
676
676
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-size-dialog,
|
|
677
677
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-size-dialog {
|
|
678
|
-
max-height: 312px !important;
|
|
678
|
+
max-height: 312px !important; /* stylelint-disable-line declaration-no-important */
|
|
679
679
|
}
|
|
680
680
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-alt-dialog,
|
|
681
681
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-alt-dialog {
|
|
682
|
-
min-height: 428px !important;
|
|
682
|
+
min-height: 428px !important; /* stylelint-disable-line declaration-no-important */
|
|
683
683
|
}
|
|
684
684
|
|
|
685
685
|
.e-richtexteditor {
|
|
@@ -705,13 +705,13 @@
|
|
|
705
705
|
}
|
|
706
706
|
.e-richtexteditor.e-rte-full-screen {
|
|
707
707
|
bottom: 0;
|
|
708
|
-
height: 100% !important;
|
|
708
|
+
height: 100% !important; /* stylelint-disable-line declaration-no-important */
|
|
709
709
|
left: 0;
|
|
710
710
|
overflow: auto;
|
|
711
711
|
position: fixed;
|
|
712
712
|
right: 0;
|
|
713
713
|
top: 0;
|
|
714
|
-
width: 100% !important;
|
|
714
|
+
width: 100% !important; /* stylelint-disable-line declaration-no-important */
|
|
715
715
|
z-index: 999;
|
|
716
716
|
}
|
|
717
717
|
.e-richtexteditor.e-rte-full-screen .e-resize-handle {
|
|
@@ -721,25 +721,25 @@
|
|
|
721
721
|
height: calc(100% - 42px);
|
|
722
722
|
}
|
|
723
723
|
.e-richtexteditor.e-rte-full-screen .e-rte-edit-table {
|
|
724
|
-
max-height: 264px !important;
|
|
724
|
+
max-height: 264px !important; /* stylelint-disable-line declaration-no-important */
|
|
725
725
|
}
|
|
726
726
|
.e-richtexteditor.e-rte-full-screen .e-rte-edit-table-prop-dialog {
|
|
727
|
-
max-height: 333px !important;
|
|
727
|
+
max-height: 333px !important; /* stylelint-disable-line declaration-no-important */
|
|
728
728
|
}
|
|
729
729
|
.e-richtexteditor.e-rte-full-screen .e-rte-link-dialog {
|
|
730
|
-
max-height: 368px !important;
|
|
730
|
+
max-height: 368px !important; /* stylelint-disable-line declaration-no-important */
|
|
731
731
|
}
|
|
732
732
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-dialog {
|
|
733
|
-
max-height: 405px !important;
|
|
733
|
+
max-height: 405px !important; /* stylelint-disable-line declaration-no-important */
|
|
734
734
|
}
|
|
735
735
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-link-dialog {
|
|
736
|
-
max-height: 204px !important;
|
|
736
|
+
max-height: 204px !important; /* stylelint-disable-line declaration-no-important */
|
|
737
737
|
}
|
|
738
738
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-size-dialog {
|
|
739
|
-
max-height: 268px !important;
|
|
739
|
+
max-height: 268px !important; /* stylelint-disable-line declaration-no-important */
|
|
740
740
|
}
|
|
741
741
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-alt-dialog {
|
|
742
|
-
max-height: 405px !important;
|
|
742
|
+
max-height: 405px !important; /* stylelint-disable-line declaration-no-important */
|
|
743
743
|
}
|
|
744
744
|
.e-richtexteditor.e-rtl .e-rte-character-count {
|
|
745
745
|
left: 0;
|
|
@@ -941,6 +941,7 @@
|
|
|
941
941
|
}
|
|
942
942
|
.e-richtexteditor .e-rte-content,
|
|
943
943
|
.e-richtexteditor .e-source-content {
|
|
944
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
944
945
|
-webkit-overflow-scrolling: touch;
|
|
945
946
|
overflow: auto;
|
|
946
947
|
transition: 100ms ease-out;
|
|
@@ -977,39 +978,39 @@
|
|
|
977
978
|
.e-richtexteditor .e-rte-content .e-content h1,
|
|
978
979
|
.e-richtexteditor .e-source-content .e-content h1 {
|
|
979
980
|
font-size: 2.17em;
|
|
980
|
-
font-weight:
|
|
981
|
+
font-weight: normal;
|
|
981
982
|
line-height: 1;
|
|
982
983
|
margin: 10px 0;
|
|
983
984
|
}
|
|
984
985
|
.e-richtexteditor .e-rte-content .e-content h2,
|
|
985
986
|
.e-richtexteditor .e-source-content .e-content h2 {
|
|
986
987
|
font-size: 1.74em;
|
|
987
|
-
font-weight:
|
|
988
|
+
font-weight: normal;
|
|
988
989
|
margin: 10px 0;
|
|
989
990
|
}
|
|
990
991
|
.e-richtexteditor .e-rte-content .e-content h3,
|
|
991
992
|
.e-richtexteditor .e-source-content .e-content h3 {
|
|
992
993
|
font-size: 1.31em;
|
|
993
|
-
font-weight:
|
|
994
|
+
font-weight: normal;
|
|
994
995
|
margin: 10px 0;
|
|
995
996
|
}
|
|
996
997
|
.e-richtexteditor .e-rte-content .e-content h4,
|
|
997
998
|
.e-richtexteditor .e-source-content .e-content h4 {
|
|
998
999
|
font-size: 16px;
|
|
999
|
-
font-weight:
|
|
1000
|
+
font-weight: normal;
|
|
1000
1001
|
line-height: 1.5;
|
|
1001
1002
|
margin: 0;
|
|
1002
1003
|
}
|
|
1003
1004
|
.e-richtexteditor .e-rte-content .e-content h5,
|
|
1004
1005
|
.e-richtexteditor .e-source-content .e-content h5 {
|
|
1005
1006
|
font-size: 0.8em;
|
|
1006
|
-
font-weight:
|
|
1007
|
+
font-weight: normal;
|
|
1007
1008
|
margin: 0;
|
|
1008
1009
|
}
|
|
1009
1010
|
.e-richtexteditor .e-rte-content .e-content h6,
|
|
1010
1011
|
.e-richtexteditor .e-source-content .e-content h6 {
|
|
1011
1012
|
font-size: 0.65em;
|
|
1012
|
-
font-weight:
|
|
1013
|
+
font-weight: normal;
|
|
1013
1014
|
margin: 0;
|
|
1014
1015
|
}
|
|
1015
1016
|
.e-richtexteditor .e-rte-content .e-content blockquote,
|
|
@@ -1037,7 +1038,7 @@
|
|
|
1037
1038
|
.e-richtexteditor .e-rte-content .e-content b,
|
|
1038
1039
|
.e-richtexteditor .e-source-content .e-content strong,
|
|
1039
1040
|
.e-richtexteditor .e-source-content .e-content b {
|
|
1040
|
-
font-weight:
|
|
1041
|
+
font-weight: bold;
|
|
1041
1042
|
}
|
|
1042
1043
|
.e-richtexteditor .e-rte-content .e-content a,
|
|
1043
1044
|
.e-richtexteditor .e-source-content .e-content a {
|
|
@@ -1205,37 +1206,37 @@
|
|
|
1205
1206
|
font-weight: bold;
|
|
1206
1207
|
}
|
|
1207
1208
|
.e-rte-dropdown-popup ul .e-item.e-segoe-ui {
|
|
1208
|
-
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
|
1209
|
+
font-family: "Segoe UI", "Tahoma", "Geneva", "Verdana", sans-serif;
|
|
1209
1210
|
}
|
|
1210
1211
|
.e-rte-dropdown-popup ul .e-item.e-arial {
|
|
1211
|
-
font-family: Arial, Helvetica, sans-serif;
|
|
1212
|
+
font-family: "Arial", "Helvetica", sans-serif;
|
|
1212
1213
|
}
|
|
1213
1214
|
.e-rte-dropdown-popup ul .e-item.e-courier-new {
|
|
1214
|
-
font-family: Courier New, Courier, monospace;
|
|
1215
|
+
font-family: "Courier New", "Courier", monospace;
|
|
1215
1216
|
}
|
|
1216
1217
|
.e-rte-dropdown-popup ul .e-item.e-georgia {
|
|
1217
|
-
font-family: Georgia, "Times New Roman", Times, serif;
|
|
1218
|
+
font-family: "Georgia", "Times New Roman", "Times", serif;
|
|
1218
1219
|
}
|
|
1219
1220
|
.e-rte-dropdown-popup ul .e-item.e-helvetica-neue {
|
|
1220
|
-
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
1221
|
+
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
|
|
1221
1222
|
}
|
|
1222
1223
|
.e-rte-dropdown-popup ul .e-item.e-impact {
|
|
1223
|
-
font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
|
|
1224
|
+
font-family: "Impact", "Haettenschweiler", "Arial Narrow Bold", sans-serif;
|
|
1224
1225
|
}
|
|
1225
1226
|
.e-rte-dropdown-popup ul .e-item.e-lucida-console {
|
|
1226
|
-
font-family: Lucida Console, Monaco, monospace;
|
|
1227
|
+
font-family: "Lucida Console", "Monaco", monospace;
|
|
1227
1228
|
}
|
|
1228
1229
|
.e-rte-dropdown-popup ul .e-item.e-tahoma {
|
|
1229
|
-
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
|
1230
|
+
font-family: "Segoe UI", "Tahoma", "Geneva", "Verdana", sans-serif;
|
|
1230
1231
|
}
|
|
1231
1232
|
.e-rte-dropdown-popup ul .e-item.e-times-new-roman {
|
|
1232
|
-
font-family: "Times New Roman", Times, serif;
|
|
1233
|
+
font-family: "Times New Roman", "Times", serif;
|
|
1233
1234
|
}
|
|
1234
1235
|
.e-rte-dropdown-popup ul .e-item.e-trebuchet-ms {
|
|
1235
|
-
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
|
|
1236
|
+
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", "Arial", sans-serif;
|
|
1236
1237
|
}
|
|
1237
1238
|
.e-rte-dropdown-popup ul .e-item.e-verdana {
|
|
1238
|
-
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
|
1239
|
+
font-family: "Verdana", "Geneva", "Tahoma", sans-serif;
|
|
1239
1240
|
}
|
|
1240
1241
|
.e-rte-dropdown-popup ul .e-item.e-roboto {
|
|
1241
1242
|
font-family: "Roboto", "Segoe UI", "GeezaPro", "DejaVu Serif", sans-serif;
|