@syncfusion/ej2-angular-richtexteditor 20.2.40-ngcc → 20.2.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/public_api.mjs +3 -0
- package/esm2020/src/index.mjs +5 -0
- package/esm2020/src/rich-text-editor/richtexteditor-all.module.mjs +59 -0
- package/esm2020/src/rich-text-editor/richtexteditor.component.mjs +168 -0
- package/esm2020/src/rich-text-editor/richtexteditor.module.mjs +25 -0
- package/esm2020/syncfusion-ej2-angular-richtexteditor.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-richtexteditor.mjs +252 -0
- package/fesm2015/syncfusion-ej2-angular-richtexteditor.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-richtexteditor.mjs +252 -0
- package/fesm2020/syncfusion-ej2-angular-richtexteditor.mjs.map +1 -0
- package/package.json +27 -13
- package/schematics/utils/lib-details.ts +2 -2
- package/src/rich-text-editor/richtexteditor-all.module.d.ts +6 -0
- package/src/rich-text-editor/richtexteditor.component.d.ts +3 -0
- package/src/rich-text-editor/richtexteditor.module.d.ts +6 -0
- package/styles/_all.scss +1 -0
- package/styles/bootstrap-dark.css +35 -34
- package/styles/bootstrap.css +35 -34
- package/styles/bootstrap4.css +35 -34
- package/styles/bootstrap5-dark.css +35 -34
- package/styles/bootstrap5.css +35 -34
- package/styles/fabric-dark.css +35 -34
- package/styles/fabric.css +35 -34
- package/styles/fluent-dark.css +35 -34
- package/styles/fluent.css +35 -34
- package/styles/highcontrast-light.css +35 -34
- package/styles/highcontrast.css +35 -34
- package/styles/material-dark.css +35 -34
- package/styles/material.css +35 -34
- package/styles/rich-text-editor/_all.scss +2 -0
- package/styles/rich-text-editor/_bootstrap-dark-definition.scss +208 -0
- package/styles/rich-text-editor/_bootstrap-definition.scss +263 -0
- package/styles/rich-text-editor/_bootstrap4-definition.scss +390 -0
- package/styles/rich-text-editor/_bootstrap5-dark-definition.scss +1 -0
- package/styles/rich-text-editor/_bootstrap5-definition.scss +193 -0
- package/styles/rich-text-editor/_fabric-dark-definition.scss +189 -0
- package/styles/rich-text-editor/_fabric-definition.scss +187 -0
- package/styles/rich-text-editor/_fluent-dark-definition.scss +1 -0
- package/styles/rich-text-editor/_fluent-definition.scss +196 -0
- package/styles/rich-text-editor/_fusionnew-definition.scss +193 -0
- package/styles/rich-text-editor/_highcontrast-definition.scss +187 -0
- package/styles/rich-text-editor/_highcontrast-light-definition.scss +187 -0
- package/styles/rich-text-editor/_layout.scss +1783 -0
- package/styles/rich-text-editor/_material-dark-definition.scss +191 -0
- package/styles/rich-text-editor/_material-definition.scss +189 -0
- package/styles/rich-text-editor/_material3-definition.scss +193 -0
- package/styles/rich-text-editor/_tailwind-dark-definition.scss +1 -0
- package/styles/rich-text-editor/_tailwind-definition.scss +191 -0
- package/styles/rich-text-editor/_theme.scss +644 -0
- package/styles/rich-text-editor/bootstrap-dark.css +35 -34
- package/styles/rich-text-editor/bootstrap-dark.scss +4 -1
- package/styles/rich-text-editor/bootstrap.css +35 -34
- package/styles/rich-text-editor/bootstrap.scss +4 -1
- package/styles/rich-text-editor/bootstrap4.css +35 -34
- package/styles/rich-text-editor/bootstrap4.scss +4 -1
- package/styles/rich-text-editor/bootstrap5-dark.css +35 -34
- package/styles/rich-text-editor/bootstrap5-dark.scss +4 -1
- package/styles/rich-text-editor/bootstrap5.css +35 -34
- package/styles/rich-text-editor/bootstrap5.scss +4 -1
- package/styles/rich-text-editor/fabric-dark.css +35 -34
- package/styles/rich-text-editor/fabric-dark.scss +4 -1
- package/styles/rich-text-editor/fabric.css +35 -34
- package/styles/rich-text-editor/fabric.scss +4 -1
- package/styles/rich-text-editor/fluent-dark.css +35 -34
- package/styles/rich-text-editor/fluent-dark.scss +4 -1
- package/styles/rich-text-editor/fluent.css +35 -34
- package/styles/rich-text-editor/fluent.scss +4 -1
- package/styles/rich-text-editor/highcontrast-light.css +35 -34
- package/styles/rich-text-editor/highcontrast-light.scss +4 -1
- package/styles/rich-text-editor/highcontrast.css +35 -34
- package/styles/rich-text-editor/highcontrast.scss +4 -1
- package/styles/rich-text-editor/icons/_bootstrap-dark.scss +305 -0
- package/styles/rich-text-editor/icons/_bootstrap.scss +305 -0
- package/styles/rich-text-editor/icons/_bootstrap4.scss +305 -0
- package/styles/rich-text-editor/icons/_bootstrap5-dark.scss +1 -0
- package/styles/rich-text-editor/icons/_bootstrap5.scss +304 -0
- package/styles/rich-text-editor/icons/_fabric-dark.scss +305 -0
- package/styles/rich-text-editor/icons/_fabric.scss +305 -0
- package/styles/rich-text-editor/icons/_fluent-dark.scss +1 -0
- package/styles/rich-text-editor/icons/_fluent.scss +304 -0
- package/styles/rich-text-editor/icons/_fusionnew.scss +304 -0
- package/styles/rich-text-editor/icons/_highcontrast-light.scss +305 -0
- package/styles/rich-text-editor/icons/_highcontrast.scss +305 -0
- package/styles/rich-text-editor/icons/_material-dark.scss +305 -0
- package/styles/rich-text-editor/icons/_material.scss +305 -0
- package/styles/rich-text-editor/icons/_material3.scss +304 -0
- package/styles/rich-text-editor/icons/_tailwind-dark.scss +1 -0
- package/styles/rich-text-editor/icons/_tailwind.scss +304 -0
- package/styles/rich-text-editor/material-dark.css +35 -34
- package/styles/rich-text-editor/material-dark.scss +4 -1
- package/styles/rich-text-editor/material.css +35 -34
- package/styles/rich-text-editor/material.scss +4 -1
- package/styles/rich-text-editor/tailwind-dark.css +35 -34
- package/styles/rich-text-editor/tailwind-dark.scss +4 -1
- package/styles/rich-text-editor/tailwind.css +35 -34
- package/styles/rich-text-editor/tailwind.scss +4 -1
- package/styles/tailwind-dark.css +35 -34
- package/styles/tailwind.css +35 -34
- package/syncfusion-ej2-angular-richtexteditor.d.ts +5 -0
- package/@syncfusion/ej2-angular-richtexteditor.es5.js +0 -303
- package/@syncfusion/ej2-angular-richtexteditor.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-richtexteditor.js +0 -284
- package/@syncfusion/ej2-angular-richtexteditor.js.map +0 -1
- package/CHANGELOG.md +0 -1085
- package/dist/ej2-angular-richtexteditor.umd.js +0 -726
- package/dist/ej2-angular-richtexteditor.umd.js.map +0 -1
- package/dist/ej2-angular-richtexteditor.umd.min.js +0 -11
- package/dist/ej2-angular-richtexteditor.umd.min.js.map +0 -1
- package/ej2-angular-richtexteditor.d.ts +0 -5
- package/ej2-angular-richtexteditor.metadata.json +0 -1
- package/postinstall/tagchange.js +0 -18
- package/schematics/collection.json +0 -40
- package/schematics/generators/richtexteditor-iframe/index.d.ts +0 -3
- package/schematics/generators/richtexteditor-iframe/index.js +0 -8
- package/schematics/generators/richtexteditor-iframe/sample-details.d.ts +0 -5
- package/schematics/generators/richtexteditor-iframe/sample-details.js +0 -7
- package/schematics/generators/richtexteditor-iframe/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -3
- package/schematics/generators/richtexteditor-iframe/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -44
- package/schematics/generators/richtexteditor-iframe/schema.d.ts +0 -3
- package/schematics/generators/richtexteditor-iframe/schema.js +0 -2
- package/schematics/generators/richtexteditor-iframe/schema.json +0 -125
- package/schematics/generators/richtexteditor-inline/index.d.ts +0 -3
- package/schematics/generators/richtexteditor-inline/index.js +0 -8
- package/schematics/generators/richtexteditor-inline/sample-details.d.ts +0 -5
- package/schematics/generators/richtexteditor-inline/sample-details.js +0 -7
- package/schematics/generators/richtexteditor-inline/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -3
- package/schematics/generators/richtexteditor-inline/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -10
- package/schematics/generators/richtexteditor-inline/schema.d.ts +0 -3
- package/schematics/generators/richtexteditor-inline/schema.js +0 -2
- package/schematics/generators/richtexteditor-inline/schema.json +0 -125
- package/schematics/generators/richtexteditor-markdown/index.d.ts +0 -3
- package/schematics/generators/richtexteditor-markdown/index.js +0 -8
- package/schematics/generators/richtexteditor-markdown/sample-details.d.ts +0 -5
- package/schematics/generators/richtexteditor-markdown/sample-details.js +0 -7
- package/schematics/generators/richtexteditor-markdown/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -3
- package/schematics/generators/richtexteditor-markdown/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -13
- package/schematics/generators/richtexteditor-markdown/schema.d.ts +0 -3
- package/schematics/generators/richtexteditor-markdown/schema.js +0 -2
- package/schematics/generators/richtexteditor-markdown/schema.json +0 -125
- package/schematics/generators/richtexteditor-overview/images/__path__/__name@dasherize__/RTEImage-Feather.png +0 -0
- package/schematics/generators/richtexteditor-overview/index.d.ts +0 -3
- package/schematics/generators/richtexteditor-overview/index.js +0 -8
- package/schematics/generators/richtexteditor-overview/sample-details.d.ts +0 -5
- package/schematics/generators/richtexteditor-overview/sample-details.js +0 -7
- package/schematics/generators/richtexteditor-overview/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -3
- package/schematics/generators/richtexteditor-overview/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -47
- package/schematics/generators/richtexteditor-overview/schema.d.ts +0 -3
- package/schematics/generators/richtexteditor-overview/schema.js +0 -2
- package/schematics/generators/richtexteditor-overview/schema.json +0 -125
- package/schematics/generators/richtexteditor-reactform/index.d.ts +0 -3
- package/schematics/generators/richtexteditor-reactform/index.js +0 -8
- package/schematics/generators/richtexteditor-reactform/sample-details.d.ts +0 -5
- package/schematics/generators/richtexteditor-reactform/sample-details.js +0 -7
- package/schematics/generators/richtexteditor-reactform/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -3
- package/schematics/generators/richtexteditor-reactform/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -20
- package/schematics/generators/richtexteditor-reactform/schema.d.ts +0 -3
- package/schematics/generators/richtexteditor-reactform/schema.js +0 -2
- package/schematics/generators/richtexteditor-reactform/schema.json +0 -125
- package/schematics/generators/richtexteditor-templatedriven/index.d.ts +0 -3
- package/schematics/generators/richtexteditor-templatedriven/index.js +0 -8
- package/schematics/generators/richtexteditor-templatedriven/sample-details.d.ts +0 -5
- package/schematics/generators/richtexteditor-templatedriven/sample-details.js +0 -7
- package/schematics/generators/richtexteditor-templatedriven/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -3
- package/schematics/generators/richtexteditor-templatedriven/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -19
- package/schematics/generators/richtexteditor-templatedriven/schema.d.ts +0 -3
- package/schematics/generators/richtexteditor-templatedriven/schema.js +0 -2
- package/schematics/generators/richtexteditor-templatedriven/schema.json +0 -125
- package/schematics/ng-add/index.d.ts +0 -3
- package/schematics/ng-add/index.js +0 -9
- package/schematics/ng-add/schema.d.ts +0 -13
- package/schematics/ng-add/schema.js +0 -2
- package/schematics/ng-add/schema.json +0 -34
- package/schematics/tsconfig.json +0 -25
- package/schematics/utils/lib-details.d.ts +0 -4
- package/schematics/utils/lib-details.js +0 -6
package/styles/material.css
CHANGED
|
@@ -409,31 +409,31 @@
|
|
|
409
409
|
}
|
|
410
410
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-edit-table,
|
|
411
411
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-edit-table {
|
|
412
|
-
max-height: 312px !important;
|
|
412
|
+
max-height: 312px !important; /* stylelint-disable-line declaration-no-important */
|
|
413
413
|
}
|
|
414
414
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-edit-table-prop-dialog,
|
|
415
415
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-edit-table-prop-dialog {
|
|
416
|
-
max-height: 385px !important;
|
|
416
|
+
max-height: 385px !important; /* stylelint-disable-line declaration-no-important */
|
|
417
417
|
}
|
|
418
418
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-link-dialog,
|
|
419
419
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-link-dialog {
|
|
420
|
-
max-height: 437px !important;
|
|
420
|
+
max-height: 437px !important; /* stylelint-disable-line declaration-no-important */
|
|
421
421
|
}
|
|
422
422
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-dialog,
|
|
423
423
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-dialog {
|
|
424
|
-
min-height: 451px !important;
|
|
424
|
+
min-height: 451px !important; /* stylelint-disable-line declaration-no-important */
|
|
425
425
|
}
|
|
426
426
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-link-dialog,
|
|
427
427
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-link-dialog {
|
|
428
|
-
max-height: 250px !important;
|
|
428
|
+
max-height: 250px !important; /* stylelint-disable-line declaration-no-important */
|
|
429
429
|
}
|
|
430
430
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-size-dialog,
|
|
431
431
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-size-dialog {
|
|
432
|
-
max-height: 312px !important;
|
|
432
|
+
max-height: 312px !important; /* stylelint-disable-line declaration-no-important */
|
|
433
433
|
}
|
|
434
434
|
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-alt-dialog,
|
|
435
435
|
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-alt-dialog {
|
|
436
|
-
min-height: 451px !important;
|
|
436
|
+
min-height: 451px !important; /* stylelint-disable-line declaration-no-important */
|
|
437
437
|
}
|
|
438
438
|
|
|
439
439
|
.e-richtexteditor {
|
|
@@ -459,13 +459,13 @@
|
|
|
459
459
|
}
|
|
460
460
|
.e-richtexteditor.e-rte-full-screen {
|
|
461
461
|
bottom: 0;
|
|
462
|
-
height: 100% !important;
|
|
462
|
+
height: 100% !important; /* stylelint-disable-line declaration-no-important */
|
|
463
463
|
left: 0;
|
|
464
464
|
overflow: auto;
|
|
465
465
|
position: fixed;
|
|
466
466
|
right: 0;
|
|
467
467
|
top: 0;
|
|
468
|
-
width: 100% !important;
|
|
468
|
+
width: 100% !important; /* stylelint-disable-line declaration-no-important */
|
|
469
469
|
z-index: 999;
|
|
470
470
|
}
|
|
471
471
|
.e-richtexteditor.e-rte-full-screen .e-resize-handle {
|
|
@@ -475,25 +475,25 @@
|
|
|
475
475
|
height: calc(100% - 42px);
|
|
476
476
|
}
|
|
477
477
|
.e-richtexteditor.e-rte-full-screen .e-rte-edit-table {
|
|
478
|
-
max-height: 250px !important;
|
|
478
|
+
max-height: 250px !important; /* stylelint-disable-line declaration-no-important */
|
|
479
479
|
}
|
|
480
480
|
.e-richtexteditor.e-rte-full-screen .e-rte-edit-table-prop-dialog {
|
|
481
|
-
max-height: 321px !important;
|
|
481
|
+
max-height: 321px !important; /* stylelint-disable-line declaration-no-important */
|
|
482
482
|
}
|
|
483
483
|
.e-richtexteditor.e-rte-full-screen .e-rte-link-dialog {
|
|
484
|
-
max-height: 365px !important;
|
|
484
|
+
max-height: 365px !important; /* stylelint-disable-line declaration-no-important */
|
|
485
485
|
}
|
|
486
486
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-dialog {
|
|
487
|
-
max-height: 403px !important;
|
|
487
|
+
max-height: 403px !important; /* stylelint-disable-line declaration-no-important */
|
|
488
488
|
}
|
|
489
489
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-link-dialog {
|
|
490
|
-
max-height: 198px !important;
|
|
490
|
+
max-height: 198px !important; /* stylelint-disable-line declaration-no-important */
|
|
491
491
|
}
|
|
492
492
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-size-dialog {
|
|
493
|
-
max-height: 260px !important;
|
|
493
|
+
max-height: 260px !important; /* stylelint-disable-line declaration-no-important */
|
|
494
494
|
}
|
|
495
495
|
.e-richtexteditor.e-rte-full-screen .e-rte-img-alt-dialog {
|
|
496
|
-
max-height: 403px !important;
|
|
496
|
+
max-height: 403px !important; /* stylelint-disable-line declaration-no-important */
|
|
497
497
|
}
|
|
498
498
|
.e-richtexteditor.e-rtl .e-rte-character-count {
|
|
499
499
|
left: 0;
|
|
@@ -695,6 +695,7 @@
|
|
|
695
695
|
}
|
|
696
696
|
.e-richtexteditor .e-rte-content,
|
|
697
697
|
.e-richtexteditor .e-source-content {
|
|
698
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
698
699
|
-webkit-overflow-scrolling: touch;
|
|
699
700
|
overflow: auto;
|
|
700
701
|
transition: 100ms ease-out;
|
|
@@ -731,39 +732,39 @@
|
|
|
731
732
|
.e-richtexteditor .e-rte-content .e-content h1,
|
|
732
733
|
.e-richtexteditor .e-source-content .e-content h1 {
|
|
733
734
|
font-size: 2.17em;
|
|
734
|
-
font-weight:
|
|
735
|
+
font-weight: normal;
|
|
735
736
|
line-height: 1;
|
|
736
737
|
margin: 10px 0;
|
|
737
738
|
}
|
|
738
739
|
.e-richtexteditor .e-rte-content .e-content h2,
|
|
739
740
|
.e-richtexteditor .e-source-content .e-content h2 {
|
|
740
741
|
font-size: 1.74em;
|
|
741
|
-
font-weight:
|
|
742
|
+
font-weight: normal;
|
|
742
743
|
margin: 10px 0;
|
|
743
744
|
}
|
|
744
745
|
.e-richtexteditor .e-rte-content .e-content h3,
|
|
745
746
|
.e-richtexteditor .e-source-content .e-content h3 {
|
|
746
747
|
font-size: 1.31em;
|
|
747
|
-
font-weight:
|
|
748
|
+
font-weight: normal;
|
|
748
749
|
margin: 10px 0;
|
|
749
750
|
}
|
|
750
751
|
.e-richtexteditor .e-rte-content .e-content h4,
|
|
751
752
|
.e-richtexteditor .e-source-content .e-content h4 {
|
|
752
753
|
font-size: 16px;
|
|
753
|
-
font-weight:
|
|
754
|
+
font-weight: normal;
|
|
754
755
|
line-height: 1.5;
|
|
755
756
|
margin: 0;
|
|
756
757
|
}
|
|
757
758
|
.e-richtexteditor .e-rte-content .e-content h5,
|
|
758
759
|
.e-richtexteditor .e-source-content .e-content h5 {
|
|
759
760
|
font-size: 0.8em;
|
|
760
|
-
font-weight:
|
|
761
|
+
font-weight: normal;
|
|
761
762
|
margin: 0;
|
|
762
763
|
}
|
|
763
764
|
.e-richtexteditor .e-rte-content .e-content h6,
|
|
764
765
|
.e-richtexteditor .e-source-content .e-content h6 {
|
|
765
766
|
font-size: 0.65em;
|
|
766
|
-
font-weight:
|
|
767
|
+
font-weight: normal;
|
|
767
768
|
margin: 0;
|
|
768
769
|
}
|
|
769
770
|
.e-richtexteditor .e-rte-content .e-content blockquote,
|
|
@@ -791,7 +792,7 @@
|
|
|
791
792
|
.e-richtexteditor .e-rte-content .e-content b,
|
|
792
793
|
.e-richtexteditor .e-source-content .e-content strong,
|
|
793
794
|
.e-richtexteditor .e-source-content .e-content b {
|
|
794
|
-
font-weight:
|
|
795
|
+
font-weight: bold;
|
|
795
796
|
}
|
|
796
797
|
.e-richtexteditor .e-rte-content .e-content a,
|
|
797
798
|
.e-richtexteditor .e-source-content .e-content a {
|
|
@@ -959,37 +960,37 @@
|
|
|
959
960
|
font-weight: bold;
|
|
960
961
|
}
|
|
961
962
|
.e-rte-dropdown-popup ul .e-item.e-segoe-ui {
|
|
962
|
-
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
|
963
|
+
font-family: "Segoe UI", "Tahoma", "Geneva", "Verdana", sans-serif;
|
|
963
964
|
}
|
|
964
965
|
.e-rte-dropdown-popup ul .e-item.e-arial {
|
|
965
|
-
font-family: Arial, Helvetica, sans-serif;
|
|
966
|
+
font-family: "Arial", "Helvetica", sans-serif;
|
|
966
967
|
}
|
|
967
968
|
.e-rte-dropdown-popup ul .e-item.e-courier-new {
|
|
968
|
-
font-family: Courier New, Courier, monospace;
|
|
969
|
+
font-family: "Courier New", "Courier", monospace;
|
|
969
970
|
}
|
|
970
971
|
.e-rte-dropdown-popup ul .e-item.e-georgia {
|
|
971
|
-
font-family: Georgia, "Times New Roman", Times, serif;
|
|
972
|
+
font-family: "Georgia", "Times New Roman", "Times", serif;
|
|
972
973
|
}
|
|
973
974
|
.e-rte-dropdown-popup ul .e-item.e-helvetica-neue {
|
|
974
|
-
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
975
|
+
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
|
|
975
976
|
}
|
|
976
977
|
.e-rte-dropdown-popup ul .e-item.e-impact {
|
|
977
|
-
font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
|
|
978
|
+
font-family: "Impact", "Haettenschweiler", "Arial Narrow Bold", sans-serif;
|
|
978
979
|
}
|
|
979
980
|
.e-rte-dropdown-popup ul .e-item.e-lucida-console {
|
|
980
|
-
font-family: Lucida Console, Monaco, monospace;
|
|
981
|
+
font-family: "Lucida Console", "Monaco", monospace;
|
|
981
982
|
}
|
|
982
983
|
.e-rte-dropdown-popup ul .e-item.e-tahoma {
|
|
983
|
-
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
|
984
|
+
font-family: "Segoe UI", "Tahoma", "Geneva", "Verdana", sans-serif;
|
|
984
985
|
}
|
|
985
986
|
.e-rte-dropdown-popup ul .e-item.e-times-new-roman {
|
|
986
|
-
font-family: "Times New Roman", Times, serif;
|
|
987
|
+
font-family: "Times New Roman", "Times", serif;
|
|
987
988
|
}
|
|
988
989
|
.e-rte-dropdown-popup ul .e-item.e-trebuchet-ms {
|
|
989
|
-
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
|
|
990
|
+
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", "Arial", sans-serif;
|
|
990
991
|
}
|
|
991
992
|
.e-rte-dropdown-popup ul .e-item.e-verdana {
|
|
992
|
-
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
|
993
|
+
font-family: "Verdana", "Geneva", "Tahoma", sans-serif;
|
|
993
994
|
}
|
|
994
995
|
.e-rte-dropdown-popup ul .e-item.e-roboto {
|
|
995
996
|
font-family: "Roboto", "Segoe UI", "GeezaPro", "DejaVu Serif", sans-serif;
|
|
@@ -0,0 +1,208 @@
|
|
|
1
|
+
//default
|
|
2
|
+
$rte-border-size: 1px !default;
|
|
3
|
+
$rte-2px-border-size: 2px !default;
|
|
4
|
+
$rte-border-type: solid !default;
|
|
5
|
+
|
|
6
|
+
$rte-list-btn-flex: column !default;
|
|
7
|
+
$rte-list-btn-line-height: 1 !default;
|
|
8
|
+
$rte-split-btn-line-height: 39px !default;
|
|
9
|
+
$rte-big-split-btn-line-height: 38px !default;
|
|
10
|
+
$skin-name: 'bootstrap' !default;
|
|
11
|
+
$rte-border-color: $grey-99 !default;
|
|
12
|
+
$rte-full-screen-bg: $grey-white !default;
|
|
13
|
+
$rte-content-bg: $grey-base !default;
|
|
14
|
+
$rte-content-font-color: $grey-dark-font !default;
|
|
15
|
+
$rte-item-color: $grey-dark-font !default;
|
|
16
|
+
$rte-icons-color: $grey-dark-font !default;
|
|
17
|
+
|
|
18
|
+
$rte-big-quick-item-btn-width: 39px !default;
|
|
19
|
+
$rte-quick-item-btn-width: 27px !default;
|
|
20
|
+
$rte-big-quick-item-btn-height: 34px !default;
|
|
21
|
+
$rte-quick-item-btn-height: 26px !default;
|
|
22
|
+
$rte-big-quick-item-padding: 0 !default;
|
|
23
|
+
$rte-quick-item-padding: 0 !default;
|
|
24
|
+
$rte-quick-item-icon-min-width: 25px !default;
|
|
25
|
+
$rte-big-quick-item-line-height: normal !default;
|
|
26
|
+
$rte-quick-item-line-height: 20px !default;
|
|
27
|
+
$rte-quick-item-active-bg: rgba($grey-base, .12) !default;
|
|
28
|
+
$rte-quick-item-active-font-color: $grey-dark-font !default;
|
|
29
|
+
$rte-quick-item-border: $rte-border-size solid transparent !default;
|
|
30
|
+
$rte-quick-item-hover-border-color: $grey-8c !default;
|
|
31
|
+
$rte-quick-item-active-border-color: $grey-8c !default;
|
|
32
|
+
|
|
33
|
+
$rte-big-quick-drop-btn-line-height: 33px !default;
|
|
34
|
+
$rte-quick-drop-btn-line-height: 24px !default;
|
|
35
|
+
$rte-big-quick-drop-btn-margin: 4px 0 !default;
|
|
36
|
+
$rte-quick-drop-btn-margin: 4px 0 !default;
|
|
37
|
+
$rte-big-quick-drop-btn-padding: 0 !default;
|
|
38
|
+
$rte-quick-drop-btn-padding: 0 !default;
|
|
39
|
+
$rte-big-quick-drop-btn-icon-size: 16px !default;
|
|
40
|
+
$rte-quick-drop-btn-icon-size: 14px !default;
|
|
41
|
+
$rte-big-quick-drop-btn-caret-icon-size: 10px !default;
|
|
42
|
+
$rte-quick-drop-btn-caret-icon-size: 12px !default;
|
|
43
|
+
$rte-big-quick-drop-btn-caret-font-size: 11px !default;
|
|
44
|
+
$rte-quick-drop-btn-caret-font-size: 10px !default;
|
|
45
|
+
$rte-quick-drop-btn-border-color: $grey-white !default;
|
|
46
|
+
$rte-quick-drop-btn-hover-border-color: $grey-8c !default;
|
|
47
|
+
$rte-content-padding: 16px !default;
|
|
48
|
+
$rte-table-popup-padding: 10px !default;
|
|
49
|
+
|
|
50
|
+
$rte-quick-pop-border: 0 !default;
|
|
51
|
+
$rte-quick-tb-border: 1px solid $grey-99 !default;
|
|
52
|
+
$rte-quick-pop-bg: $grey !default;
|
|
53
|
+
$rte-quick-vr-line-color: rgba($grey-base, .05) !default;
|
|
54
|
+
$rte-quick-pop-shadow: 0 2px 6px rgba($grey-base, .26) !default;
|
|
55
|
+
$rte-quick-pop-item-focus-bg: rgba($grey-base, .12) !default;
|
|
56
|
+
$rte-quick-tb-btn-hover: rgba($grey-base, .12) !default;
|
|
57
|
+
$rte-mob-drop-down-pop-shadow: rgba($grey-base, .12) !default;
|
|
58
|
+
|
|
59
|
+
$rte-big-tb-items-margin-left: 3px !default;
|
|
60
|
+
$rte-tb-items-margin-left: 6px !default;
|
|
61
|
+
$rte-big-tb-items-padding-left: 3px !default;
|
|
62
|
+
$rte-tb-items-padding-left: 6px !default;
|
|
63
|
+
$rte-big-active-tb-item-btn-padding: 0 6px !default;
|
|
64
|
+
$rte-active-tb-item-btn-padding: 0 1.5px !default;
|
|
65
|
+
$rte-tb-item-active-bg: rgba($grey-base, .12) !default;
|
|
66
|
+
$rte-tb-active-font-color: $grey-dark-font !default;
|
|
67
|
+
$rte-tb-item-active-border: $rte-border-size $rte-border-type $grey-8c !default;
|
|
68
|
+
$rte-expand-tb-border-bottom: $rte-border-size $rte-border-type $grey-99 !default;
|
|
69
|
+
$rte-color-picker-active-bg: inherit !default;
|
|
70
|
+
$rte-drop-btn-active-bg: $grey-8c !default;
|
|
71
|
+
$rte-drop-btn-active-color: $grey-dark-font !default;
|
|
72
|
+
$rte-drop-btn-active-border-color: $grey-8c !default;
|
|
73
|
+
$rte-split-btn-active-hover-font-color: $grey-dark-font !default;
|
|
74
|
+
$font-weight: 500 !default;
|
|
75
|
+
$rte-table-popup-bdr-radius: 0 !default;
|
|
76
|
+
|
|
77
|
+
$rte-split-btn-color: $grey-dark-font !default;
|
|
78
|
+
$rte-split-btn-active-color: $grey-dark-font !default;
|
|
79
|
+
$rte-split-btn-hover-bg: none !default;
|
|
80
|
+
$rte-split-btn-active-bg: none !default;
|
|
81
|
+
$rte-split-btn-span-hover-bg: $grey-dark !default;
|
|
82
|
+
$rte-split-btn-span-focus-bg: $grey-dark !default;
|
|
83
|
+
$rte-split-btn-span-active-bg: $grey-dark !default;
|
|
84
|
+
$rte-split-btn-bar-bg: $grey-ad !default;
|
|
85
|
+
$rte-split-btn-active-bar-bg: $grey-ad !default;
|
|
86
|
+
$rte-split-btn-bar-size: 1px !default;
|
|
87
|
+
$rte-split-btn-active-border: 1px solid $grey-ad !default;
|
|
88
|
+
$rte-split-btn-active-color-icon-line-height: 30px !default;
|
|
89
|
+
$rte-big-split-btn-active-color-icon-line-height: 34px !default;
|
|
90
|
+
|
|
91
|
+
$rte-link-valid-color: #f00 !default;
|
|
92
|
+
$rte-img-popup-color: #000 !default;
|
|
93
|
+
$rte-img-border-color: #ccc !default;
|
|
94
|
+
$rte-img-popup-border: 1px solid $rte-img-border-color !default;
|
|
95
|
+
$rte-img-popup-box-shadow: 0 2px 3px 1px rgba($rte-img-popup-color, .21) !default;
|
|
96
|
+
$rte-upload-drag-border-clr: $grey-99 !default;
|
|
97
|
+
$rte-img-header-clr: $grey-light-font !default;
|
|
98
|
+
$rte-drop-text-clr: $grey-ad !default;
|
|
99
|
+
$rte-default-character-count-color: #f0f0f0 !default;
|
|
100
|
+
$rte-warning-character-count-color: #ffb74d !default;
|
|
101
|
+
$rte-error-character-count-color: #c62828 !default;
|
|
102
|
+
$rte-img-border: solid 2px $brand-primary !default;
|
|
103
|
+
$rte-font-family: $font-family !default;
|
|
104
|
+
$rte-content-color: $rte-content-font-color !default;
|
|
105
|
+
$rte-content-blockquote-border-left-color: solid 2px $rte-content-font-color !default;
|
|
106
|
+
$rte-dropdown-selection-bgcolor: $brand-primary !default;
|
|
107
|
+
$rte-format-btn-min-width: 75px !default;
|
|
108
|
+
$rte-font-name-btn-min-width: 67px !default;
|
|
109
|
+
$rte-font-size-btn-min-width: 36px !default;
|
|
110
|
+
$rte-drop-btn-padding-left: 9px !default;
|
|
111
|
+
$rte-drop-btn-padding-right: 3.5px !default;
|
|
112
|
+
$rte-drop-btn-action-padding-left: 8px !default;
|
|
113
|
+
$rte-drop-btn-action-padding-right: 2.5px !default;
|
|
114
|
+
$rte-big-drop-btn-padding-left: 12px !default;
|
|
115
|
+
$rte-big-drop-btn-padding-right: 7px !default;
|
|
116
|
+
$rte-big-drop-btn-action-padding-left: 11px !default;
|
|
117
|
+
$rte-big-drop-btn-action-padding-right: 6px !default;
|
|
118
|
+
$rte-ext-tbar-overlay-icons-color: $grey-dark-font !default;
|
|
119
|
+
$rte-colorpicker-parent-padding: 1px !default;
|
|
120
|
+
$rte-colorpicker-parent-padding-hover: 0 !default;
|
|
121
|
+
$rte-colorpicker-parent-padding-active-hover: 1px !default;
|
|
122
|
+
$rte-overlay-color: #383838 !default;
|
|
123
|
+
$rte-font-icon-width: 30px !default;
|
|
124
|
+
$rte-font-arrow-width: 18px !default;
|
|
125
|
+
$rte-font-arrow-touch-width: 20px !default;
|
|
126
|
+
$rte-font-icon-line-height: 1 !default;
|
|
127
|
+
$rte-colorpicker-padding: 1.5px 0 !default;
|
|
128
|
+
$rte-dropdown-selection-color: $brand-primary-font !default;
|
|
129
|
+
$rte-anchor-color: #2895ff !default;
|
|
130
|
+
$rte-ext-tbar-overlay-dropdown-color: $grey-dark !default;
|
|
131
|
+
$rte-placeholder-line-height: 18px !default;
|
|
132
|
+
$rte-img-resize-back-color: $brand-primary !default;
|
|
133
|
+
$rte-img-resize-color: $brand-primary-font !default;
|
|
134
|
+
$rte-table-header-color: $grey-dark-font !default;
|
|
135
|
+
$rte-table-span-bg-color: $grey-dark !default;
|
|
136
|
+
$rte-table-span-border: 1px solid $grey-cc !default;
|
|
137
|
+
$rte-table-span-active-bg-color: rgba($brand-primary, .2) !default;
|
|
138
|
+
$rte-table-span-active-border-color: lighten($brand-primary, 0%) !default;
|
|
139
|
+
$rte-table-select-border-color: #0478d7 !default;
|
|
140
|
+
$rte-table-popup-bg: $grey-dark !default;
|
|
141
|
+
$rte-table-popup-color: rgb(255, 0, 0) !default;
|
|
142
|
+
$rte-table-popup-box: 0 3px 8px 0 rgba($grey-base, .26) !default;
|
|
143
|
+
$rte-table-border-color: $grey-e6 !default;
|
|
144
|
+
$rte-table-alternate-color: #222 !default;
|
|
145
|
+
$rte-table-header-bg: #303030 !default;
|
|
146
|
+
|
|
147
|
+
$rte-insert-dialog-label-padding-top: 20px !default;
|
|
148
|
+
$rte-insert-dialog-label-padding-bottom: 20px !default;
|
|
149
|
+
$rte-big-quick-tbar-item-min-height: 34px !default;
|
|
150
|
+
$rte-big-quick-tbar-item-min-width: 39px !default;
|
|
151
|
+
$rte-content-font-size: 14px !default;
|
|
152
|
+
$rte-toolbar-icon-size: 16px !default;
|
|
153
|
+
$rte-toolbar-big-icon-size: 18px !default;
|
|
154
|
+
|
|
155
|
+
$rte-dropdown-caret-icon-size: 12px !default;
|
|
156
|
+
$rte-big-dropdown-caret-icon-size: 12px !default;
|
|
157
|
+
|
|
158
|
+
$rte-big-inline-tmp-min-width: 56px;
|
|
159
|
+
$rte-inline-tmp-min-width: 61px;
|
|
160
|
+
$rte-big-inline-tmp-size-min-width: 64px;
|
|
161
|
+
$rte-inline-tmp-size-min-width: 69px;
|
|
162
|
+
$rte-big-inline-tmp-color-min-width: 54px;
|
|
163
|
+
$rte-inline-tmp-color-min-width: 57px;
|
|
164
|
+
|
|
165
|
+
$rte-resize-handler-width: 15px;
|
|
166
|
+
$rte-resize-handler-height: 15px;
|
|
167
|
+
$rte-resize-handler-position: 0;
|
|
168
|
+
|
|
169
|
+
$rte-big-color-list-span-common-padding-left-right: 0;
|
|
170
|
+
$rte-default-character-count-opacity: .54;
|
|
171
|
+
$rte-placeholder-padding: 16px !default;
|
|
172
|
+
|
|
173
|
+
$rte-img-dlg-max-height: 426px !default;
|
|
174
|
+
$rte-img-alt-dlg-max-height: 426px !default;
|
|
175
|
+
$rte-img-link-dlg-max-height: 223px !default;
|
|
176
|
+
$rte-img-size-dlg-max-height: 284px !default;
|
|
177
|
+
$rte-link-dlg-max-height: 394px !default;
|
|
178
|
+
$rte-file-browser-dlg-max-height: 557px !default;
|
|
179
|
+
$rte-table-dlg-max-height: 287px !default;
|
|
180
|
+
$rte-edit-table-dlg-max-height: 365px !default;
|
|
181
|
+
|
|
182
|
+
$rte-big-img-dlg-max-height: 457px !default;
|
|
183
|
+
$rte-big-img-alt-dlg-max-height: 457px !default;
|
|
184
|
+
$rte-big-img-link-dlg-max-height: 256px !default;
|
|
185
|
+
$rte-big-img-size-dlg-max-height: 327px !default;
|
|
186
|
+
$rte-big-link-dlg-max-height: 427px !default;
|
|
187
|
+
$rte-big-file-browser-dlg-max-height: 557px !default;
|
|
188
|
+
$rte-big-table-dlg-max-height: 330px !default;
|
|
189
|
+
$rte-big-edit-table-dlg-max-height: 414px !default;
|
|
190
|
+
|
|
191
|
+
//enddefault
|
|
192
|
+
|
|
193
|
+
@include export-module('richtexteditor-bootstrap') {
|
|
194
|
+
.e-rte-toolbar,
|
|
195
|
+
.e-rte-toolbar.e-extended-toolbar {
|
|
196
|
+
.e-toolbar-popup {
|
|
197
|
+
.e-rte-backgroundcolor-dropdown,
|
|
198
|
+
.e-rte-fontcolor-dropdown,
|
|
199
|
+
.e-rte-numberformatlist-dropdown,
|
|
200
|
+
.e-rte-bulletformatlist-dropdown {
|
|
201
|
+
|
|
202
|
+
&.e-active {
|
|
203
|
+
border-radius: 4px;
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
}
|
|
@@ -0,0 +1,263 @@
|
|
|
1
|
+
$rte-border-size: 1px !default;
|
|
2
|
+
$rte-2px-border-size: 2px !default;
|
|
3
|
+
$rte-border-type: solid !default;
|
|
4
|
+
|
|
5
|
+
$rte-list-btn-flex: column !default;
|
|
6
|
+
$rte-list-btn-line-height: 1 !default;
|
|
7
|
+
$rte-split-btn-line-height: 39px !default;
|
|
8
|
+
$rte-big-split-btn-line-height: 38px !default;
|
|
9
|
+
$skin-name: 'bootstrap' !default;
|
|
10
|
+
$rte-border-color: $grey-dd !default;
|
|
11
|
+
$rte-full-screen-bg: $grey-white !default;
|
|
12
|
+
$rte-content-bg: $grey-white !default;
|
|
13
|
+
$rte-content-font-color: #333 !default;
|
|
14
|
+
$rte-item-color: $base-font !default;
|
|
15
|
+
$rte-icons-color: $base-font !default;
|
|
16
|
+
|
|
17
|
+
$rte-big-quick-item-btn-width: 39px !default;
|
|
18
|
+
$rte-quick-item-btn-width: 27px !default;
|
|
19
|
+
$rte-big-quick-item-btn-height: 34px !default;
|
|
20
|
+
$rte-quick-item-btn-height: 26px !default;
|
|
21
|
+
$rte-big-quick-item-padding: 0 !default;
|
|
22
|
+
$rte-quick-item-padding: 0 !default;
|
|
23
|
+
$rte-quick-item-icon-min-width: 25px !default;
|
|
24
|
+
$rte-big-quick-item-line-height: normal !default;
|
|
25
|
+
$rte-quick-item-line-height: 20px !default;
|
|
26
|
+
$rte-quick-item-active-bg: rgba($grey-base, .12) !default;
|
|
27
|
+
$rte-quick-item-active-font-color: $base-font !default;
|
|
28
|
+
$rte-quick-item-border: $rte-border-size solid transparent !default;
|
|
29
|
+
$rte-quick-item-hover-border-color: $grey-8c !default;
|
|
30
|
+
$rte-quick-item-active-border-color: $grey-8c !default;
|
|
31
|
+
$rte-content-padding: 16px !default;
|
|
32
|
+
$rte-table-popup-padding: 10px !default;
|
|
33
|
+
|
|
34
|
+
$rte-big-quick-drop-btn-line-height: 33px !default;
|
|
35
|
+
$rte-quick-drop-btn-line-height: 24px !default;
|
|
36
|
+
$rte-big-quick-drop-btn-margin: 4px 0 !default;
|
|
37
|
+
$rte-quick-drop-btn-margin: 4px 0 !default;
|
|
38
|
+
$rte-big-quick-drop-btn-padding: 0 !default;
|
|
39
|
+
$rte-quick-drop-btn-padding: 0 !default;
|
|
40
|
+
$rte-big-quick-drop-btn-icon-size: 16px !default;
|
|
41
|
+
$rte-quick-drop-btn-icon-size: 14px !default;
|
|
42
|
+
$rte-big-quick-drop-btn-caret-icon-size: 10px !default;
|
|
43
|
+
$rte-quick-drop-btn-caret-icon-size: 12px !default;
|
|
44
|
+
$rte-big-quick-drop-btn-caret-font-size: 11px !default;
|
|
45
|
+
$rte-quick-drop-btn-caret-font-size: 10px !default;
|
|
46
|
+
$rte-quick-drop-btn-border-color: $grey-white !default;
|
|
47
|
+
$rte-quick-drop-btn-hover-border-color: $grey-8c !default;
|
|
48
|
+
$font-weight: 500 !default;
|
|
49
|
+
$rte-quick-pop-border: 0 !default;
|
|
50
|
+
$rte-quick-tb-border: 0 !default;
|
|
51
|
+
$rte-quick-pop-bg: $grey-white !default;
|
|
52
|
+
$rte-quick-vr-line-color: rgba($grey-base, .05) !default;
|
|
53
|
+
$rte-quick-pop-shadow: 0 2px 6px rgba($grey-base, .26) !default;
|
|
54
|
+
$rte-quick-pop-item-focus-bg: rgba($grey-base, .12) !default;
|
|
55
|
+
$rte-quick-tb-btn-hover: rgba($grey-base, .12) !default;
|
|
56
|
+
$rte-mob-drop-down-pop-shadow: rgba($grey-base, .12) !default;
|
|
57
|
+
$rte-table-popup-bdr-radius: 0 !default;
|
|
58
|
+
|
|
59
|
+
$rte-big-tb-items-margin-left: 3px !default;
|
|
60
|
+
$rte-tb-items-margin-left: 6px !default;
|
|
61
|
+
$rte-big-tb-items-padding-left: 3px !default;
|
|
62
|
+
$rte-tb-items-padding-left: 6px !default;
|
|
63
|
+
$rte-big-active-tb-item-btn-padding: 0 6px !default;
|
|
64
|
+
$rte-active-tb-item-btn-padding: 0 1.5px !default;
|
|
65
|
+
$rte-tb-item-active-bg: rgba($grey-base, .12) !default;
|
|
66
|
+
$rte-tb-active-font-color: $base-font !default;
|
|
67
|
+
$rte-tb-item-active-border: $rte-border-size $rte-border-type $grey-8c !default;
|
|
68
|
+
$rte-expand-tb-border-bottom: $rte-border-size $rte-border-type rgb(250, 250, 250) !default;
|
|
69
|
+
$rte-color-picker-active-bg: inherit !default;
|
|
70
|
+
$rte-drop-btn-active-bg: $grey-e6 !default;
|
|
71
|
+
$rte-drop-btn-active-color: $base-font !default;
|
|
72
|
+
$rte-drop-btn-active-border-color: $grey-8c !default;
|
|
73
|
+
$rte-split-btn-active-hover-font-color: $base-font !default;
|
|
74
|
+
|
|
75
|
+
$rte-split-btn-color: $base-font !default;
|
|
76
|
+
$rte-split-btn-active-color: $base-font !default;
|
|
77
|
+
$rte-split-btn-hover-bg: inherit !default;
|
|
78
|
+
$rte-split-btn-active-bg: $grey-e6 !default;
|
|
79
|
+
$rte-split-btn-span-hover-bg: $grey-e6 !default;
|
|
80
|
+
$rte-split-btn-span-focus-bg: $grey-e6 !default;
|
|
81
|
+
$rte-split-btn-span-active-bg: $grey-e6 !default;
|
|
82
|
+
$rte-split-btn-bar-bg: $grey-ad !default;
|
|
83
|
+
$rte-split-btn-active-bar-bg: $grey-ad !default;
|
|
84
|
+
$rte-split-btn-bar-size: 1px !default;
|
|
85
|
+
$rte-split-btn-active-border: 1px solid $grey-ad !default;
|
|
86
|
+
$rte-split-btn-active-color-icon-line-height: 30px !default;
|
|
87
|
+
$rte-big-split-btn-active-color-icon-line-height: 34px !default;
|
|
88
|
+
|
|
89
|
+
$rte-link-valid-color: #f00 !default;
|
|
90
|
+
$rte-img-popup-color: #000 !default;
|
|
91
|
+
$rte-img-border-color: #ccc !default;
|
|
92
|
+
$rte-img-popup-border: 1px solid $rte-img-border-color !default;
|
|
93
|
+
$rte-img-popup-box-shadow: 0 2px 3px 1px rgba($rte-img-popup-color, .21) !default;
|
|
94
|
+
$rte-upload-drag-border-clr: $grey-d4 !default;
|
|
95
|
+
$rte-img-header-clr: $grey-light-font !default;
|
|
96
|
+
$rte-drop-text-clr: $grey-ad !default;
|
|
97
|
+
$rte-default-character-count-color: #000 !default;
|
|
98
|
+
$rte-warning-character-count-color: #ffb74d !default;
|
|
99
|
+
$rte-error-character-count-color: #c62828 !default;
|
|
100
|
+
$rte-img-border: solid 2px $brand-primary !default;
|
|
101
|
+
$rte-font-family: $font-family !default;
|
|
102
|
+
$rte-content-color: $rte-content-font-color !default;
|
|
103
|
+
$rte-content-blockquote-border-left-color: solid 2px $rte-content-font-color !default;
|
|
104
|
+
$rte-dropdown-selection-bgcolor: $grey-e6 !default;
|
|
105
|
+
$rte-format-btn-min-width: 75px !default;
|
|
106
|
+
$rte-font-name-btn-min-width: 67px !default;
|
|
107
|
+
$rte-font-size-btn-min-width: 36px !default;
|
|
108
|
+
$rte-drop-btn-padding-left: 9px !default;
|
|
109
|
+
$rte-drop-btn-padding-right: 3.5px !default;
|
|
110
|
+
$rte-drop-btn-action-padding-left: 8px !default;
|
|
111
|
+
$rte-drop-btn-action-padding-right: 2.5px !default;
|
|
112
|
+
$rte-big-drop-btn-padding-left: 12px !default;
|
|
113
|
+
$rte-big-drop-btn-padding-right: 7px !default;
|
|
114
|
+
$rte-big-drop-btn-action-padding-left: 11px !default;
|
|
115
|
+
$rte-big-drop-btn-action-padding-right: 6px !default;
|
|
116
|
+
$rte-ext-tbar-overlay-icons-color: $base-font !default;
|
|
117
|
+
$rte-colorpicker-parent-padding: 1px !default;
|
|
118
|
+
$rte-colorpicker-parent-padding-hover: 0 !default;
|
|
119
|
+
$rte-colorpicker-parent-padding-active-hover: 1px !default;
|
|
120
|
+
$rte-overlay-color: #383838 !default;
|
|
121
|
+
$rte-font-icon-width: 30px !default;
|
|
122
|
+
$rte-font-arrow-width: 18px !default;
|
|
123
|
+
$rte-font-arrow-touch-width: 20px !default;
|
|
124
|
+
$rte-font-icon-line-height: 1 !default;
|
|
125
|
+
$rte-colorpicker-padding: 1.5px 0 !default;
|
|
126
|
+
$rte-dropdown-selection-color: $grey-dark !default;
|
|
127
|
+
$rte-anchor-color: #2e2ef1 !default;
|
|
128
|
+
$rte-ext-tbar-overlay-dropdown-color: $grey-dark !default;
|
|
129
|
+
$rte-placeholder-line-height: 18px !default;
|
|
130
|
+
$rte-img-resize-back-color: #4a90e2 !default;
|
|
131
|
+
$rte-img-resize-color: #fff !default;
|
|
132
|
+
$rte-table-header-color: rgba($grey-light-font, .87) !default;
|
|
133
|
+
$rte-table-span-bg-color: $grey-white !default;
|
|
134
|
+
$rte-table-span-border: 1px solid $grey-cc !default;
|
|
135
|
+
$rte-table-span-active-bg-color: rgba($brand-primary, .2) !default;
|
|
136
|
+
$rte-table-span-active-border-color: $grey-cc !default;
|
|
137
|
+
$rte-table-select-border-color: #0478d7 !default;
|
|
138
|
+
$rte-table-popup-bg: $brand-primary-font !default;
|
|
139
|
+
$rte-table-popup-color: $grey-base !default;
|
|
140
|
+
$rte-table-popup-box: 0 3px 8px 0 rgba($grey-base, .26) !default;
|
|
141
|
+
$rte-table-border-color: #bdbdbd !default;
|
|
142
|
+
$rte-table-alternate-color: #f5f5f5 !default;
|
|
143
|
+
$rte-table-header-bg: #e0e0e0 !default;
|
|
144
|
+
$rte-dropdown-active-border: 1px solid #8c8c8c !default;
|
|
145
|
+
$rte-dropdown-active-bg: #e6e6e6 !default;
|
|
146
|
+
|
|
147
|
+
$rte-insert-dialog-label-padding-top: 20px !default;
|
|
148
|
+
$rte-insert-dialog-label-padding-bottom: 20px !default;
|
|
149
|
+
$rte-big-quick-tbar-item-min-height: 34px !default;
|
|
150
|
+
$rte-big-quick-tbar-item-min-width: 39px !default;
|
|
151
|
+
$rte-content-font-size: 14px !default;
|
|
152
|
+
$rte-dropdown-caret-icon-size: 12px !default;
|
|
153
|
+
$rte-big-dropdown-caret-icon-size: 12px !default;
|
|
154
|
+
$rte-toolbar-icon-size: 16px !default;
|
|
155
|
+
$rte-toolbar-big-icon-size: 18px !default;
|
|
156
|
+
|
|
157
|
+
$rte-big-inline-tmp-min-width: 56px;
|
|
158
|
+
$rte-inline-tmp-min-width: 61px;
|
|
159
|
+
$rte-big-inline-tmp-size-min-width: 64px;
|
|
160
|
+
$rte-inline-tmp-size-min-width: 69px;
|
|
161
|
+
$rte-big-inline-tmp-color-min-width: 54px;
|
|
162
|
+
$rte-inline-tmp-color-min-width: 57px;
|
|
163
|
+
|
|
164
|
+
$rte-resize-handler-width: 15px;
|
|
165
|
+
$rte-resize-handler-height: 15px;
|
|
166
|
+
$rte-resize-handler-position: 0;
|
|
167
|
+
$rte-default-character-count-opacity: .54;
|
|
168
|
+
|
|
169
|
+
$rte-big-color-list-span-common-padding-left-right: 0;
|
|
170
|
+
$rte-placeholder-padding: 16px !default;
|
|
171
|
+
|
|
172
|
+
$rte-img-dlg-max-height: 426px !default;
|
|
173
|
+
$rte-img-alt-dlg-max-height: 426px !default;
|
|
174
|
+
$rte-img-link-dlg-max-height: 223px !default;
|
|
175
|
+
$rte-img-size-dlg-max-height: 284px !default;
|
|
176
|
+
$rte-link-dlg-max-height: 394px !default;
|
|
177
|
+
$rte-file-browser-dlg-max-height: 557px !default;
|
|
178
|
+
$rte-table-dlg-max-height: 287px !default;
|
|
179
|
+
$rte-edit-table-dlg-max-height: 365px !default;
|
|
180
|
+
|
|
181
|
+
$rte-big-img-dlg-max-height: 457px !default;
|
|
182
|
+
$rte-big-img-alt-dlg-max-height: 457px !default;
|
|
183
|
+
$rte-big-img-link-dlg-max-height: 256px !default;
|
|
184
|
+
$rte-big-img-size-dlg-max-height: 327px !default;
|
|
185
|
+
$rte-big-link-dlg-max-height: 427px !default;
|
|
186
|
+
$rte-big-file-browser-dlg-max-height: 557px !default;
|
|
187
|
+
$rte-big-table-dlg-max-height: 330px !default;
|
|
188
|
+
$rte-big-edit-table-dlg-max-height: 414px !default;
|
|
189
|
+
|
|
190
|
+
@include export-module('richtexteditor-bootstrap') {
|
|
191
|
+
.e-richtexteditor {
|
|
192
|
+
& .e-rte-toolbar {
|
|
193
|
+
&.e-extended-toolbar .e-toolbar-items .e-toolbar-item {
|
|
194
|
+
& .e-rte-dropdown-btn.e-active.e-tbar-btn {
|
|
195
|
+
background: $rte-dropdown-active-bg;
|
|
196
|
+
border: $rte-dropdown-active-border;
|
|
197
|
+
padding-left: 8px;
|
|
198
|
+
padding-right: 2.5px;
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.e-bigger .e-richtexteditor {
|
|
205
|
+
& .e-rte-toolbar {
|
|
206
|
+
&.e-extended-toolbar .e-toolbar-items .e-toolbar-item {
|
|
207
|
+
& .e-tbar-btn.e-btn.e-control.e-dropdown-btn.e-rte-dropdown-btn.e-active {
|
|
208
|
+
padding-left: 11px;
|
|
209
|
+
padding-right: 6px;
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
& .e-toolbar-items .e-toolbar-item {
|
|
214
|
+
& .e-tbar-btn.e-btn.e-rte-dropdown-btn,
|
|
215
|
+
& .e-tbar-btn.e-btn.e-control.e-rte-dropdown-btn {
|
|
216
|
+
padding-bottom: 0;
|
|
217
|
+
padding-top: 0;
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.e-bigger .e-rte-toolbar .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-dropdown-btn {
|
|
224
|
+
&.e-rte-backgroundcolor-dropdown,
|
|
225
|
+
&.e-rte-fontcolor-dropdown,
|
|
226
|
+
&.e-rte-numberformatlist-dropdown,
|
|
227
|
+
&.e-rte-bulletformatlist-dropdown {
|
|
228
|
+
padding-left: 1px;
|
|
229
|
+
padding-right: 1px;
|
|
230
|
+
|
|
231
|
+
&.e-active:hover {
|
|
232
|
+
padding-left: 1px;
|
|
233
|
+
padding-right: 1px;
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
.e-rte-toolbar,
|
|
239
|
+
.e-rte-toolbar.e-extended-toolbar {
|
|
240
|
+
.e-toolbar-items,
|
|
241
|
+
.e-toolbar-popup,
|
|
242
|
+
.e-toolbar-extended {
|
|
243
|
+
.e-rte-backgroundcolor-dropdown,
|
|
244
|
+
.e-rte-fontcolor-dropdown,
|
|
245
|
+
.e-rte-numberformatlist-dropdown,
|
|
246
|
+
.e-rte-bulletformatlist-dropdown {
|
|
247
|
+
padding-bottom: 0;
|
|
248
|
+
padding-top: 0;
|
|
249
|
+
|
|
250
|
+
&.e-tbar-btn.e-btn:hover,
|
|
251
|
+
&.e-tbar-btn.e-btn.e-active,
|
|
252
|
+
&.e-tbar-btn.e-btn.e-active:hover {
|
|
253
|
+
padding-bottom: 0;
|
|
254
|
+
padding-top: 0;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
&.e-active {
|
|
258
|
+
border-radius: 4px;
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
}
|