@syncfusion/ej2-richtexteditor 25.1.41 → 25.2.3

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.
Files changed (69) hide show
  1. package/CHANGELOG.md +38 -0
  2. package/dist/ej2-richtexteditor.min.js +2 -2
  3. package/dist/ej2-richtexteditor.umd.min.js +2 -2
  4. package/dist/ej2-richtexteditor.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-richtexteditor.es2015.js +226 -90
  6. package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
  7. package/dist/es6/ej2-richtexteditor.es5.js +226 -91
  8. package/dist/es6/ej2-richtexteditor.es5.js.map +1 -1
  9. package/dist/global/ej2-richtexteditor.min.js +2 -2
  10. package/dist/global/ej2-richtexteditor.min.js.map +1 -1
  11. package/dist/global/index.d.ts +1 -1
  12. package/package.json +23 -13
  13. package/src/common/util.d.ts +8 -0
  14. package/src/common/util.js +52 -0
  15. package/src/editor-manager/plugin/inserthtml.js +8 -2
  16. package/src/editor-manager/plugin/lists.d.ts +1 -0
  17. package/src/editor-manager/plugin/lists.js +97 -51
  18. package/src/editor-manager/plugin/ms-word-clean-up.js +2 -2
  19. package/src/editor-manager/plugin/nodecutter.js +2 -2
  20. package/src/editor-manager/plugin/undo.js +3 -1
  21. package/src/rich-text-editor/actions/emoji-picker.js +1 -1
  22. package/src/rich-text-editor/actions/enter-key.js +9 -0
  23. package/src/rich-text-editor/actions/html-editor.js +10 -12
  24. package/src/rich-text-editor/actions/paste-clean-up.js +13 -9
  25. package/src/rich-text-editor/base/enum.d.ts +4 -4
  26. package/src/rich-text-editor/base/enum.js +9 -9
  27. package/src/rich-text-editor/base/interface.d.ts +3 -3
  28. package/src/rich-text-editor/base/rich-text-editor.js +7 -0
  29. package/src/rich-text-editor/renderer/iframe-content-renderer.js +1 -1
  30. package/src/rich-text-editor/renderer/image-module.js +3 -3
  31. package/src/rich-text-editor/renderer/link-module.js +3 -0
  32. package/src/rich-text-editor/renderer/table-module.js +3 -0
  33. package/src/rich-text-editor/renderer/toolbar-renderer.d.ts +2 -0
  34. package/src/rich-text-editor/renderer/toolbar-renderer.js +7 -1
  35. package/styles/bootstrap-dark.css +7 -6
  36. package/styles/bootstrap.css +7 -6
  37. package/styles/bootstrap4.css +7 -6
  38. package/styles/bootstrap5-dark.css +7 -6
  39. package/styles/bootstrap5.css +7 -6
  40. package/styles/fabric-dark.css +7 -6
  41. package/styles/fabric.css +7 -6
  42. package/styles/fluent-dark.css +7 -6
  43. package/styles/fluent.css +7 -6
  44. package/styles/highcontrast-light.css +7 -6
  45. package/styles/highcontrast.css +7 -6
  46. package/styles/material-dark.css +7 -6
  47. package/styles/material.css +7 -6
  48. package/styles/material3-dark.css +7 -6
  49. package/styles/material3.css +7 -6
  50. package/styles/rich-text-editor/_layout.scss +7 -6
  51. package/styles/rich-text-editor/bootstrap-dark.css +7 -6
  52. package/styles/rich-text-editor/bootstrap.css +7 -6
  53. package/styles/rich-text-editor/bootstrap4.css +7 -6
  54. package/styles/rich-text-editor/bootstrap5-dark.css +7 -6
  55. package/styles/rich-text-editor/bootstrap5.css +7 -6
  56. package/styles/rich-text-editor/fabric-dark.css +7 -6
  57. package/styles/rich-text-editor/fabric.css +7 -6
  58. package/styles/rich-text-editor/fluent-dark.css +7 -6
  59. package/styles/rich-text-editor/fluent.css +7 -6
  60. package/styles/rich-text-editor/highcontrast-light.css +7 -6
  61. package/styles/rich-text-editor/highcontrast.css +7 -6
  62. package/styles/rich-text-editor/material-dark.css +7 -6
  63. package/styles/rich-text-editor/material.css +7 -6
  64. package/styles/rich-text-editor/material3-dark.css +7 -6
  65. package/styles/rich-text-editor/material3.css +7 -6
  66. package/styles/rich-text-editor/tailwind-dark.css +7 -6
  67. package/styles/rich-text-editor/tailwind.css +7 -6
  68. package/styles/tailwind-dark.css +7 -6
  69. package/styles/tailwind.css +7 -6
@@ -996,6 +996,12 @@
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
+ border-collapse: collapse;
1003
+ empty-cells: show;
1004
+ }
999
1005
  .e-richtexteditor .e-rte-content .e-content pre,
1000
1006
  .e-richtexteditor .e-source-content .e-content pre {
1001
1007
  background-color: inherit;
@@ -1300,7 +1306,7 @@
1300
1306
  margin-right: 5px;
1301
1307
  display: inline-block;
1302
1308
  float: none;
1303
- max-width: calc(100% - 10px);
1309
+ max-width: 100%;
1304
1310
  padding: 1px;
1305
1311
  vertical-align: bottom;
1306
1312
  }
@@ -1385,11 +1391,6 @@
1385
1391
  display: contents;
1386
1392
  }
1387
1393
 
1388
- .e-rte-table {
1389
- border-collapse: collapse;
1390
- empty-cells: show;
1391
- }
1392
-
1393
1394
  .e-rte-table td,
1394
1395
  .e-rte-table th {
1395
1396
  border: 1px solid rgba(var(--color-sf-outline-variant));
@@ -515,6 +515,12 @@
515
515
  padding-left: 5px;
516
516
  }
517
517
 
518
+ .e-content table {
519
+ margin-bottom: 10px;
520
+ border-collapse: collapse;
521
+ empty-cells: show;
522
+ }
523
+
518
524
  .e-content pre {
519
525
  background-color: inherit;
520
526
  border: 0;
@@ -887,7 +893,7 @@
887
893
  margin-right: 5px;
888
894
  display: inline-block;
889
895
  float: none;
890
- max-width: calc(100% - (2 * 5px));
896
+ max-width: 100%;
891
897
  padding: 1px;
892
898
  vertical-align: bottom;
893
899
  }
@@ -972,11 +978,6 @@
972
978
  display: contents;
973
979
  }
974
980
 
975
- .e-rte-table {
976
- border-collapse: collapse;
977
- empty-cells: show;
978
- }
979
-
980
981
  .e-rte-table td,
981
982
  .e-rte-table th {
982
983
  border: 1px solid $rte-table-border-color;
@@ -896,6 +896,12 @@
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
+ border-collapse: collapse;
903
+ empty-cells: show;
904
+ }
899
905
  .e-richtexteditor .e-rte-content .e-content pre,
900
906
  .e-richtexteditor .e-source-content .e-content pre {
901
907
  background-color: inherit;
@@ -1200,7 +1206,7 @@
1200
1206
  margin-right: 5px;
1201
1207
  display: inline-block;
1202
1208
  float: none;
1203
- max-width: calc(100% - 10px);
1209
+ max-width: 100%;
1204
1210
  padding: 1px;
1205
1211
  vertical-align: bottom;
1206
1212
  }
@@ -1285,11 +1291,6 @@
1285
1291
  display: contents;
1286
1292
  }
1287
1293
 
1288
- .e-rte-table {
1289
- border-collapse: collapse;
1290
- empty-cells: show;
1291
- }
1292
-
1293
1294
  .e-rte-table td,
1294
1295
  .e-rte-table th {
1295
1296
  border: 1px solid #959595;
@@ -1037,6 +1037,12 @@
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
+ border-collapse: collapse;
1044
+ empty-cells: show;
1045
+ }
1040
1046
  .e-richtexteditor .e-rte-content .e-content pre,
1041
1047
  .e-richtexteditor .e-source-content .e-content pre {
1042
1048
  background-color: inherit;
@@ -1341,7 +1347,7 @@
1341
1347
  margin-right: 5px;
1342
1348
  display: inline-block;
1343
1349
  float: none;
1344
- max-width: calc(100% - 10px);
1350
+ max-width: 100%;
1345
1351
  padding: 1px;
1346
1352
  vertical-align: bottom;
1347
1353
  }
@@ -1426,11 +1432,6 @@
1426
1432
  display: contents;
1427
1433
  }
1428
1434
 
1429
- .e-rte-table {
1430
- border-collapse: collapse;
1431
- empty-cells: show;
1432
- }
1433
-
1434
1435
  .e-rte-table td,
1435
1436
  .e-rte-table th {
1436
1437
  border: 1px solid #bdbdbd;
@@ -1132,6 +1132,12 @@
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
+ border-collapse: collapse;
1139
+ empty-cells: show;
1140
+ }
1135
1141
  .e-richtexteditor .e-rte-content .e-content pre,
1136
1142
  .e-richtexteditor .e-source-content .e-content pre {
1137
1143
  background-color: inherit;
@@ -1436,7 +1442,7 @@
1436
1442
  margin-right: 5px;
1437
1443
  display: inline-block;
1438
1444
  float: none;
1439
- max-width: calc(100% - 10px);
1445
+ max-width: 100%;
1440
1446
  padding: 1px;
1441
1447
  vertical-align: bottom;
1442
1448
  }
@@ -1521,11 +1527,6 @@
1521
1527
  display: contents;
1522
1528
  }
1523
1529
 
1524
- .e-rte-table {
1525
- border-collapse: collapse;
1526
- empty-cells: show;
1527
- }
1528
-
1529
1530
  .e-rte-table td,
1530
1531
  .e-rte-table th {
1531
1532
  border: 1px solid #adb5bd;
@@ -903,6 +903,12 @@
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
+ border-collapse: collapse;
910
+ empty-cells: show;
911
+ }
906
912
  .e-richtexteditor .e-rte-content .e-content pre,
907
913
  .e-richtexteditor .e-source-content .e-content pre {
908
914
  background-color: inherit;
@@ -1207,7 +1213,7 @@
1207
1213
  margin-right: 5px;
1208
1214
  display: inline-block;
1209
1215
  float: none;
1210
- max-width: calc(100% - 10px);
1216
+ max-width: 100%;
1211
1217
  padding: 1px;
1212
1218
  vertical-align: bottom;
1213
1219
  }
@@ -1292,11 +1298,6 @@
1292
1298
  display: contents;
1293
1299
  }
1294
1300
 
1295
- .e-rte-table {
1296
- border-collapse: collapse;
1297
- empty-cells: show;
1298
- }
1299
-
1300
1301
  .e-rte-table td,
1301
1302
  .e-rte-table th {
1302
1303
  border: 1px solid #444c54;
@@ -903,6 +903,12 @@
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
+ border-collapse: collapse;
910
+ empty-cells: show;
911
+ }
906
912
  .e-richtexteditor .e-rte-content .e-content pre,
907
913
  .e-richtexteditor .e-source-content .e-content pre {
908
914
  background-color: inherit;
@@ -1207,7 +1213,7 @@
1207
1213
  margin-right: 5px;
1208
1214
  display: inline-block;
1209
1215
  float: none;
1210
- max-width: calc(100% - 10px);
1216
+ max-width: 100%;
1211
1217
  padding: 1px;
1212
1218
  vertical-align: bottom;
1213
1219
  }
@@ -1292,11 +1298,6 @@
1292
1298
  display: contents;
1293
1299
  }
1294
1300
 
1295
- .e-rte-table {
1296
- border-collapse: collapse;
1297
- empty-cells: show;
1298
- }
1299
-
1300
1301
  .e-rte-table td,
1301
1302
  .e-rte-table th {
1302
1303
  border: 1px solid #dee2e6;
@@ -885,6 +885,12 @@
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
+ border-collapse: collapse;
892
+ empty-cells: show;
893
+ }
888
894
  .e-richtexteditor .e-rte-content .e-content pre,
889
895
  .e-richtexteditor .e-source-content .e-content pre {
890
896
  background-color: inherit;
@@ -1189,7 +1195,7 @@
1189
1195
  margin-right: 5px;
1190
1196
  display: inline-block;
1191
1197
  float: none;
1192
- max-width: calc(100% - 10px);
1198
+ max-width: 100%;
1193
1199
  padding: 1px;
1194
1200
  vertical-align: bottom;
1195
1201
  }
@@ -1274,11 +1280,6 @@
1274
1280
  display: contents;
1275
1281
  }
1276
1282
 
1277
- .e-rte-table {
1278
- border-collapse: collapse;
1279
- empty-cells: show;
1280
- }
1281
-
1282
1283
  .e-rte-table td,
1283
1284
  .e-rte-table th {
1284
1285
  border: 1px solid #9a9a9a;
@@ -885,6 +885,12 @@
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
+ border-collapse: collapse;
892
+ empty-cells: show;
893
+ }
888
894
  .e-richtexteditor .e-rte-content .e-content pre,
889
895
  .e-richtexteditor .e-source-content .e-content pre {
890
896
  background-color: inherit;
@@ -1189,7 +1195,7 @@
1189
1195
  margin-right: 5px;
1190
1196
  display: inline-block;
1191
1197
  float: none;
1192
- max-width: calc(100% - 10px);
1198
+ max-width: 100%;
1193
1199
  padding: 1px;
1194
1200
  vertical-align: bottom;
1195
1201
  }
@@ -1274,11 +1280,6 @@
1274
1280
  display: contents;
1275
1281
  }
1276
1282
 
1277
- .e-rte-table {
1278
- border-collapse: collapse;
1279
- empty-cells: show;
1280
- }
1281
-
1282
1283
  .e-rte-table td,
1283
1284
  .e-rte-table th {
1284
1285
  border: 1px solid #bdbdbd;
@@ -890,6 +890,12 @@
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
+ border-collapse: collapse;
897
+ empty-cells: show;
898
+ }
893
899
  .e-richtexteditor .e-rte-content .e-content pre,
894
900
  .e-richtexteditor .e-source-content .e-content pre {
895
901
  background-color: inherit;
@@ -1194,7 +1200,7 @@
1194
1200
  margin-right: 5px;
1195
1201
  display: inline-block;
1196
1202
  float: none;
1197
- max-width: calc(100% - 10px);
1203
+ max-width: 100%;
1198
1204
  padding: 1px;
1199
1205
  vertical-align: bottom;
1200
1206
  }
@@ -1279,11 +1285,6 @@
1279
1285
  display: contents;
1280
1286
  }
1281
1287
 
1282
- .e-rte-table {
1283
- border-collapse: collapse;
1284
- empty-cells: show;
1285
- }
1286
-
1287
1288
  .e-rte-table td,
1288
1289
  .e-rte-table th {
1289
1290
  border: 1px solid #292827;
@@ -890,6 +890,12 @@
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
+ border-collapse: collapse;
897
+ empty-cells: show;
898
+ }
893
899
  .e-richtexteditor .e-rte-content .e-content pre,
894
900
  .e-richtexteditor .e-source-content .e-content pre {
895
901
  background-color: inherit;
@@ -1194,7 +1200,7 @@
1194
1200
  margin-right: 5px;
1195
1201
  display: inline-block;
1196
1202
  float: none;
1197
- max-width: calc(100% - 10px);
1203
+ max-width: 100%;
1198
1204
  padding: 1px;
1199
1205
  vertical-align: bottom;
1200
1206
  }
@@ -1279,11 +1285,6 @@
1279
1285
  display: contents;
1280
1286
  }
1281
1287
 
1282
- .e-rte-table {
1283
- border-collapse: collapse;
1284
- empty-cells: show;
1285
- }
1286
-
1287
1288
  .e-rte-table td,
1288
1289
  .e-rte-table th {
1289
1290
  border: 1px solid #edebe9;
@@ -885,6 +885,12 @@
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
+ border-collapse: collapse;
892
+ empty-cells: show;
893
+ }
888
894
  .e-richtexteditor .e-rte-content .e-content pre,
889
895
  .e-richtexteditor .e-source-content .e-content pre {
890
896
  background-color: inherit;
@@ -1189,7 +1195,7 @@
1189
1195
  margin-right: 5px;
1190
1196
  display: inline-block;
1191
1197
  float: none;
1192
- max-width: calc(100% - 10px);
1198
+ max-width: 100%;
1193
1199
  padding: 1px;
1194
1200
  vertical-align: bottom;
1195
1201
  }
@@ -1274,11 +1280,6 @@
1274
1280
  display: contents;
1275
1281
  }
1276
1282
 
1277
- .e-rte-table {
1278
- border-collapse: collapse;
1279
- empty-cells: show;
1280
- }
1281
-
1282
1283
  .e-rte-table td,
1283
1284
  .e-rte-table th {
1284
1285
  border: 1px solid #bdbdbd;
@@ -885,6 +885,12 @@
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
+ border-collapse: collapse;
892
+ empty-cells: show;
893
+ }
888
894
  .e-richtexteditor .e-rte-content .e-content pre,
889
895
  .e-richtexteditor .e-source-content .e-content pre {
890
896
  background-color: inherit;
@@ -1189,7 +1195,7 @@
1189
1195
  margin-right: 5px;
1190
1196
  display: inline-block;
1191
1197
  float: none;
1192
- max-width: calc(100% - 10px);
1198
+ max-width: 100%;
1193
1199
  padding: 1px;
1194
1200
  vertical-align: bottom;
1195
1201
  }
@@ -1274,11 +1280,6 @@
1274
1280
  display: contents;
1275
1281
  }
1276
1282
 
1277
- .e-rte-table {
1278
- border-collapse: collapse;
1279
- empty-cells: show;
1280
- }
1281
-
1282
1283
  .e-rte-table td,
1283
1284
  .e-rte-table th {
1284
1285
  border: 1px solid #bdbdbd;
@@ -885,6 +885,12 @@
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
+ border-collapse: collapse;
892
+ empty-cells: show;
893
+ }
888
894
  .e-richtexteditor .e-rte-content .e-content pre,
889
895
  .e-richtexteditor .e-source-content .e-content pre {
890
896
  background-color: inherit;
@@ -1189,7 +1195,7 @@
1189
1195
  margin-right: 5px;
1190
1196
  display: inline-block;
1191
1197
  float: none;
1192
- max-width: calc(100% - 10px);
1198
+ max-width: 100%;
1193
1199
  padding: 1px;
1194
1200
  vertical-align: bottom;
1195
1201
  }
@@ -1274,11 +1280,6 @@
1274
1280
  display: contents;
1275
1281
  }
1276
1282
 
1277
- .e-rte-table {
1278
- border-collapse: collapse;
1279
- empty-cells: show;
1280
- }
1281
-
1282
1283
  .e-rte-table td,
1283
1284
  .e-rte-table th {
1284
1285
  border: 1px solid rgba(255, 255, 255, 0.5);
@@ -885,6 +885,12 @@
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
+ border-collapse: collapse;
892
+ empty-cells: show;
893
+ }
888
894
  .e-richtexteditor .e-rte-content .e-content pre,
889
895
  .e-richtexteditor .e-source-content .e-content pre {
890
896
  background-color: inherit;
@@ -1189,7 +1195,7 @@
1189
1195
  margin-right: 5px;
1190
1196
  display: inline-block;
1191
1197
  float: none;
1192
- max-width: calc(100% - 10px);
1198
+ max-width: 100%;
1193
1199
  padding: 1px;
1194
1200
  vertical-align: bottom;
1195
1201
  }
@@ -1274,11 +1280,6 @@
1274
1280
  display: contents;
1275
1281
  }
1276
1282
 
1277
- .e-rte-table {
1278
- border-collapse: collapse;
1279
- empty-cells: show;
1280
- }
1281
-
1282
1283
  .e-rte-table td,
1283
1284
  .e-rte-table th {
1284
1285
  border: 1px solid #bdbdbd;
@@ -940,6 +940,12 @@
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
+ border-collapse: collapse;
947
+ empty-cells: show;
948
+ }
943
949
  .e-richtexteditor .e-rte-content .e-content pre,
944
950
  .e-richtexteditor .e-source-content .e-content pre {
945
951
  background-color: inherit;
@@ -1244,7 +1250,7 @@
1244
1250
  margin-right: 5px;
1245
1251
  display: inline-block;
1246
1252
  float: none;
1247
- max-width: calc(100% - 10px);
1253
+ max-width: 100%;
1248
1254
  padding: 1px;
1249
1255
  vertical-align: bottom;
1250
1256
  }
@@ -1329,11 +1335,6 @@
1329
1335
  display: contents;
1330
1336
  }
1331
1337
 
1332
- .e-rte-table {
1333
- border-collapse: collapse;
1334
- empty-cells: show;
1335
- }
1336
-
1337
1338
  .e-rte-table td,
1338
1339
  .e-rte-table th {
1339
1340
  border: 1px solid rgba(var(--color-sf-outline-variant));
@@ -996,6 +996,12 @@
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
+ border-collapse: collapse;
1003
+ empty-cells: show;
1004
+ }
999
1005
  .e-richtexteditor .e-rte-content .e-content pre,
1000
1006
  .e-richtexteditor .e-source-content .e-content pre {
1001
1007
  background-color: inherit;
@@ -1300,7 +1306,7 @@
1300
1306
  margin-right: 5px;
1301
1307
  display: inline-block;
1302
1308
  float: none;
1303
- max-width: calc(100% - 10px);
1309
+ max-width: 100%;
1304
1310
  padding: 1px;
1305
1311
  vertical-align: bottom;
1306
1312
  }
@@ -1385,11 +1391,6 @@
1385
1391
  display: contents;
1386
1392
  }
1387
1393
 
1388
- .e-rte-table {
1389
- border-collapse: collapse;
1390
- empty-cells: show;
1391
- }
1392
-
1393
1394
  .e-rte-table td,
1394
1395
  .e-rte-table th {
1395
1396
  border: 1px solid rgba(var(--color-sf-outline-variant));
@@ -889,6 +889,12 @@
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
+ border-collapse: collapse;
896
+ empty-cells: show;
897
+ }
892
898
  .e-richtexteditor .e-rte-content .e-content pre,
893
899
  .e-richtexteditor .e-source-content .e-content pre {
894
900
  background-color: inherit;
@@ -1201,7 +1207,7 @@
1201
1207
  margin-right: 5px;
1202
1208
  display: inline-block;
1203
1209
  float: none;
1204
- max-width: calc(100% - 10px);
1210
+ max-width: 100%;
1205
1211
  padding: 1px;
1206
1212
  vertical-align: bottom;
1207
1213
  }
@@ -1286,11 +1292,6 @@
1286
1292
  display: contents;
1287
1293
  }
1288
1294
 
1289
- .e-rte-table {
1290
- border-collapse: collapse;
1291
- empty-cells: show;
1292
- }
1293
-
1294
1295
  .e-rte-table td,
1295
1296
  .e-rte-table th {
1296
1297
  border: 1px solid #4b5563;
@@ -889,6 +889,12 @@
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
+ border-collapse: collapse;
896
+ empty-cells: show;
897
+ }
892
898
  .e-richtexteditor .e-rte-content .e-content pre,
893
899
  .e-richtexteditor .e-source-content .e-content pre {
894
900
  background-color: inherit;
@@ -1201,7 +1207,7 @@
1201
1207
  margin-right: 5px;
1202
1208
  display: inline-block;
1203
1209
  float: none;
1204
- max-width: calc(100% - 10px);
1210
+ max-width: 100%;
1205
1211
  padding: 1px;
1206
1212
  vertical-align: bottom;
1207
1213
  }
@@ -1286,11 +1292,6 @@
1286
1292
  display: contents;
1287
1293
  }
1288
1294
 
1289
- .e-rte-table {
1290
- border-collapse: collapse;
1291
- empty-cells: show;
1292
- }
1293
-
1294
1295
  .e-rte-table td,
1295
1296
  .e-rte-table th {
1296
1297
  border: 1px solid #e5e7eb;
@@ -889,6 +889,12 @@
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
+ border-collapse: collapse;
896
+ empty-cells: show;
897
+ }
892
898
  .e-richtexteditor .e-rte-content .e-content pre,
893
899
  .e-richtexteditor .e-source-content .e-content pre {
894
900
  background-color: inherit;
@@ -1201,7 +1207,7 @@
1201
1207
  margin-right: 5px;
1202
1208
  display: inline-block;
1203
1209
  float: none;
1204
- max-width: calc(100% - 10px);
1210
+ max-width: 100%;
1205
1211
  padding: 1px;
1206
1212
  vertical-align: bottom;
1207
1213
  }
@@ -1286,11 +1292,6 @@
1286
1292
  display: contents;
1287
1293
  }
1288
1294
 
1289
- .e-rte-table {
1290
- border-collapse: collapse;
1291
- empty-cells: show;
1292
- }
1293
-
1294
1295
  .e-rte-table td,
1295
1296
  .e-rte-table th {
1296
1297
  border: 1px solid #4b5563;