@syncfusion/ej2-richtexteditor 25.1.41 → 25.1.42
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/CHANGELOG.md +28 -0
- package/dist/ej2-richtexteditor.min.js +2 -2
- package/dist/ej2-richtexteditor.umd.min.js +2 -2
- package/dist/ej2-richtexteditor.umd.min.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es2015.js +159 -72
- package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es5.js +159 -73
- package/dist/es6/ej2-richtexteditor.es5.js.map +1 -1
- package/dist/global/ej2-richtexteditor.min.js +2 -2
- package/dist/global/ej2-richtexteditor.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +19 -9
- package/src/editor-manager/plugin/inserthtml.js +8 -2
- package/src/editor-manager/plugin/lists.d.ts +1 -0
- package/src/editor-manager/plugin/lists.js +97 -51
- package/src/editor-manager/plugin/nodecutter.js +2 -2
- package/src/rich-text-editor/actions/emoji-picker.js +1 -1
- package/src/rich-text-editor/actions/enter-key.js +9 -0
- package/src/rich-text-editor/actions/html-editor.js +8 -2
- package/src/rich-text-editor/actions/paste-clean-up.js +2 -2
- package/src/rich-text-editor/base/enum.d.ts +4 -4
- package/src/rich-text-editor/base/enum.js +9 -9
- package/src/rich-text-editor/base/interface.d.ts +3 -3
- package/src/rich-text-editor/base/rich-text-editor.js +7 -0
- package/src/rich-text-editor/renderer/iframe-content-renderer.js +1 -1
- package/src/rich-text-editor/renderer/image-module.js +3 -3
- package/src/rich-text-editor/renderer/link-module.js +3 -0
- package/src/rich-text-editor/renderer/table-module.js +3 -0
- package/src/rich-text-editor/renderer/toolbar-renderer.d.ts +2 -0
- package/src/rich-text-editor/renderer/toolbar-renderer.js +7 -1
- package/styles/bootstrap-dark.css +4 -0
- package/styles/bootstrap.css +4 -0
- package/styles/bootstrap4.css +4 -0
- package/styles/bootstrap5-dark.css +4 -0
- package/styles/bootstrap5.css +4 -0
- package/styles/fabric-dark.css +4 -0
- package/styles/fabric.css +4 -0
- package/styles/fluent-dark.css +4 -0
- package/styles/fluent.css +4 -0
- package/styles/highcontrast-light.css +4 -0
- package/styles/highcontrast.css +4 -0
- package/styles/material-dark.css +4 -0
- package/styles/material.css +4 -0
- package/styles/material3-dark.css +4 -0
- package/styles/material3.css +4 -0
- package/styles/rich-text-editor/_layout.scss +4 -0
- package/styles/rich-text-editor/bootstrap-dark.css +4 -0
- package/styles/rich-text-editor/bootstrap.css +4 -0
- package/styles/rich-text-editor/bootstrap4.css +4 -0
- package/styles/rich-text-editor/bootstrap5-dark.css +4 -0
- package/styles/rich-text-editor/bootstrap5.css +4 -0
- package/styles/rich-text-editor/fabric-dark.css +4 -0
- package/styles/rich-text-editor/fabric.css +4 -0
- package/styles/rich-text-editor/fluent-dark.css +4 -0
- package/styles/rich-text-editor/fluent.css +4 -0
- package/styles/rich-text-editor/highcontrast-light.css +4 -0
- package/styles/rich-text-editor/highcontrast.css +4 -0
- package/styles/rich-text-editor/material-dark.css +4 -0
- package/styles/rich-text-editor/material.css +4 -0
- package/styles/rich-text-editor/material3-dark.css +4 -0
- package/styles/rich-text-editor/material3.css +4 -0
- package/styles/rich-text-editor/tailwind-dark.css +4 -0
- package/styles/rich-text-editor/tailwind.css +4 -0
- package/styles/tailwind-dark.css +4 -0
- package/styles/tailwind.css +4 -0
package/styles/bootstrap.css
CHANGED
|
@@ -1037,6 +1037,10 @@
|
|
|
1037
1037
|
margin-left: 0;
|
|
1038
1038
|
padding-left: 5px;
|
|
1039
1039
|
}
|
|
1040
|
+
.e-richtexteditor .e-rte-content .e-content table,
|
|
1041
|
+
.e-richtexteditor .e-source-content .e-content table {
|
|
1042
|
+
margin-bottom: 10px;
|
|
1043
|
+
}
|
|
1040
1044
|
.e-richtexteditor .e-rte-content .e-content pre,
|
|
1041
1045
|
.e-richtexteditor .e-source-content .e-content pre {
|
|
1042
1046
|
background-color: inherit;
|
package/styles/bootstrap4.css
CHANGED
|
@@ -1132,6 +1132,10 @@
|
|
|
1132
1132
|
margin-left: 0;
|
|
1133
1133
|
padding-left: 5px;
|
|
1134
1134
|
}
|
|
1135
|
+
.e-richtexteditor .e-rte-content .e-content table,
|
|
1136
|
+
.e-richtexteditor .e-source-content .e-content table {
|
|
1137
|
+
margin-bottom: 10px;
|
|
1138
|
+
}
|
|
1135
1139
|
.e-richtexteditor .e-rte-content .e-content pre,
|
|
1136
1140
|
.e-richtexteditor .e-source-content .e-content pre {
|
|
1137
1141
|
background-color: inherit;
|
|
@@ -903,6 +903,10 @@
|
|
|
903
903
|
margin-left: 0;
|
|
904
904
|
padding-left: 5px;
|
|
905
905
|
}
|
|
906
|
+
.e-richtexteditor .e-rte-content .e-content table,
|
|
907
|
+
.e-richtexteditor .e-source-content .e-content table {
|
|
908
|
+
margin-bottom: 10px;
|
|
909
|
+
}
|
|
906
910
|
.e-richtexteditor .e-rte-content .e-content pre,
|
|
907
911
|
.e-richtexteditor .e-source-content .e-content pre {
|
|
908
912
|
background-color: inherit;
|
package/styles/bootstrap5.css
CHANGED
|
@@ -903,6 +903,10 @@
|
|
|
903
903
|
margin-left: 0;
|
|
904
904
|
padding-left: 5px;
|
|
905
905
|
}
|
|
906
|
+
.e-richtexteditor .e-rte-content .e-content table,
|
|
907
|
+
.e-richtexteditor .e-source-content .e-content table {
|
|
908
|
+
margin-bottom: 10px;
|
|
909
|
+
}
|
|
906
910
|
.e-richtexteditor .e-rte-content .e-content pre,
|
|
907
911
|
.e-richtexteditor .e-source-content .e-content pre {
|
|
908
912
|
background-color: inherit;
|
package/styles/fabric-dark.css
CHANGED
|
@@ -885,6 +885,10 @@
|
|
|
885
885
|
margin-left: 0;
|
|
886
886
|
padding-left: 5px;
|
|
887
887
|
}
|
|
888
|
+
.e-richtexteditor .e-rte-content .e-content table,
|
|
889
|
+
.e-richtexteditor .e-source-content .e-content table {
|
|
890
|
+
margin-bottom: 10px;
|
|
891
|
+
}
|
|
888
892
|
.e-richtexteditor .e-rte-content .e-content pre,
|
|
889
893
|
.e-richtexteditor .e-source-content .e-content pre {
|
|
890
894
|
background-color: inherit;
|
package/styles/fabric.css
CHANGED
|
@@ -885,6 +885,10 @@
|
|
|
885
885
|
margin-left: 0;
|
|
886
886
|
padding-left: 5px;
|
|
887
887
|
}
|
|
888
|
+
.e-richtexteditor .e-rte-content .e-content table,
|
|
889
|
+
.e-richtexteditor .e-source-content .e-content table {
|
|
890
|
+
margin-bottom: 10px;
|
|
891
|
+
}
|
|
888
892
|
.e-richtexteditor .e-rte-content .e-content pre,
|
|
889
893
|
.e-richtexteditor .e-source-content .e-content pre {
|
|
890
894
|
background-color: inherit;
|
package/styles/fluent-dark.css
CHANGED
|
@@ -890,6 +890,10 @@
|
|
|
890
890
|
margin-left: 0;
|
|
891
891
|
padding-left: 5px;
|
|
892
892
|
}
|
|
893
|
+
.e-richtexteditor .e-rte-content .e-content table,
|
|
894
|
+
.e-richtexteditor .e-source-content .e-content table {
|
|
895
|
+
margin-bottom: 10px;
|
|
896
|
+
}
|
|
893
897
|
.e-richtexteditor .e-rte-content .e-content pre,
|
|
894
898
|
.e-richtexteditor .e-source-content .e-content pre {
|
|
895
899
|
background-color: inherit;
|
package/styles/fluent.css
CHANGED
|
@@ -890,6 +890,10 @@
|
|
|
890
890
|
margin-left: 0;
|
|
891
891
|
padding-left: 5px;
|
|
892
892
|
}
|
|
893
|
+
.e-richtexteditor .e-rte-content .e-content table,
|
|
894
|
+
.e-richtexteditor .e-source-content .e-content table {
|
|
895
|
+
margin-bottom: 10px;
|
|
896
|
+
}
|
|
893
897
|
.e-richtexteditor .e-rte-content .e-content pre,
|
|
894
898
|
.e-richtexteditor .e-source-content .e-content pre {
|
|
895
899
|
background-color: inherit;
|
|
@@ -885,6 +885,10 @@
|
|
|
885
885
|
margin-left: 0;
|
|
886
886
|
padding-left: 5px;
|
|
887
887
|
}
|
|
888
|
+
.e-richtexteditor .e-rte-content .e-content table,
|
|
889
|
+
.e-richtexteditor .e-source-content .e-content table {
|
|
890
|
+
margin-bottom: 10px;
|
|
891
|
+
}
|
|
888
892
|
.e-richtexteditor .e-rte-content .e-content pre,
|
|
889
893
|
.e-richtexteditor .e-source-content .e-content pre {
|
|
890
894
|
background-color: inherit;
|
package/styles/highcontrast.css
CHANGED
|
@@ -885,6 +885,10 @@
|
|
|
885
885
|
margin-left: 0;
|
|
886
886
|
padding-left: 5px;
|
|
887
887
|
}
|
|
888
|
+
.e-richtexteditor .e-rte-content .e-content table,
|
|
889
|
+
.e-richtexteditor .e-source-content .e-content table {
|
|
890
|
+
margin-bottom: 10px;
|
|
891
|
+
}
|
|
888
892
|
.e-richtexteditor .e-rte-content .e-content pre,
|
|
889
893
|
.e-richtexteditor .e-source-content .e-content pre {
|
|
890
894
|
background-color: inherit;
|
package/styles/material-dark.css
CHANGED
|
@@ -885,6 +885,10 @@
|
|
|
885
885
|
margin-left: 0;
|
|
886
886
|
padding-left: 5px;
|
|
887
887
|
}
|
|
888
|
+
.e-richtexteditor .e-rte-content .e-content table,
|
|
889
|
+
.e-richtexteditor .e-source-content .e-content table {
|
|
890
|
+
margin-bottom: 10px;
|
|
891
|
+
}
|
|
888
892
|
.e-richtexteditor .e-rte-content .e-content pre,
|
|
889
893
|
.e-richtexteditor .e-source-content .e-content pre {
|
|
890
894
|
background-color: inherit;
|
package/styles/material.css
CHANGED
|
@@ -885,6 +885,10 @@
|
|
|
885
885
|
margin-left: 0;
|
|
886
886
|
padding-left: 5px;
|
|
887
887
|
}
|
|
888
|
+
.e-richtexteditor .e-rte-content .e-content table,
|
|
889
|
+
.e-richtexteditor .e-source-content .e-content table {
|
|
890
|
+
margin-bottom: 10px;
|
|
891
|
+
}
|
|
888
892
|
.e-richtexteditor .e-rte-content .e-content pre,
|
|
889
893
|
.e-richtexteditor .e-source-content .e-content pre {
|
|
890
894
|
background-color: inherit;
|
|
@@ -940,6 +940,10 @@
|
|
|
940
940
|
margin-left: 0;
|
|
941
941
|
padding-left: 5px;
|
|
942
942
|
}
|
|
943
|
+
.e-richtexteditor .e-rte-content .e-content table,
|
|
944
|
+
.e-richtexteditor .e-source-content .e-content table {
|
|
945
|
+
margin-bottom: 10px;
|
|
946
|
+
}
|
|
943
947
|
.e-richtexteditor .e-rte-content .e-content pre,
|
|
944
948
|
.e-richtexteditor .e-source-content .e-content pre {
|
|
945
949
|
background-color: inherit;
|
package/styles/material3.css
CHANGED
|
@@ -996,6 +996,10 @@
|
|
|
996
996
|
margin-left: 0;
|
|
997
997
|
padding-left: 5px;
|
|
998
998
|
}
|
|
999
|
+
.e-richtexteditor .e-rte-content .e-content table,
|
|
1000
|
+
.e-richtexteditor .e-source-content .e-content table {
|
|
1001
|
+
margin-bottom: 10px;
|
|
1002
|
+
}
|
|
999
1003
|
.e-richtexteditor .e-rte-content .e-content pre,
|
|
1000
1004
|
.e-richtexteditor .e-source-content .e-content pre {
|
|
1001
1005
|
background-color: inherit;
|
|
@@ -896,6 +896,10 @@
|
|
|
896
896
|
margin-left: 0;
|
|
897
897
|
padding-left: 5px;
|
|
898
898
|
}
|
|
899
|
+
.e-richtexteditor .e-rte-content .e-content table,
|
|
900
|
+
.e-richtexteditor .e-source-content .e-content table {
|
|
901
|
+
margin-bottom: 10px;
|
|
902
|
+
}
|
|
899
903
|
.e-richtexteditor .e-rte-content .e-content pre,
|
|
900
904
|
.e-richtexteditor .e-source-content .e-content pre {
|
|
901
905
|
background-color: inherit;
|
|
@@ -1037,6 +1037,10 @@
|
|
|
1037
1037
|
margin-left: 0;
|
|
1038
1038
|
padding-left: 5px;
|
|
1039
1039
|
}
|
|
1040
|
+
.e-richtexteditor .e-rte-content .e-content table,
|
|
1041
|
+
.e-richtexteditor .e-source-content .e-content table {
|
|
1042
|
+
margin-bottom: 10px;
|
|
1043
|
+
}
|
|
1040
1044
|
.e-richtexteditor .e-rte-content .e-content pre,
|
|
1041
1045
|
.e-richtexteditor .e-source-content .e-content pre {
|
|
1042
1046
|
background-color: inherit;
|
|
@@ -1132,6 +1132,10 @@
|
|
|
1132
1132
|
margin-left: 0;
|
|
1133
1133
|
padding-left: 5px;
|
|
1134
1134
|
}
|
|
1135
|
+
.e-richtexteditor .e-rte-content .e-content table,
|
|
1136
|
+
.e-richtexteditor .e-source-content .e-content table {
|
|
1137
|
+
margin-bottom: 10px;
|
|
1138
|
+
}
|
|
1135
1139
|
.e-richtexteditor .e-rte-content .e-content pre,
|
|
1136
1140
|
.e-richtexteditor .e-source-content .e-content pre {
|
|
1137
1141
|
background-color: inherit;
|
|
@@ -903,6 +903,10 @@
|
|
|
903
903
|
margin-left: 0;
|
|
904
904
|
padding-left: 5px;
|
|
905
905
|
}
|
|
906
|
+
.e-richtexteditor .e-rte-content .e-content table,
|
|
907
|
+
.e-richtexteditor .e-source-content .e-content table {
|
|
908
|
+
margin-bottom: 10px;
|
|
909
|
+
}
|
|
906
910
|
.e-richtexteditor .e-rte-content .e-content pre,
|
|
907
911
|
.e-richtexteditor .e-source-content .e-content pre {
|
|
908
912
|
background-color: inherit;
|
|
@@ -903,6 +903,10 @@
|
|
|
903
903
|
margin-left: 0;
|
|
904
904
|
padding-left: 5px;
|
|
905
905
|
}
|
|
906
|
+
.e-richtexteditor .e-rte-content .e-content table,
|
|
907
|
+
.e-richtexteditor .e-source-content .e-content table {
|
|
908
|
+
margin-bottom: 10px;
|
|
909
|
+
}
|
|
906
910
|
.e-richtexteditor .e-rte-content .e-content pre,
|
|
907
911
|
.e-richtexteditor .e-source-content .e-content pre {
|
|
908
912
|
background-color: inherit;
|
|
@@ -885,6 +885,10 @@
|
|
|
885
885
|
margin-left: 0;
|
|
886
886
|
padding-left: 5px;
|
|
887
887
|
}
|
|
888
|
+
.e-richtexteditor .e-rte-content .e-content table,
|
|
889
|
+
.e-richtexteditor .e-source-content .e-content table {
|
|
890
|
+
margin-bottom: 10px;
|
|
891
|
+
}
|
|
888
892
|
.e-richtexteditor .e-rte-content .e-content pre,
|
|
889
893
|
.e-richtexteditor .e-source-content .e-content pre {
|
|
890
894
|
background-color: inherit;
|
|
@@ -885,6 +885,10 @@
|
|
|
885
885
|
margin-left: 0;
|
|
886
886
|
padding-left: 5px;
|
|
887
887
|
}
|
|
888
|
+
.e-richtexteditor .e-rte-content .e-content table,
|
|
889
|
+
.e-richtexteditor .e-source-content .e-content table {
|
|
890
|
+
margin-bottom: 10px;
|
|
891
|
+
}
|
|
888
892
|
.e-richtexteditor .e-rte-content .e-content pre,
|
|
889
893
|
.e-richtexteditor .e-source-content .e-content pre {
|
|
890
894
|
background-color: inherit;
|
|
@@ -890,6 +890,10 @@
|
|
|
890
890
|
margin-left: 0;
|
|
891
891
|
padding-left: 5px;
|
|
892
892
|
}
|
|
893
|
+
.e-richtexteditor .e-rte-content .e-content table,
|
|
894
|
+
.e-richtexteditor .e-source-content .e-content table {
|
|
895
|
+
margin-bottom: 10px;
|
|
896
|
+
}
|
|
893
897
|
.e-richtexteditor .e-rte-content .e-content pre,
|
|
894
898
|
.e-richtexteditor .e-source-content .e-content pre {
|
|
895
899
|
background-color: inherit;
|
|
@@ -890,6 +890,10 @@
|
|
|
890
890
|
margin-left: 0;
|
|
891
891
|
padding-left: 5px;
|
|
892
892
|
}
|
|
893
|
+
.e-richtexteditor .e-rte-content .e-content table,
|
|
894
|
+
.e-richtexteditor .e-source-content .e-content table {
|
|
895
|
+
margin-bottom: 10px;
|
|
896
|
+
}
|
|
893
897
|
.e-richtexteditor .e-rte-content .e-content pre,
|
|
894
898
|
.e-richtexteditor .e-source-content .e-content pre {
|
|
895
899
|
background-color: inherit;
|
|
@@ -885,6 +885,10 @@
|
|
|
885
885
|
margin-left: 0;
|
|
886
886
|
padding-left: 5px;
|
|
887
887
|
}
|
|
888
|
+
.e-richtexteditor .e-rte-content .e-content table,
|
|
889
|
+
.e-richtexteditor .e-source-content .e-content table {
|
|
890
|
+
margin-bottom: 10px;
|
|
891
|
+
}
|
|
888
892
|
.e-richtexteditor .e-rte-content .e-content pre,
|
|
889
893
|
.e-richtexteditor .e-source-content .e-content pre {
|
|
890
894
|
background-color: inherit;
|
|
@@ -885,6 +885,10 @@
|
|
|
885
885
|
margin-left: 0;
|
|
886
886
|
padding-left: 5px;
|
|
887
887
|
}
|
|
888
|
+
.e-richtexteditor .e-rte-content .e-content table,
|
|
889
|
+
.e-richtexteditor .e-source-content .e-content table {
|
|
890
|
+
margin-bottom: 10px;
|
|
891
|
+
}
|
|
888
892
|
.e-richtexteditor .e-rte-content .e-content pre,
|
|
889
893
|
.e-richtexteditor .e-source-content .e-content pre {
|
|
890
894
|
background-color: inherit;
|
|
@@ -885,6 +885,10 @@
|
|
|
885
885
|
margin-left: 0;
|
|
886
886
|
padding-left: 5px;
|
|
887
887
|
}
|
|
888
|
+
.e-richtexteditor .e-rte-content .e-content table,
|
|
889
|
+
.e-richtexteditor .e-source-content .e-content table {
|
|
890
|
+
margin-bottom: 10px;
|
|
891
|
+
}
|
|
888
892
|
.e-richtexteditor .e-rte-content .e-content pre,
|
|
889
893
|
.e-richtexteditor .e-source-content .e-content pre {
|
|
890
894
|
background-color: inherit;
|
|
@@ -885,6 +885,10 @@
|
|
|
885
885
|
margin-left: 0;
|
|
886
886
|
padding-left: 5px;
|
|
887
887
|
}
|
|
888
|
+
.e-richtexteditor .e-rte-content .e-content table,
|
|
889
|
+
.e-richtexteditor .e-source-content .e-content table {
|
|
890
|
+
margin-bottom: 10px;
|
|
891
|
+
}
|
|
888
892
|
.e-richtexteditor .e-rte-content .e-content pre,
|
|
889
893
|
.e-richtexteditor .e-source-content .e-content pre {
|
|
890
894
|
background-color: inherit;
|
|
@@ -940,6 +940,10 @@
|
|
|
940
940
|
margin-left: 0;
|
|
941
941
|
padding-left: 5px;
|
|
942
942
|
}
|
|
943
|
+
.e-richtexteditor .e-rte-content .e-content table,
|
|
944
|
+
.e-richtexteditor .e-source-content .e-content table {
|
|
945
|
+
margin-bottom: 10px;
|
|
946
|
+
}
|
|
943
947
|
.e-richtexteditor .e-rte-content .e-content pre,
|
|
944
948
|
.e-richtexteditor .e-source-content .e-content pre {
|
|
945
949
|
background-color: inherit;
|
|
@@ -996,6 +996,10 @@
|
|
|
996
996
|
margin-left: 0;
|
|
997
997
|
padding-left: 5px;
|
|
998
998
|
}
|
|
999
|
+
.e-richtexteditor .e-rte-content .e-content table,
|
|
1000
|
+
.e-richtexteditor .e-source-content .e-content table {
|
|
1001
|
+
margin-bottom: 10px;
|
|
1002
|
+
}
|
|
999
1003
|
.e-richtexteditor .e-rte-content .e-content pre,
|
|
1000
1004
|
.e-richtexteditor .e-source-content .e-content pre {
|
|
1001
1005
|
background-color: inherit;
|
|
@@ -889,6 +889,10 @@
|
|
|
889
889
|
margin-left: 0;
|
|
890
890
|
padding-left: 5px;
|
|
891
891
|
}
|
|
892
|
+
.e-richtexteditor .e-rte-content .e-content table,
|
|
893
|
+
.e-richtexteditor .e-source-content .e-content table {
|
|
894
|
+
margin-bottom: 10px;
|
|
895
|
+
}
|
|
892
896
|
.e-richtexteditor .e-rte-content .e-content pre,
|
|
893
897
|
.e-richtexteditor .e-source-content .e-content pre {
|
|
894
898
|
background-color: inherit;
|
|
@@ -889,6 +889,10 @@
|
|
|
889
889
|
margin-left: 0;
|
|
890
890
|
padding-left: 5px;
|
|
891
891
|
}
|
|
892
|
+
.e-richtexteditor .e-rte-content .e-content table,
|
|
893
|
+
.e-richtexteditor .e-source-content .e-content table {
|
|
894
|
+
margin-bottom: 10px;
|
|
895
|
+
}
|
|
892
896
|
.e-richtexteditor .e-rte-content .e-content pre,
|
|
893
897
|
.e-richtexteditor .e-source-content .e-content pre {
|
|
894
898
|
background-color: inherit;
|
package/styles/tailwind-dark.css
CHANGED
|
@@ -889,6 +889,10 @@
|
|
|
889
889
|
margin-left: 0;
|
|
890
890
|
padding-left: 5px;
|
|
891
891
|
}
|
|
892
|
+
.e-richtexteditor .e-rte-content .e-content table,
|
|
893
|
+
.e-richtexteditor .e-source-content .e-content table {
|
|
894
|
+
margin-bottom: 10px;
|
|
895
|
+
}
|
|
892
896
|
.e-richtexteditor .e-rte-content .e-content pre,
|
|
893
897
|
.e-richtexteditor .e-source-content .e-content pre {
|
|
894
898
|
background-color: inherit;
|
package/styles/tailwind.css
CHANGED
|
@@ -889,6 +889,10 @@
|
|
|
889
889
|
margin-left: 0;
|
|
890
890
|
padding-left: 5px;
|
|
891
891
|
}
|
|
892
|
+
.e-richtexteditor .e-rte-content .e-content table,
|
|
893
|
+
.e-richtexteditor .e-source-content .e-content table {
|
|
894
|
+
margin-bottom: 10px;
|
|
895
|
+
}
|
|
892
896
|
.e-richtexteditor .e-rte-content .e-content pre,
|
|
893
897
|
.e-richtexteditor .e-source-content .e-content pre {
|
|
894
898
|
background-color: inherit;
|