@syncfusion/ej2-angular-richtexteditor 20.4.38-ngcc → 20.4.38
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/README.md +53 -109
- package/esm2020/public_api.mjs +3 -0
- package/esm2020/src/index.mjs +5 -0
- package/esm2020/src/rich-text-editor/richtexteditor-all.module.mjs +65 -0
- package/esm2020/src/rich-text-editor/richtexteditor.component.mjs +182 -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 +272 -0
- package/fesm2015/syncfusion-ej2-angular-richtexteditor.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-richtexteditor.mjs +272 -0
- package/fesm2020/syncfusion-ej2-angular-richtexteditor.mjs.map +1 -0
- package/package.json +36 -22
- package/schematics/utils/lib-details.d.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 +6 -13
- package/styles/bootstrap.css +6 -13
- package/styles/bootstrap4.css +6 -13
- package/styles/bootstrap5-dark.css +6 -13
- package/styles/bootstrap5.css +6 -13
- package/styles/fabric-dark.css +6 -13
- package/styles/fabric.css +6 -13
- package/styles/fluent-dark.css +6 -13
- package/styles/fluent.css +6 -13
- package/styles/highcontrast-light.css +6 -13
- package/styles/highcontrast.css +6 -13
- package/styles/material-dark.css +6 -13
- package/styles/material.css +6 -13
- package/styles/rich-text-editor/_all.scss +2 -0
- package/styles/rich-text-editor/_bootstrap-dark-definition.scss +210 -0
- package/styles/rich-text-editor/_bootstrap-definition.scss +265 -0
- package/styles/rich-text-editor/_bootstrap4-definition.scss +392 -0
- package/styles/rich-text-editor/_bootstrap5-dark-definition.scss +1 -0
- package/styles/rich-text-editor/_bootstrap5-definition.scss +195 -0
- package/styles/rich-text-editor/_fabric-dark-definition.scss +191 -0
- package/styles/rich-text-editor/_fabric-definition.scss +189 -0
- package/styles/rich-text-editor/_fluent-dark-definition.scss +1 -0
- package/styles/rich-text-editor/_fluent-definition.scss +198 -0
- package/styles/rich-text-editor/_fusionnew-definition.scss +195 -0
- package/styles/rich-text-editor/_highcontrast-definition.scss +189 -0
- package/styles/rich-text-editor/_highcontrast-light-definition.scss +189 -0
- package/styles/rich-text-editor/_layout.scss +1833 -0
- package/styles/rich-text-editor/_material-dark-definition.scss +193 -0
- package/styles/rich-text-editor/_material-definition.scss +191 -0
- package/styles/rich-text-editor/_material3-definition.scss +195 -0
- package/styles/rich-text-editor/_tailwind-dark-definition.scss +1 -0
- package/styles/rich-text-editor/_tailwind-definition.scss +193 -0
- package/styles/rich-text-editor/_theme.scss +700 -0
- package/styles/rich-text-editor/bootstrap-dark.css +6 -13
- package/styles/rich-text-editor/bootstrap-dark.scss +4 -1
- package/styles/rich-text-editor/bootstrap.css +6 -13
- package/styles/rich-text-editor/bootstrap.scss +4 -1
- package/styles/rich-text-editor/bootstrap4.css +6 -13
- package/styles/rich-text-editor/bootstrap4.scss +4 -1
- package/styles/rich-text-editor/bootstrap5-dark.css +6 -13
- package/styles/rich-text-editor/bootstrap5-dark.scss +4 -1
- package/styles/rich-text-editor/bootstrap5.css +6 -13
- package/styles/rich-text-editor/bootstrap5.scss +4 -1
- package/styles/rich-text-editor/fabric-dark.css +6 -13
- package/styles/rich-text-editor/fabric-dark.scss +4 -1
- package/styles/rich-text-editor/fabric.css +6 -13
- package/styles/rich-text-editor/fabric.scss +4 -1
- package/styles/rich-text-editor/fluent-dark.css +6 -13
- package/styles/rich-text-editor/fluent-dark.scss +4 -1
- package/styles/rich-text-editor/fluent.css +6 -13
- package/styles/rich-text-editor/fluent.scss +4 -1
- package/styles/rich-text-editor/highcontrast-light.css +6 -13
- package/styles/rich-text-editor/highcontrast-light.scss +4 -1
- package/styles/rich-text-editor/highcontrast.css +6 -13
- package/styles/rich-text-editor/highcontrast.scss +4 -1
- package/styles/rich-text-editor/icons/_bootstrap-dark.scss +320 -0
- package/styles/rich-text-editor/icons/_bootstrap.scss +320 -0
- package/styles/rich-text-editor/icons/_bootstrap4.scss +320 -0
- package/styles/rich-text-editor/icons/_bootstrap5-dark.scss +1 -0
- package/styles/rich-text-editor/icons/_bootstrap5.scss +319 -0
- package/styles/rich-text-editor/icons/_fabric-dark.scss +320 -0
- package/styles/rich-text-editor/icons/_fabric.scss +320 -0
- package/styles/rich-text-editor/icons/_fluent-dark.scss +1 -0
- package/styles/rich-text-editor/icons/_fluent.scss +319 -0
- package/styles/rich-text-editor/icons/_fusionnew.scss +319 -0
- package/styles/rich-text-editor/icons/_highcontrast-light.scss +320 -0
- package/styles/rich-text-editor/icons/_highcontrast.scss +320 -0
- package/styles/rich-text-editor/icons/_material-dark.scss +320 -0
- package/styles/rich-text-editor/icons/_material.scss +320 -0
- package/styles/rich-text-editor/icons/_material3.scss +319 -0
- package/styles/rich-text-editor/icons/_tailwind-dark.scss +1 -0
- package/styles/rich-text-editor/icons/_tailwind.scss +319 -0
- package/styles/rich-text-editor/material-dark.css +6 -13
- package/styles/rich-text-editor/material-dark.scss +4 -1
- package/styles/rich-text-editor/material.css +6 -13
- package/styles/rich-text-editor/material.scss +4 -1
- package/styles/rich-text-editor/tailwind-dark.css +6 -13
- package/styles/rich-text-editor/tailwind-dark.scss +4 -1
- package/styles/rich-text-editor/tailwind.css +6 -13
- package/styles/rich-text-editor/tailwind.scss +4 -1
- package/styles/tailwind-dark.css +6 -13
- package/styles/tailwind.css +6 -13
- package/syncfusion-ej2-angular-richtexteditor.d.ts +5 -0
- package/@syncfusion/ej2-angular-richtexteditor.es5.js +0 -321
- package/@syncfusion/ej2-angular-richtexteditor.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-richtexteditor.js +0 -302
- package/@syncfusion/ej2-angular-richtexteditor.js.map +0 -1
- package/CHANGELOG.md +0 -1145
- package/dist/ej2-angular-richtexteditor.umd.js +0 -791
- 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
|
@@ -748,7 +748,7 @@
|
|
|
748
748
|
}
|
|
749
749
|
@media screen and (min-width: 992px) {
|
|
750
750
|
.e-richtexteditor .e-rte-content .e-content,
|
|
751
|
-
|
|
751
|
+
.e-richtexteditor .e-source-content .e-content {
|
|
752
752
|
font-size: 14px;
|
|
753
753
|
}
|
|
754
754
|
}
|
|
@@ -2618,15 +2618,13 @@
|
|
|
2618
2618
|
width: 300px;
|
|
2619
2619
|
}
|
|
2620
2620
|
|
|
2621
|
-
.e-dialog
|
|
2622
|
-
|
|
2623
|
-
.e-dialog.e-device.e-dlg-modal .e-aud-uploadwrap .e-droptext {
|
|
2624
|
-
margin: 0 auto;
|
|
2625
|
-
width: 250px;
|
|
2621
|
+
.e-dialog .e-vid-uploadwrap .e-droptext {
|
|
2622
|
+
height: 108px;
|
|
2626
2623
|
}
|
|
2627
2624
|
|
|
2628
|
-
.e-dialog.e-device
|
|
2629
|
-
|
|
2625
|
+
.e-dialog.e-device.e-dlg-modal .e-img-uploadwrap .e-droptext {
|
|
2626
|
+
margin: 0 auto;
|
|
2627
|
+
width: 250px;
|
|
2630
2628
|
}
|
|
2631
2629
|
|
|
2632
2630
|
.e-linkheader {
|
|
@@ -2707,11 +2705,6 @@ span.e-rte-videoboxmark {
|
|
|
2707
2705
|
color: #f0f0f0;
|
|
2708
2706
|
}
|
|
2709
2707
|
|
|
2710
|
-
.e-richtexteditor .e-rte-toolbar .e-hor-nav:hover {
|
|
2711
|
-
border: solid rgba(0, 0, 0, 0.12);
|
|
2712
|
-
border-width: 0 0 0 1px;
|
|
2713
|
-
}
|
|
2714
|
-
|
|
2715
2708
|
.e-rte-table-popup .e-span-border {
|
|
2716
2709
|
border: 1px solid #505050;
|
|
2717
2710
|
display: block;
|
|
@@ -889,7 +889,7 @@
|
|
|
889
889
|
}
|
|
890
890
|
@media screen and (min-width: 992px) {
|
|
891
891
|
.e-richtexteditor .e-rte-content .e-content,
|
|
892
|
-
|
|
892
|
+
.e-richtexteditor .e-source-content .e-content {
|
|
893
893
|
font-size: 14px;
|
|
894
894
|
}
|
|
895
895
|
}
|
|
@@ -2759,15 +2759,13 @@
|
|
|
2759
2759
|
width: 300px;
|
|
2760
2760
|
}
|
|
2761
2761
|
|
|
2762
|
-
.e-dialog
|
|
2763
|
-
|
|
2764
|
-
.e-dialog.e-device.e-dlg-modal .e-aud-uploadwrap .e-droptext {
|
|
2765
|
-
margin: 0 auto;
|
|
2766
|
-
width: 250px;
|
|
2762
|
+
.e-dialog .e-vid-uploadwrap .e-droptext {
|
|
2763
|
+
height: 108px;
|
|
2767
2764
|
}
|
|
2768
2765
|
|
|
2769
|
-
.e-dialog.e-device
|
|
2770
|
-
|
|
2766
|
+
.e-dialog.e-device.e-dlg-modal .e-img-uploadwrap .e-droptext {
|
|
2767
|
+
margin: 0 auto;
|
|
2768
|
+
width: 250px;
|
|
2771
2769
|
}
|
|
2772
2770
|
|
|
2773
2771
|
.e-linkheader {
|
|
@@ -2848,11 +2846,6 @@ span.e-rte-videoboxmark {
|
|
|
2848
2846
|
color: #000;
|
|
2849
2847
|
}
|
|
2850
2848
|
|
|
2851
|
-
.e-richtexteditor .e-rte-toolbar .e-hor-nav:hover {
|
|
2852
|
-
border: solid rgba(0, 0, 0, 0.12);
|
|
2853
|
-
border-width: 0 0 0 1px;
|
|
2854
|
-
}
|
|
2855
|
-
|
|
2856
2849
|
.e-rte-table-popup .e-span-border {
|
|
2857
2850
|
border: 1px solid #ddd;
|
|
2858
2851
|
display: block;
|
|
@@ -984,7 +984,7 @@
|
|
|
984
984
|
}
|
|
985
985
|
@media screen and (min-width: 992px) {
|
|
986
986
|
.e-richtexteditor .e-rte-content .e-content,
|
|
987
|
-
|
|
987
|
+
.e-richtexteditor .e-source-content .e-content {
|
|
988
988
|
font-size: 14px;
|
|
989
989
|
}
|
|
990
990
|
}
|
|
@@ -2846,15 +2846,13 @@
|
|
|
2846
2846
|
width: 300px;
|
|
2847
2847
|
}
|
|
2848
2848
|
|
|
2849
|
-
.e-dialog
|
|
2850
|
-
|
|
2851
|
-
.e-dialog.e-device.e-dlg-modal .e-aud-uploadwrap .e-droptext {
|
|
2852
|
-
margin: 0 auto;
|
|
2853
|
-
width: 250px;
|
|
2849
|
+
.e-dialog .e-vid-uploadwrap .e-droptext {
|
|
2850
|
+
height: 108px;
|
|
2854
2851
|
}
|
|
2855
2852
|
|
|
2856
|
-
.e-dialog.e-device
|
|
2857
|
-
|
|
2853
|
+
.e-dialog.e-device.e-dlg-modal .e-img-uploadwrap .e-droptext {
|
|
2854
|
+
margin: 0 auto;
|
|
2855
|
+
width: 250px;
|
|
2858
2856
|
}
|
|
2859
2857
|
|
|
2860
2858
|
.e-linkheader {
|
|
@@ -2935,11 +2933,6 @@ span.e-rte-videoboxmark {
|
|
|
2935
2933
|
color: #212529;
|
|
2936
2934
|
}
|
|
2937
2935
|
|
|
2938
|
-
.e-richtexteditor .e-rte-toolbar .e-hor-nav:hover {
|
|
2939
|
-
border: solid rgba(0, 0, 0, 0.12);
|
|
2940
|
-
border-width: 0 0 0 1px;
|
|
2941
|
-
}
|
|
2942
|
-
|
|
2943
2936
|
.e-rte-table-popup .e-span-border {
|
|
2944
2937
|
border: 1px solid #dee2e6;
|
|
2945
2938
|
display: block;
|
|
@@ -756,7 +756,7 @@
|
|
|
756
756
|
}
|
|
757
757
|
@media screen and (min-width: 992px) {
|
|
758
758
|
.e-richtexteditor .e-rte-content .e-content,
|
|
759
|
-
|
|
759
|
+
.e-richtexteditor .e-source-content .e-content {
|
|
760
760
|
font-size: 14px;
|
|
761
761
|
}
|
|
762
762
|
}
|
|
@@ -2711,15 +2711,13 @@
|
|
|
2711
2711
|
width: 300px;
|
|
2712
2712
|
}
|
|
2713
2713
|
|
|
2714
|
-
.e-dialog
|
|
2715
|
-
|
|
2716
|
-
.e-dialog.e-device.e-dlg-modal .e-aud-uploadwrap .e-droptext {
|
|
2717
|
-
margin: 0 auto;
|
|
2718
|
-
width: 250px;
|
|
2714
|
+
.e-dialog .e-vid-uploadwrap .e-droptext {
|
|
2715
|
+
height: 108px;
|
|
2719
2716
|
}
|
|
2720
2717
|
|
|
2721
|
-
.e-dialog.e-device
|
|
2722
|
-
|
|
2718
|
+
.e-dialog.e-device.e-dlg-modal .e-img-uploadwrap .e-droptext {
|
|
2719
|
+
margin: 0 auto;
|
|
2720
|
+
width: 250px;
|
|
2723
2721
|
}
|
|
2724
2722
|
|
|
2725
2723
|
.e-linkheader {
|
|
@@ -2800,11 +2798,6 @@ span.e-rte-videoboxmark {
|
|
|
2800
2798
|
color: #fff;
|
|
2801
2799
|
}
|
|
2802
2800
|
|
|
2803
|
-
.e-richtexteditor .e-rte-toolbar .e-hor-nav:hover {
|
|
2804
|
-
border: solid rgba(0, 0, 0, 0.12);
|
|
2805
|
-
border-width: 0 0 0 1px;
|
|
2806
|
-
}
|
|
2807
|
-
|
|
2808
2801
|
.e-rte-table-popup.e-popup.e-popup-open {
|
|
2809
2802
|
background-color: #343a40;
|
|
2810
2803
|
}
|
|
@@ -756,7 +756,7 @@
|
|
|
756
756
|
}
|
|
757
757
|
@media screen and (min-width: 992px) {
|
|
758
758
|
.e-richtexteditor .e-rte-content .e-content,
|
|
759
|
-
|
|
759
|
+
.e-richtexteditor .e-source-content .e-content {
|
|
760
760
|
font-size: 14px;
|
|
761
761
|
}
|
|
762
762
|
}
|
|
@@ -2711,15 +2711,13 @@
|
|
|
2711
2711
|
width: 300px;
|
|
2712
2712
|
}
|
|
2713
2713
|
|
|
2714
|
-
.e-dialog
|
|
2715
|
-
|
|
2716
|
-
.e-dialog.e-device.e-dlg-modal .e-aud-uploadwrap .e-droptext {
|
|
2717
|
-
margin: 0 auto;
|
|
2718
|
-
width: 250px;
|
|
2714
|
+
.e-dialog .e-vid-uploadwrap .e-droptext {
|
|
2715
|
+
height: 108px;
|
|
2719
2716
|
}
|
|
2720
2717
|
|
|
2721
|
-
.e-dialog.e-device
|
|
2722
|
-
|
|
2718
|
+
.e-dialog.e-device.e-dlg-modal .e-img-uploadwrap .e-droptext {
|
|
2719
|
+
margin: 0 auto;
|
|
2720
|
+
width: 250px;
|
|
2723
2721
|
}
|
|
2724
2722
|
|
|
2725
2723
|
.e-linkheader {
|
|
@@ -2800,11 +2798,6 @@ span.e-rte-videoboxmark {
|
|
|
2800
2798
|
color: #212529;
|
|
2801
2799
|
}
|
|
2802
2800
|
|
|
2803
|
-
.e-richtexteditor .e-rte-toolbar .e-hor-nav:hover {
|
|
2804
|
-
border: solid rgba(0, 0, 0, 0.12);
|
|
2805
|
-
border-width: 0 0 0 1px;
|
|
2806
|
-
}
|
|
2807
|
-
|
|
2808
2801
|
.e-rte-table-popup.e-popup.e-popup-open {
|
|
2809
2802
|
background-color: #fff;
|
|
2810
2803
|
}
|
|
@@ -737,7 +737,7 @@
|
|
|
737
737
|
}
|
|
738
738
|
@media screen and (min-width: 992px) {
|
|
739
739
|
.e-richtexteditor .e-rte-content .e-content,
|
|
740
|
-
|
|
740
|
+
.e-richtexteditor .e-source-content .e-content {
|
|
741
741
|
font-size: 14px;
|
|
742
742
|
}
|
|
743
743
|
}
|
|
@@ -2599,15 +2599,13 @@
|
|
|
2599
2599
|
width: 300px;
|
|
2600
2600
|
}
|
|
2601
2601
|
|
|
2602
|
-
.e-dialog
|
|
2603
|
-
|
|
2604
|
-
.e-dialog.e-device.e-dlg-modal .e-aud-uploadwrap .e-droptext {
|
|
2605
|
-
margin: 0 auto;
|
|
2606
|
-
width: 250px;
|
|
2602
|
+
.e-dialog .e-vid-uploadwrap .e-droptext {
|
|
2603
|
+
height: 108px;
|
|
2607
2604
|
}
|
|
2608
2605
|
|
|
2609
|
-
.e-dialog.e-device
|
|
2610
|
-
|
|
2606
|
+
.e-dialog.e-device.e-dlg-modal .e-img-uploadwrap .e-droptext {
|
|
2607
|
+
margin: 0 auto;
|
|
2608
|
+
width: 250px;
|
|
2611
2609
|
}
|
|
2612
2610
|
|
|
2613
2611
|
.e-linkheader {
|
|
@@ -2688,11 +2686,6 @@ span.e-rte-videoboxmark {
|
|
|
2688
2686
|
color: #dadada;
|
|
2689
2687
|
}
|
|
2690
2688
|
|
|
2691
|
-
.e-richtexteditor .e-rte-toolbar .e-hor-nav:hover {
|
|
2692
|
-
border: solid rgba(0, 0, 0, 0.12);
|
|
2693
|
-
border-width: 0 0 0 1px;
|
|
2694
|
-
}
|
|
2695
|
-
|
|
2696
2689
|
.e-rte-table-popup .e-span-border {
|
|
2697
2690
|
border: 1px solid #414040;
|
|
2698
2691
|
display: block;
|
|
@@ -737,7 +737,7 @@
|
|
|
737
737
|
}
|
|
738
738
|
@media screen and (min-width: 992px) {
|
|
739
739
|
.e-richtexteditor .e-rte-content .e-content,
|
|
740
|
-
|
|
740
|
+
.e-richtexteditor .e-source-content .e-content {
|
|
741
741
|
font-size: 14px;
|
|
742
742
|
}
|
|
743
743
|
}
|
|
@@ -2599,15 +2599,13 @@
|
|
|
2599
2599
|
width: 290px;
|
|
2600
2600
|
}
|
|
2601
2601
|
|
|
2602
|
-
.e-dialog
|
|
2603
|
-
|
|
2604
|
-
.e-dialog.e-device.e-dlg-modal .e-aud-uploadwrap .e-droptext {
|
|
2605
|
-
margin: 0 auto;
|
|
2606
|
-
width: 240px;
|
|
2602
|
+
.e-dialog .e-vid-uploadwrap .e-droptext {
|
|
2603
|
+
height: 108px;
|
|
2607
2604
|
}
|
|
2608
2605
|
|
|
2609
|
-
.e-dialog.e-device
|
|
2610
|
-
|
|
2606
|
+
.e-dialog.e-device.e-dlg-modal .e-img-uploadwrap .e-droptext {
|
|
2607
|
+
margin: 0 auto;
|
|
2608
|
+
width: 240px;
|
|
2611
2609
|
}
|
|
2612
2610
|
|
|
2613
2611
|
.e-linkheader {
|
|
@@ -2688,11 +2686,6 @@ span.e-rte-videoboxmark {
|
|
|
2688
2686
|
color: #000;
|
|
2689
2687
|
}
|
|
2690
2688
|
|
|
2691
|
-
.e-richtexteditor .e-rte-toolbar .e-hor-nav:hover {
|
|
2692
|
-
border: solid rgba(0, 0, 0, 0.12);
|
|
2693
|
-
border-width: 0 0 0 1px;
|
|
2694
|
-
}
|
|
2695
|
-
|
|
2696
2689
|
.e-rte-table-popup .e-span-border {
|
|
2697
2690
|
border: 1px solid #dadada;
|
|
2698
2691
|
display: block;
|
|
@@ -740,7 +740,7 @@
|
|
|
740
740
|
}
|
|
741
741
|
@media screen and (min-width: 992px) {
|
|
742
742
|
.e-richtexteditor .e-rte-content .e-content,
|
|
743
|
-
|
|
743
|
+
.e-richtexteditor .e-source-content .e-content {
|
|
744
744
|
font-size: 14px;
|
|
745
745
|
}
|
|
746
746
|
}
|
|
@@ -2661,15 +2661,13 @@
|
|
|
2661
2661
|
width: 292px;
|
|
2662
2662
|
}
|
|
2663
2663
|
|
|
2664
|
-
.e-dialog
|
|
2665
|
-
|
|
2666
|
-
.e-dialog.e-device.e-dlg-modal .e-aud-uploadwrap .e-droptext {
|
|
2667
|
-
margin: 0 auto;
|
|
2668
|
-
width: 242px;
|
|
2664
|
+
.e-dialog .e-vid-uploadwrap .e-droptext {
|
|
2665
|
+
height: 108px;
|
|
2669
2666
|
}
|
|
2670
2667
|
|
|
2671
|
-
.e-dialog.e-device
|
|
2672
|
-
|
|
2668
|
+
.e-dialog.e-device.e-dlg-modal .e-img-uploadwrap .e-droptext {
|
|
2669
|
+
margin: 0 auto;
|
|
2670
|
+
width: 242px;
|
|
2673
2671
|
}
|
|
2674
2672
|
|
|
2675
2673
|
.e-linkheader {
|
|
@@ -2750,11 +2748,6 @@ span.e-rte-videoboxmark {
|
|
|
2750
2748
|
color: #a19f9d;
|
|
2751
2749
|
}
|
|
2752
2750
|
|
|
2753
|
-
.e-richtexteditor .e-rte-toolbar .e-hor-nav:hover {
|
|
2754
|
-
border: solid rgba(0, 0, 0, 0.12);
|
|
2755
|
-
border-width: 0 0 0 1px;
|
|
2756
|
-
}
|
|
2757
|
-
|
|
2758
2751
|
.e-rte-table-popup .e-span-border {
|
|
2759
2752
|
border: 1px solid #292827;
|
|
2760
2753
|
display: block;
|
|
@@ -740,7 +740,7 @@
|
|
|
740
740
|
}
|
|
741
741
|
@media screen and (min-width: 992px) {
|
|
742
742
|
.e-richtexteditor .e-rte-content .e-content,
|
|
743
|
-
|
|
743
|
+
.e-richtexteditor .e-source-content .e-content {
|
|
744
744
|
font-size: 14px;
|
|
745
745
|
}
|
|
746
746
|
}
|
|
@@ -2661,15 +2661,13 @@
|
|
|
2661
2661
|
width: 292px;
|
|
2662
2662
|
}
|
|
2663
2663
|
|
|
2664
|
-
.e-dialog
|
|
2665
|
-
|
|
2666
|
-
.e-dialog.e-device.e-dlg-modal .e-aud-uploadwrap .e-droptext {
|
|
2667
|
-
margin: 0 auto;
|
|
2668
|
-
width: 242px;
|
|
2664
|
+
.e-dialog .e-vid-uploadwrap .e-droptext {
|
|
2665
|
+
height: 108px;
|
|
2669
2666
|
}
|
|
2670
2667
|
|
|
2671
|
-
.e-dialog.e-device
|
|
2672
|
-
|
|
2668
|
+
.e-dialog.e-device.e-dlg-modal .e-img-uploadwrap .e-droptext {
|
|
2669
|
+
margin: 0 auto;
|
|
2670
|
+
width: 242px;
|
|
2673
2671
|
}
|
|
2674
2672
|
|
|
2675
2673
|
.e-linkheader {
|
|
@@ -2750,11 +2748,6 @@ span.e-rte-videoboxmark {
|
|
|
2750
2748
|
color: #605e5c;
|
|
2751
2749
|
}
|
|
2752
2750
|
|
|
2753
|
-
.e-richtexteditor .e-rte-toolbar .e-hor-nav:hover {
|
|
2754
|
-
border: solid rgba(0, 0, 0, 0.12);
|
|
2755
|
-
border-width: 0 0 0 1px;
|
|
2756
|
-
}
|
|
2757
|
-
|
|
2758
2751
|
.e-rte-table-popup .e-span-border {
|
|
2759
2752
|
border: 1px solid #edebe9;
|
|
2760
2753
|
display: block;
|
|
@@ -737,7 +737,7 @@
|
|
|
737
737
|
}
|
|
738
738
|
@media screen and (min-width: 992px) {
|
|
739
739
|
.e-richtexteditor .e-rte-content .e-content,
|
|
740
|
-
|
|
740
|
+
.e-richtexteditor .e-source-content .e-content {
|
|
741
741
|
font-size: 14px;
|
|
742
742
|
}
|
|
743
743
|
}
|
|
@@ -2599,15 +2599,13 @@
|
|
|
2599
2599
|
width: 288px;
|
|
2600
2600
|
}
|
|
2601
2601
|
|
|
2602
|
-
.e-dialog
|
|
2603
|
-
|
|
2604
|
-
.e-dialog.e-device.e-dlg-modal .e-aud-uploadwrap .e-droptext {
|
|
2605
|
-
margin: 0 auto;
|
|
2606
|
-
width: 238px;
|
|
2602
|
+
.e-dialog .e-vid-uploadwrap .e-droptext {
|
|
2603
|
+
height: 108px;
|
|
2607
2604
|
}
|
|
2608
2605
|
|
|
2609
|
-
.e-dialog.e-device
|
|
2610
|
-
|
|
2606
|
+
.e-dialog.e-device.e-dlg-modal .e-img-uploadwrap .e-droptext {
|
|
2607
|
+
margin: 0 auto;
|
|
2608
|
+
width: 238px;
|
|
2611
2609
|
}
|
|
2612
2610
|
|
|
2613
2611
|
.e-linkheader {
|
|
@@ -2688,11 +2686,6 @@ span.e-rte-videoboxmark {
|
|
|
2688
2686
|
color: #000;
|
|
2689
2687
|
}
|
|
2690
2688
|
|
|
2691
|
-
.e-richtexteditor .e-rte-toolbar .e-hor-nav:hover {
|
|
2692
|
-
border: solid rgba(0, 0, 0, 0.12);
|
|
2693
|
-
border-width: 0 0 0 1px;
|
|
2694
|
-
}
|
|
2695
|
-
|
|
2696
2689
|
.e-rte-table-popup .e-span-border {
|
|
2697
2690
|
border: 1px solid #000;
|
|
2698
2691
|
display: block;
|
|
@@ -737,7 +737,7 @@
|
|
|
737
737
|
}
|
|
738
738
|
@media screen and (min-width: 992px) {
|
|
739
739
|
.e-richtexteditor .e-rte-content .e-content,
|
|
740
|
-
|
|
740
|
+
.e-richtexteditor .e-source-content .e-content {
|
|
741
741
|
font-size: 14px;
|
|
742
742
|
}
|
|
743
743
|
}
|
|
@@ -2594,15 +2594,13 @@
|
|
|
2594
2594
|
width: 288px;
|
|
2595
2595
|
}
|
|
2596
2596
|
|
|
2597
|
-
.e-dialog
|
|
2598
|
-
|
|
2599
|
-
.e-dialog.e-device.e-dlg-modal .e-aud-uploadwrap .e-droptext {
|
|
2600
|
-
margin: 0 auto;
|
|
2601
|
-
width: 238px;
|
|
2597
|
+
.e-dialog .e-vid-uploadwrap .e-droptext {
|
|
2598
|
+
height: 108px;
|
|
2602
2599
|
}
|
|
2603
2600
|
|
|
2604
|
-
.e-dialog.e-device
|
|
2605
|
-
|
|
2601
|
+
.e-dialog.e-device.e-dlg-modal .e-img-uploadwrap .e-droptext {
|
|
2602
|
+
margin: 0 auto;
|
|
2603
|
+
width: 238px;
|
|
2606
2604
|
}
|
|
2607
2605
|
|
|
2608
2606
|
.e-linkheader {
|
|
@@ -2683,11 +2681,6 @@ span.e-rte-videoboxmark {
|
|
|
2683
2681
|
color: #fff;
|
|
2684
2682
|
}
|
|
2685
2683
|
|
|
2686
|
-
.e-richtexteditor .e-rte-toolbar .e-hor-nav:hover {
|
|
2687
|
-
border: solid rgba(0, 0, 0, 0.12);
|
|
2688
|
-
border-width: 0 0 0 1px;
|
|
2689
|
-
}
|
|
2690
|
-
|
|
2691
2684
|
.e-rte-table-popup .e-span-border {
|
|
2692
2685
|
border: 1px solid #fff;
|
|
2693
2686
|
display: block;
|