@syncfusion/ej2-richtexteditor 24.2.4 → 24.2.8
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 +34 -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 +669 -272
- package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es5.js +662 -269
- 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 +12 -12
- package/src/common/util.js +4 -1
- package/src/editor-manager/plugin/dom-node.js +3 -1
- package/src/editor-manager/plugin/format-painter-actions.d.ts +1 -0
- package/src/editor-manager/plugin/format-painter-actions.js +18 -0
- package/src/editor-manager/plugin/formats.d.ts +1 -0
- package/src/editor-manager/plugin/formats.js +37 -2
- package/src/editor-manager/plugin/inserthtml.js +15 -2
- package/src/editor-manager/plugin/lists.js +85 -63
- package/src/editor-manager/plugin/ms-word-clean-up.js +87 -18
- package/src/editor-manager/plugin/nodecutter.js +1 -1
- package/src/editor-manager/plugin/selection-commands.d.ts +1 -0
- package/src/editor-manager/plugin/selection-commands.js +56 -1
- package/src/editor-manager/plugin/table.js +1 -1
- package/src/rich-text-editor/actions/base-quick-toolbar.js +4 -4
- package/src/rich-text-editor/actions/color-picker.d.ts +1 -0
- package/src/rich-text-editor/actions/color-picker.js +10 -0
- package/src/rich-text-editor/actions/enter-key.js +2 -2
- package/src/rich-text-editor/actions/html-editor.js +25 -12
- package/src/rich-text-editor/actions/paste-clean-up.d.ts +1 -0
- package/src/rich-text-editor/actions/paste-clean-up.js +26 -5
- package/src/rich-text-editor/actions/toolbar-action.js +1 -1
- package/src/rich-text-editor/actions/toolbar.js +4 -1
- package/src/rich-text-editor/base/constant.d.ts +5 -0
- package/src/rich-text-editor/base/constant.js +5 -0
- package/src/rich-text-editor/base/interface.d.ts +0 -8
- package/src/rich-text-editor/base/rich-text-editor-model.d.ts +1 -1
- package/src/rich-text-editor/base/rich-text-editor.d.ts +1 -1
- package/src/rich-text-editor/base/rich-text-editor.js +33 -7
- package/src/rich-text-editor/base/util.js +3 -0
- package/src/rich-text-editor/models/default-locale.js +3 -2
- package/src/rich-text-editor/renderer/dialog-renderer.js +5 -1
- package/src/rich-text-editor/renderer/iframe-content-renderer.js +1 -1
- package/src/rich-text-editor/renderer/image-module.js +31 -10
- package/src/rich-text-editor/renderer/table-module.d.ts +4 -1
- package/src/rich-text-editor/renderer/table-module.js +200 -131
- package/src/rich-text-editor/renderer/toolbar-renderer.js +13 -13
- package/styles/bootstrap-dark.css +57 -22
- package/styles/bootstrap.css +61 -29
- package/styles/bootstrap4.css +48 -17
- package/styles/bootstrap5-dark.css +47 -18
- package/styles/bootstrap5.css +47 -18
- package/styles/fabric-dark.css +43 -12
- package/styles/fabric.css +43 -12
- package/styles/fluent-dark.css +51 -14
- package/styles/fluent.css +51 -14
- package/styles/highcontrast-light.css +43 -12
- package/styles/highcontrast.css +46 -12
- package/styles/material-dark.css +47 -12
- package/styles/material.css +47 -12
- package/styles/material3-dark.css +45 -14
- package/styles/material3.css +45 -14
- package/styles/rich-text-editor/_bootstrap-dark-definition.scss +12 -10
- package/styles/rich-text-editor/_bootstrap-definition.scss +18 -16
- package/styles/rich-text-editor/_bootstrap4-definition.scss +8 -6
- package/styles/rich-text-editor/_bootstrap5-definition.scss +4 -2
- package/styles/rich-text-editor/_fabric-dark-definition.scss +4 -2
- package/styles/rich-text-editor/_fabric-definition.scss +4 -2
- package/styles/rich-text-editor/_fluent-definition.scss +5 -3
- package/styles/rich-text-editor/_fusionnew-definition.scss +4 -2
- package/styles/rich-text-editor/_highcontrast-definition.scss +4 -2
- package/styles/rich-text-editor/_highcontrast-light-definition.scss +4 -2
- package/styles/rich-text-editor/_layout.scss +46 -6
- package/styles/rich-text-editor/_material-dark-definition.scss +4 -2
- package/styles/rich-text-editor/_material-definition.scss +4 -2
- package/styles/rich-text-editor/_material3-definition.scss +6 -4
- package/styles/rich-text-editor/_tailwind-definition.scss +21 -19
- package/styles/rich-text-editor/_theme.scss +65 -16
- package/styles/rich-text-editor/bootstrap-dark.css +57 -22
- package/styles/rich-text-editor/bootstrap.css +61 -29
- package/styles/rich-text-editor/bootstrap4.css +48 -17
- package/styles/rich-text-editor/bootstrap5-dark.css +47 -18
- package/styles/rich-text-editor/bootstrap5.css +47 -18
- package/styles/rich-text-editor/fabric-dark.css +43 -12
- package/styles/rich-text-editor/fabric.css +43 -12
- package/styles/rich-text-editor/fluent-dark.css +51 -14
- package/styles/rich-text-editor/fluent.css +51 -14
- package/styles/rich-text-editor/highcontrast-light.css +43 -12
- package/styles/rich-text-editor/highcontrast.css +46 -12
- package/styles/rich-text-editor/material-dark.css +47 -12
- package/styles/rich-text-editor/material.css +47 -12
- package/styles/rich-text-editor/material3-dark.css +45 -14
- package/styles/rich-text-editor/material3.css +45 -14
- package/styles/rich-text-editor/tailwind-dark.css +98 -35
- package/styles/rich-text-editor/tailwind.css +98 -35
- package/styles/tailwind-dark.css +98 -35
- package/styles/tailwind.css +98 -35
- package/.github/PULL_REQUEST_TEMPLATE/Bug.md +0 -41
- package/.github/PULL_REQUEST_TEMPLATE/Feature.md +0 -27
package/styles/tailwind.css
CHANGED
|
@@ -444,8 +444,8 @@
|
|
|
444
444
|
.e-richtexteditor.e-bigger .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-rte-dropdown-btn.e-dropdown-btn:hover,
|
|
445
445
|
.e-richtexteditor.e-bigger .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-rte-dropdown-btn.e-dropdown-btn:focus,
|
|
446
446
|
.e-richtexteditor.e-bigger .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-rte-dropdown-btn.e-dropdown-btn:active {
|
|
447
|
-
padding-left:
|
|
448
|
-
padding-right:
|
|
447
|
+
padding-left: 10px;
|
|
448
|
+
padding-right: 6px;
|
|
449
449
|
}
|
|
450
450
|
.e-bigger .e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-tbar-btn.e-btn,
|
|
451
451
|
.e-bigger .e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn.e-btn,
|
|
@@ -465,8 +465,8 @@
|
|
|
465
465
|
.e-richtexteditor.e-bigger .e-rte-toolbar .e-toolbar-extended .e-dropdown-btn .e-rte-color-content,
|
|
466
466
|
.e-richtexteditor.e-bigger .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-dropdown-btn .e-rte-color-content,
|
|
467
467
|
.e-richtexteditor.e-bigger .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-dropdown-btn .e-rte-color-content {
|
|
468
|
-
padding-top:
|
|
469
|
-
height:
|
|
468
|
+
padding-top: 0;
|
|
469
|
+
height: 38px;
|
|
470
470
|
}
|
|
471
471
|
.e-bigger .e-richtexteditor.e-rte-full-screen iframe,
|
|
472
472
|
.e-richtexteditor.e-bigger.e-rte-full-screen iframe {
|
|
@@ -516,7 +516,7 @@
|
|
|
516
516
|
.e-richtexteditor.e-bigger .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-rte-list-primary-content,
|
|
517
517
|
.e-richtexteditor.e-bigger .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-numberformatlist-dropdown .e-rte-list-primary-content,
|
|
518
518
|
.e-richtexteditor.e-bigger .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown .e-rte-list-primary-content {
|
|
519
|
-
line-height:
|
|
519
|
+
line-height: 35px;
|
|
520
520
|
}
|
|
521
521
|
.e-bigger .e-richtexteditor .e-dialog.e-rte-dialog-minheight,
|
|
522
522
|
.e-richtexteditor.e-bigger .e-dialog.e-rte-dialog-minheight {
|
|
@@ -526,6 +526,14 @@
|
|
|
526
526
|
.e-richtexteditor.e-bigger .e-rte-content .e-content {
|
|
527
527
|
font-size: 16px;
|
|
528
528
|
}
|
|
529
|
+
.e-bigger .e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-browsebtn,
|
|
530
|
+
.e-bigger .e-richtexteditor .e-dialog .e-aud-uploadwrap.e-droparea .e-browsebtn,
|
|
531
|
+
.e-bigger .e-richtexteditor .e-dialog .e-vid-uploadwrap.e-droparea .e-browsebtn,
|
|
532
|
+
.e-richtexteditor.e-bigger .e-dialog .e-img-uploadwrap.e-droparea .e-browsebtn,
|
|
533
|
+
.e-richtexteditor.e-bigger .e-dialog .e-aud-uploadwrap.e-droparea .e-browsebtn,
|
|
534
|
+
.e-richtexteditor.e-bigger .e-dialog .e-vid-uploadwrap.e-droparea .e-browsebtn {
|
|
535
|
+
top: -120px;
|
|
536
|
+
}
|
|
529
537
|
|
|
530
538
|
.e-richtexteditor {
|
|
531
539
|
color: #111827;
|
|
@@ -683,8 +691,8 @@
|
|
|
683
691
|
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-dropdown-btn:hover,
|
|
684
692
|
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-dropdown-btn:focus,
|
|
685
693
|
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-dropdown-btn:active {
|
|
686
|
-
padding-left:
|
|
687
|
-
padding-right:
|
|
694
|
+
padding-left: 7px;
|
|
695
|
+
padding-right: 2.5px;
|
|
688
696
|
}
|
|
689
697
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-rte-font-color .e-selected-color.e-icons::before,
|
|
690
698
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-font-color .e-selected-color.e-icons::before,
|
|
@@ -729,7 +737,7 @@
|
|
|
729
737
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn.e-btn,
|
|
730
738
|
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-tbar-btn.e-btn,
|
|
731
739
|
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn.e-btn {
|
|
732
|
-
padding: 0;
|
|
740
|
+
padding: 0 4px;
|
|
733
741
|
}
|
|
734
742
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-dropdown-btn .e-rte-color-content,
|
|
735
743
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-dropdown-btn .e-rte-color-content,
|
|
@@ -982,7 +990,7 @@
|
|
|
982
990
|
padding: 0;
|
|
983
991
|
}
|
|
984
992
|
.e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover {
|
|
985
|
-
background: #
|
|
993
|
+
background: #f9fafb;
|
|
986
994
|
}
|
|
987
995
|
.e-richtexteditor .e-toolbar .e-toolbar-item .e-tbar-btn,
|
|
988
996
|
.e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item .e-tbar-btn {
|
|
@@ -1017,6 +1025,14 @@
|
|
|
1017
1025
|
top: 90%;
|
|
1018
1026
|
}
|
|
1019
1027
|
|
|
1028
|
+
.e-bigger .e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn,
|
|
1029
|
+
.e-bigger .e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control {
|
|
1030
|
+
padding: 0 8px;
|
|
1031
|
+
}
|
|
1032
|
+
.e-bigger .e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover {
|
|
1033
|
+
padding: 0 8px;
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1020
1036
|
.e-rte-linkcontent .e-rte-label {
|
|
1021
1037
|
padding-top: 12px;
|
|
1022
1038
|
}
|
|
@@ -1165,6 +1181,8 @@
|
|
|
1165
1181
|
.e-rte-image.e-imginline,
|
|
1166
1182
|
.e-rte-audio.e-audio-inline,
|
|
1167
1183
|
.e-rte-video.e-video-inline {
|
|
1184
|
+
margin-left: 5px;
|
|
1185
|
+
margin-right: 5px;
|
|
1168
1186
|
display: inline-block;
|
|
1169
1187
|
float: none;
|
|
1170
1188
|
max-width: calc(100% - 10px);
|
|
@@ -1222,19 +1240,19 @@
|
|
|
1222
1240
|
}
|
|
1223
1241
|
|
|
1224
1242
|
.e-rte-img-caption.e-imgcenter {
|
|
1225
|
-
display:
|
|
1243
|
+
display: contents;
|
|
1226
1244
|
margin-left: auto;
|
|
1227
1245
|
margin-right: auto;
|
|
1228
1246
|
}
|
|
1229
1247
|
|
|
1230
1248
|
.e-rte-img-caption.e-imgright {
|
|
1231
|
-
display:
|
|
1249
|
+
display: contents;
|
|
1232
1250
|
margin-left: auto;
|
|
1233
1251
|
margin-right: 0;
|
|
1234
1252
|
}
|
|
1235
1253
|
|
|
1236
1254
|
.e-rte-img-caption.e-imgleft {
|
|
1237
|
-
display:
|
|
1255
|
+
display: contents;
|
|
1238
1256
|
margin-left: 0;
|
|
1239
1257
|
margin-right: auto;
|
|
1240
1258
|
}
|
|
@@ -1251,7 +1269,7 @@
|
|
|
1251
1269
|
}
|
|
1252
1270
|
|
|
1253
1271
|
.e-img-caption.e-rte-img-caption.e-imgbreak {
|
|
1254
|
-
display:
|
|
1272
|
+
display: contents;
|
|
1255
1273
|
}
|
|
1256
1274
|
|
|
1257
1275
|
.e-rte-table {
|
|
@@ -1350,7 +1368,7 @@
|
|
|
1350
1368
|
.e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control,
|
|
1351
1369
|
.e-rte-elements .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn,
|
|
1352
1370
|
.e-rte-elements .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control {
|
|
1353
|
-
padding: 0
|
|
1371
|
+
padding: 0 4px;
|
|
1354
1372
|
}
|
|
1355
1373
|
.e-richtexteditor .e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon,
|
|
1356
1374
|
.e-rte-elements .e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
|
|
@@ -1436,13 +1454,13 @@
|
|
|
1436
1454
|
margin: 0 auto;
|
|
1437
1455
|
padding: 0 18px;
|
|
1438
1456
|
position: relative;
|
|
1439
|
-
top: -
|
|
1457
|
+
top: -120px;
|
|
1440
1458
|
}
|
|
1441
1459
|
.e-richtexteditor .e-dialog .e-vid-uploadwrap.e-droparea .e-browsebtn,
|
|
1442
1460
|
.e-richtexteditor .e-rte-video-dialog.e-dialog.e-device.e-dlg-modal .e-vid-uploadwrap.e-droparea .e-browsebtn,
|
|
1443
1461
|
.e-rte-elements .e-dialog .e-vid-uploadwrap.e-droparea .e-browsebtn,
|
|
1444
1462
|
.e-rte-elements .e-rte-video-dialog.e-dialog.e-device.e-dlg-modal .e-vid-uploadwrap.e-droparea .e-browsebtn {
|
|
1445
|
-
top: -
|
|
1463
|
+
top: -120px;
|
|
1446
1464
|
}
|
|
1447
1465
|
.e-richtexteditor .e-dialog.e-device.e-dlg-modal .e-img-uploadwrap.e-droparea .e-browsebtn,
|
|
1448
1466
|
.e-richtexteditor .e-dialog.e-device.e-dlg-modal .e-aud-uploadwrap.e-droparea .e-browsebtn,
|
|
@@ -1513,7 +1531,7 @@
|
|
|
1513
1531
|
min-width: 120px;
|
|
1514
1532
|
overflow: hidden;
|
|
1515
1533
|
padding: 18px 18px 8px 22px;
|
|
1516
|
-
border: 1px solid #
|
|
1534
|
+
border: 1px solid #d1d5db;
|
|
1517
1535
|
}
|
|
1518
1536
|
.e-richtexteditor .e-rte-table-popup.e-popup-open .e-rte-tablecell,
|
|
1519
1537
|
.e-rte-elements .e-rte-table-popup.e-popup-open .e-rte-tablecell {
|
|
@@ -1759,6 +1777,14 @@
|
|
|
1759
1777
|
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar {
|
|
1760
1778
|
min-height: 48px;
|
|
1761
1779
|
}
|
|
1780
|
+
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-rte-color-content,
|
|
1781
|
+
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-caret {
|
|
1782
|
+
height: 38px;
|
|
1783
|
+
}
|
|
1784
|
+
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-rte-color-content:hover,
|
|
1785
|
+
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-caret:hover {
|
|
1786
|
+
height: 38px;
|
|
1787
|
+
}
|
|
1762
1788
|
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items:not(.e-tbar-pos) {
|
|
1763
1789
|
margin: 0 6px;
|
|
1764
1790
|
min-height: 48px;
|
|
@@ -1878,6 +1904,11 @@
|
|
|
1878
1904
|
min-width: 55px;
|
|
1879
1905
|
}
|
|
1880
1906
|
|
|
1907
|
+
.e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-rte-numberformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control,
|
|
1908
|
+
.e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control {
|
|
1909
|
+
padding: 1px;
|
|
1910
|
+
}
|
|
1911
|
+
|
|
1881
1912
|
.e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-fontcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control,
|
|
1882
1913
|
.e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-backgroundcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control,
|
|
1883
1914
|
.e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-numberformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control,
|
|
@@ -1896,8 +1927,8 @@
|
|
|
1896
1927
|
.e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control {
|
|
1897
1928
|
display: -ms-flexbox;
|
|
1898
1929
|
display: flex;
|
|
1899
|
-
padding-left:
|
|
1900
|
-
padding-right:
|
|
1930
|
+
padding-left: 1px;
|
|
1931
|
+
padding-right: 1px;
|
|
1901
1932
|
}
|
|
1902
1933
|
.e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-fontcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control:hover, .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-fontcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control:active, .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-fontcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control.e-active, .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-fontcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control.e-active:hover,
|
|
1903
1934
|
.e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-backgroundcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control:hover,
|
|
@@ -1960,8 +1991,8 @@
|
|
|
1960
1991
|
.e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control:active,
|
|
1961
1992
|
.e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control.e-active,
|
|
1962
1993
|
.e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control.e-active:hover {
|
|
1963
|
-
padding-left:
|
|
1964
|
-
padding-right:
|
|
1994
|
+
padding-left: 1px;
|
|
1995
|
+
padding-right: 1px;
|
|
1965
1996
|
}
|
|
1966
1997
|
.e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-fontcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control .e-rte-color-content,
|
|
1967
1998
|
.e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-fontcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control .e-rte-list-primary-content,
|
|
@@ -2216,8 +2247,8 @@
|
|
|
2216
2247
|
.e-bigger .e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control:hover,
|
|
2217
2248
|
.e-bigger .e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control:focus,
|
|
2218
2249
|
.e-bigger .e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control:active {
|
|
2219
|
-
padding-left:
|
|
2220
|
-
padding-right:
|
|
2250
|
+
padding-left: 1px;
|
|
2251
|
+
padding-right: 1px;
|
|
2221
2252
|
}
|
|
2222
2253
|
.e-bigger .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-fontcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control .e-rte-list-primary-content .e-order-list, .e-bigger .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-fontcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control.e-active .e-rte-list-primary-content .e-order-list,
|
|
2223
2254
|
.e-bigger .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-fontcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control .e-rte-list-primary-content .e-unorder-list, .e-bigger .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-fontcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control.e-active .e-rte-list-primary-content .e-unorder-list,
|
|
@@ -2305,7 +2336,7 @@
|
|
|
2305
2336
|
.e-bigger .e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-backgroundcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control .e-icons.e-btn-icon,
|
|
2306
2337
|
.e-bigger .e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-numberformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control .e-icons.e-btn-icon,
|
|
2307
2338
|
.e-bigger .e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control .e-icons.e-btn-icon {
|
|
2308
|
-
line-height:
|
|
2339
|
+
line-height: 38px;
|
|
2309
2340
|
}
|
|
2310
2341
|
.e-bigger .e-richtexteditor .e-rte-toolbar .e-tbar-btn.e-dropdown-btn.e-rte-backgroundcolor-dropdown,
|
|
2311
2342
|
.e-bigger .e-richtexteditor .e-rte-toolbar .e-tbar-btn.e-dropdown-btn.e-rte-fontcolor-dropdown,
|
|
@@ -2603,7 +2634,7 @@
|
|
|
2603
2634
|
margin: 0 auto;
|
|
2604
2635
|
padding: 0 18px;
|
|
2605
2636
|
position: relative;
|
|
2606
|
-
top: -
|
|
2637
|
+
top: -120px;
|
|
2607
2638
|
}
|
|
2608
2639
|
.e-rte-elements.e-dialog .e-vid-uploadwrap.e-droparea .e-browsebtn,
|
|
2609
2640
|
.e-rte-elements.e-dialog .e-rte-video-dialog.e-dialog.e-device.e-dlg-modal .e-vid-uploadwrap.e-droparea .e-browsebtn {
|
|
@@ -2625,7 +2656,7 @@
|
|
|
2625
2656
|
}
|
|
2626
2657
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-item.e-active .e-tbar-btn, .e-richtexteditor .e-rte-toolbar .e-toolbar-item.e-active .e-tbar-btn:focus {
|
|
2627
2658
|
background: #e5e7eb;
|
|
2628
|
-
border:
|
|
2659
|
+
border: 0 solid #d1d5db;
|
|
2629
2660
|
}
|
|
2630
2661
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-item.e-active .e-tbar-btn .e-icons, .e-richtexteditor .e-rte-toolbar .e-toolbar-item.e-active .e-tbar-btn:focus .e-icons {
|
|
2631
2662
|
color: #6b7280;
|
|
@@ -2713,9 +2744,6 @@
|
|
|
2713
2744
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover .e-icons {
|
|
2714
2745
|
color: #6b7280;
|
|
2715
2746
|
}
|
|
2716
|
-
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:focus .e-icons {
|
|
2717
|
-
color: #6b7280;
|
|
2718
|
-
}
|
|
2719
2747
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn .e-icons {
|
|
2720
2748
|
color: #6b7280;
|
|
2721
2749
|
}
|
|
@@ -2898,12 +2926,25 @@
|
|
|
2898
2926
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items {
|
|
2899
2927
|
background: #f3f4f6;
|
|
2900
2928
|
}
|
|
2929
|
+
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-rte-color-content {
|
|
2930
|
+
padding-top: 1px;
|
|
2931
|
+
height: 30px;
|
|
2932
|
+
}
|
|
2933
|
+
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-rte-color-content:hover {
|
|
2934
|
+
background: #e5e7eb;
|
|
2935
|
+
}
|
|
2936
|
+
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-caret:hover {
|
|
2937
|
+
background: #e5e7eb;
|
|
2938
|
+
}
|
|
2939
|
+
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown.e-tbar-btn:hover {
|
|
2940
|
+
background: #f9fafb;
|
|
2941
|
+
}
|
|
2901
2942
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-separator {
|
|
2902
2943
|
border: 0.5px solid #e5e7eb;
|
|
2903
2944
|
}
|
|
2904
2945
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-tbar-btn {
|
|
2905
2946
|
background: #f3f4f6;
|
|
2906
|
-
border:
|
|
2947
|
+
border: 1px solid transparent;
|
|
2907
2948
|
}
|
|
2908
2949
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-tbar-btn:hover {
|
|
2909
2950
|
background: #e5e7eb;
|
|
@@ -2922,7 +2963,7 @@
|
|
|
2922
2963
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-tbar-btn,
|
|
2923
2964
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-tbar-btn:focus {
|
|
2924
2965
|
background: #e5e7eb;
|
|
2925
|
-
border:
|
|
2966
|
+
border: 0 solid #d1d5db;
|
|
2926
2967
|
}
|
|
2927
2968
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-tbar-btn .e-icons,
|
|
2928
2969
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-tbar-btn:focus .e-icons {
|
|
@@ -2945,6 +2986,10 @@
|
|
|
2945
2986
|
border-color: #f3f4f6;
|
|
2946
2987
|
}
|
|
2947
2988
|
|
|
2989
|
+
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-rte-color-content {
|
|
2990
|
+
padding-top: 8px;
|
|
2991
|
+
}
|
|
2992
|
+
|
|
2948
2993
|
.e-dialog .e-img-uploadwrap .e-droptext,
|
|
2949
2994
|
.e-dialog .e-aud-uploadwrap .e-droptext,
|
|
2950
2995
|
.e-dialog .e-vid-uploadwrap .e-droptext,
|
|
@@ -2955,14 +3000,20 @@
|
|
|
2955
3000
|
display: block;
|
|
2956
3001
|
font-family: "Inter";
|
|
2957
3002
|
font-size: 14px;
|
|
2958
|
-
height:
|
|
3003
|
+
height: 128px;
|
|
2959
3004
|
margin: 0 auto;
|
|
2960
3005
|
text-align: center;
|
|
2961
3006
|
width: auto;
|
|
2962
3007
|
}
|
|
2963
3008
|
|
|
2964
3009
|
.e-dialog .e-vid-uploadwrap .e-droptext {
|
|
2965
|
-
height:
|
|
3010
|
+
height: 128px;
|
|
3011
|
+
}
|
|
3012
|
+
|
|
3013
|
+
.e-bigger .e-richtexteditor .e-dialog .e-img-uploadwrap .e-droptext,
|
|
3014
|
+
.e-bigger .e-richtexteditor .e-dialog .e-aud-uploadwrap .e-droptext,
|
|
3015
|
+
.e-bigger .e-richtexteditor .e-dialog .e-vid-uploadwrap .e-droptext {
|
|
3016
|
+
height: 140px;
|
|
2966
3017
|
}
|
|
2967
3018
|
|
|
2968
3019
|
.e-dialog.e-device.e-dlg-modal .e-img-uploadwrap .e-droptext,
|
|
@@ -3165,13 +3216,17 @@ span.e-table-box.e-rbox-select {
|
|
|
3165
3216
|
color: #6b7280;
|
|
3166
3217
|
}
|
|
3167
3218
|
|
|
3219
|
+
.e-bigger .e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-overlay .e-tbar-btn .e-icons,
|
|
3220
|
+
.e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-overlay .e-tbar-btn .e-icons {
|
|
3221
|
+
color: #d1d5db;
|
|
3222
|
+
}
|
|
3223
|
+
|
|
3168
3224
|
.e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover {
|
|
3169
3225
|
border-radius: 4px;
|
|
3170
3226
|
}
|
|
3171
3227
|
|
|
3172
3228
|
.e-richtexteditor .e-toolbar .e-tbar-btn {
|
|
3173
|
-
border
|
|
3174
|
-
border-top: 1px solid transparent;
|
|
3229
|
+
border: 1px solid transparent;
|
|
3175
3230
|
}
|
|
3176
3231
|
|
|
3177
3232
|
.e-richtexteditor .e-toolbar .e-tbar-btn:hover {
|
|
@@ -3184,6 +3239,14 @@ span.e-table-box.e-rbox-select {
|
|
|
3184
3239
|
border: 1px solid #d1d5db;
|
|
3185
3240
|
}
|
|
3186
3241
|
|
|
3242
|
+
.e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn {
|
|
3243
|
+
border: 1px solid transparent;
|
|
3244
|
+
}
|
|
3245
|
+
|
|
3246
|
+
.e-richtexteditor .e-toolbar .e-toolbar-item .e-tbar-btn:focus {
|
|
3247
|
+
border: 1px solid transparent;
|
|
3248
|
+
}
|
|
3249
|
+
|
|
3187
3250
|
.e-richtexteditor.e-rte-tb-expand .e-rte-content-border {
|
|
3188
3251
|
border-bottom: 0;
|
|
3189
3252
|
}
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
### Bug description
|
|
2
|
-
|
|
3
|
-
(Clearly and concisely describe the problem.)
|
|
4
|
-
|
|
5
|
-
### Root Cause / Analysis
|
|
6
|
-
|
|
7
|
-
(Briefly describe root cause/analysis of the problem. If there is an internal discussion on the forum, provide the link.)
|
|
8
|
-
|
|
9
|
-
### Reason for not identifying earlier
|
|
10
|
-
|
|
11
|
-
(Explain how it was missed to identify in our earlier testing/development.)
|
|
12
|
-
|
|
13
|
-
### Is Breaking issue.?
|
|
14
|
-
|
|
15
|
-
(If it is a breaking issue, provide the commit detail which caused this break.)
|
|
16
|
-
|
|
17
|
-
### Is reported by customer in incident/forum.?
|
|
18
|
-
|
|
19
|
-
(If it is reported by customer, provide the incident or forum details.)
|
|
20
|
-
|
|
21
|
-
### Solution Description
|
|
22
|
-
|
|
23
|
-
(Describe your code changes in detail for reviewers.)
|
|
24
|
-
|
|
25
|
-
### Areas affected and ensured
|
|
26
|
-
|
|
27
|
-
(List out the areas are affected by your code changes.)
|
|
28
|
-
|
|
29
|
-
### E2E report details against this fix
|
|
30
|
-
|
|
31
|
-
(Run E2E locally and mention the details with mail attachment.)
|
|
32
|
-
|
|
33
|
-
### Did you included unit test cases.?
|
|
34
|
-
|
|
35
|
-
(Provide unit testing spec coverage details.)
|
|
36
|
-
|
|
37
|
-
### Is there any API name changes.?
|
|
38
|
-
|
|
39
|
-
/label ~bug
|
|
40
|
-
/assign @ScrumMaster
|
|
41
|
-
/cc @ProductOwner
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
### Feature description
|
|
2
|
-
|
|
3
|
-
(Clearly and concisely describe the feature.)
|
|
4
|
-
|
|
5
|
-
### Analysis / Design
|
|
6
|
-
|
|
7
|
-
(Briefly describe analysis of the feature. If there is an internal discussion on the Forum, provide the link.)
|
|
8
|
-
|
|
9
|
-
### Solution Description
|
|
10
|
-
|
|
11
|
-
(Describe your code changes in detail for reviewers.)
|
|
12
|
-
|
|
13
|
-
### Areas affected and ensured
|
|
14
|
-
|
|
15
|
-
(List out the areas are affected by your code changes.)
|
|
16
|
-
|
|
17
|
-
### Did you included unit test cases.?
|
|
18
|
-
|
|
19
|
-
(Provide unit testing spec coverage details.)
|
|
20
|
-
|
|
21
|
-
### Is there any API name changes.?
|
|
22
|
-
|
|
23
|
-
(Provide new or update of API details)
|
|
24
|
-
|
|
25
|
-
/label ~bug
|
|
26
|
-
/assign @ScrumMaster
|
|
27
|
-
/cc @ProductOwner
|