@syncfusion/ej2-richtexteditor 24.1.46 → 24.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.
- package/CHANGELOG.md +22 -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 +760 -168
- package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es5.js +769 -167
- 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/constant.d.ts +6 -0
- package/src/common/constant.js +6 -0
- package/src/common/util.js +31 -20
- package/src/editor-manager/base/constant.d.ts +6 -0
- package/src/editor-manager/base/constant.js +6 -0
- package/src/editor-manager/base/editor-manager.d.ts +5 -0
- package/src/editor-manager/base/editor-manager.js +59 -0
- package/src/editor-manager/base/interface.d.ts +8 -0
- package/src/editor-manager/plugin/dom-node.js +3 -1
- package/src/editor-manager/plugin/format-painter-actions.js +1 -1
- package/src/editor-manager/plugin/ms-word-clean-up.d.ts +2 -0
- package/src/editor-manager/plugin/ms-word-clean-up.js +39 -10
- package/src/editor-manager/plugin/selection-commands.js +16 -0
- package/src/editor-manager/plugin/table.d.ts +0 -1
- package/src/editor-manager/plugin/table.js +14 -26
- package/src/editor-manager/plugin/undo.d.ts +1 -0
- package/src/editor-manager/plugin/undo.js +21 -1
- package/src/rich-text-editor/actions/base-quick-toolbar.js +3 -0
- package/src/rich-text-editor/actions/base-toolbar.js +8 -4
- package/src/rich-text-editor/actions/count.js +1 -1
- package/src/rich-text-editor/actions/dropdown-buttons.js +21 -2
- package/src/rich-text-editor/actions/emoji-picker.js +1 -1
- package/src/rich-text-editor/actions/full-screen.js +1 -0
- package/src/rich-text-editor/actions/html-editor.d.ts +2 -0
- package/src/rich-text-editor/actions/html-editor.js +88 -4
- package/src/rich-text-editor/actions/keyboard.js +3 -1
- package/src/rich-text-editor/actions/paste-clean-up.d.ts +1 -0
- package/src/rich-text-editor/actions/paste-clean-up.js +32 -4
- package/src/rich-text-editor/actions/toolbar.d.ts +2 -1
- package/src/rich-text-editor/base/constant.d.ts +30 -0
- package/src/rich-text-editor/base/constant.js +199 -0
- package/src/rich-text-editor/base/interface.d.ts +7 -1
- package/src/rich-text-editor/base/rich-text-editor.d.ts +1 -0
- package/src/rich-text-editor/base/rich-text-editor.js +33 -61
- package/src/rich-text-editor/base/util.d.ts +4 -0
- package/src/rich-text-editor/base/util.js +35 -1
- package/src/rich-text-editor/formatter/formatter.js +15 -4
- package/src/rich-text-editor/models/default-locale.js +12 -12
- package/src/rich-text-editor/models/items.js +2 -2
- package/src/rich-text-editor/renderer/audio-module.d.ts +1 -0
- package/src/rich-text-editor/renderer/audio-module.js +13 -0
- package/src/rich-text-editor/renderer/dialog-renderer.d.ts +2 -0
- package/src/rich-text-editor/renderer/dialog-renderer.js +7 -0
- package/src/rich-text-editor/renderer/image-module.d.ts +1 -0
- package/src/rich-text-editor/renderer/image-module.js +20 -2
- package/src/rich-text-editor/renderer/link-module.js +10 -1
- package/src/rich-text-editor/renderer/table-module.d.ts +2 -0
- package/src/rich-text-editor/renderer/table-module.js +22 -2
- package/src/rich-text-editor/renderer/toolbar-renderer.d.ts +1 -0
- package/src/rich-text-editor/renderer/toolbar-renderer.js +25 -3
- package/src/rich-text-editor/renderer/video-module.d.ts +1 -0
- package/src/rich-text-editor/renderer/video-module.js +21 -4
- package/src/rich-text-editor/renderer/view-source.d.ts +1 -0
- package/src/rich-text-editor/renderer/view-source.js +5 -0
- package/styles/bootstrap-dark.css +49 -12
- package/styles/bootstrap.css +49 -12
- package/styles/bootstrap4.css +49 -12
- package/styles/bootstrap5-dark.css +49 -12
- package/styles/bootstrap5.css +49 -12
- package/styles/fabric-dark.css +49 -12
- package/styles/fabric.css +49 -12
- package/styles/fluent-dark.css +49 -12
- package/styles/fluent.css +49 -12
- package/styles/highcontrast-light.css +49 -12
- package/styles/highcontrast.css +49 -12
- package/styles/material-dark.css +49 -12
- package/styles/material.css +49 -12
- package/styles/material3-dark.css +56 -19
- package/styles/material3.css +56 -19
- package/styles/rich-text-editor/_bootstrap-dark-definition.scss +1 -0
- package/styles/rich-text-editor/_bootstrap-definition.scss +1 -0
- package/styles/rich-text-editor/_bootstrap4-definition.scss +1 -0
- package/styles/rich-text-editor/_bootstrap5-definition.scss +2 -1
- package/styles/rich-text-editor/_fabric-dark-definition.scss +1 -0
- package/styles/rich-text-editor/_fabric-definition.scss +1 -0
- package/styles/rich-text-editor/_fluent-definition.scss +2 -1
- package/styles/rich-text-editor/_fusionnew-definition.scss +2 -1
- package/styles/rich-text-editor/_highcontrast-definition.scss +1 -0
- package/styles/rich-text-editor/_highcontrast-light-definition.scss +1 -0
- package/styles/rich-text-editor/_layout.scss +40 -5
- package/styles/rich-text-editor/_material-dark-definition.scss +1 -0
- package/styles/rich-text-editor/_material-definition.scss +1 -0
- package/styles/rich-text-editor/_material3-definition.scss +9 -8
- package/styles/rich-text-editor/_tailwind-definition.scss +2 -1
- package/styles/rich-text-editor/_theme.scss +9 -5
- package/styles/rich-text-editor/bootstrap-dark.css +49 -12
- package/styles/rich-text-editor/bootstrap.css +49 -12
- package/styles/rich-text-editor/bootstrap4.css +49 -12
- package/styles/rich-text-editor/bootstrap5-dark.css +49 -12
- package/styles/rich-text-editor/bootstrap5.css +49 -12
- package/styles/rich-text-editor/fabric-dark.css +49 -12
- package/styles/rich-text-editor/fabric.css +49 -12
- package/styles/rich-text-editor/fluent-dark.css +49 -12
- package/styles/rich-text-editor/fluent.css +49 -12
- package/styles/rich-text-editor/highcontrast-light.css +49 -12
- package/styles/rich-text-editor/highcontrast.css +49 -12
- package/styles/rich-text-editor/material-dark.css +49 -12
- package/styles/rich-text-editor/material.css +49 -12
- package/styles/rich-text-editor/material3-dark.css +56 -19
- package/styles/rich-text-editor/material3.css +56 -19
- package/styles/rich-text-editor/tailwind-dark.css +49 -12
- package/styles/rich-text-editor/tailwind.css +49 -12
- package/styles/tailwind-dark.css +49 -12
- package/styles/tailwind.css +49 -12
package/styles/highcontrast.css
CHANGED
|
@@ -518,6 +518,10 @@
|
|
|
518
518
|
.e-richtexteditor.e-bigger .e-dialog.e-rte-dialog-minheight {
|
|
519
519
|
min-height: 324px;
|
|
520
520
|
}
|
|
521
|
+
.e-bigger .e-richtexteditor .e-rte-content .e-content,
|
|
522
|
+
.e-richtexteditor.e-bigger .e-rte-content .e-content {
|
|
523
|
+
font-size: 16px;
|
|
524
|
+
}
|
|
521
525
|
|
|
522
526
|
.e-richtexteditor {
|
|
523
527
|
color: #fff;
|
|
@@ -803,12 +807,7 @@
|
|
|
803
807
|
position: relative;
|
|
804
808
|
text-align: inherit;
|
|
805
809
|
z-index: 2;
|
|
806
|
-
|
|
807
|
-
@media screen and (min-width: 992px) {
|
|
808
|
-
.e-richtexteditor .e-rte-content .e-content,
|
|
809
|
-
.e-richtexteditor .e-source-content .e-content {
|
|
810
|
-
font-size: 14px;
|
|
811
|
-
}
|
|
810
|
+
font-size: 14px;
|
|
812
811
|
}
|
|
813
812
|
.e-richtexteditor .e-rte-content .e-content p,
|
|
814
813
|
.e-richtexteditor .e-source-content .e-content p {
|
|
@@ -985,6 +984,34 @@
|
|
|
985
984
|
.e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item .e-tbar-btn {
|
|
986
985
|
font-size: 16px;
|
|
987
986
|
}
|
|
987
|
+
.e-richtexteditor .e-clickelem::after,
|
|
988
|
+
.e-richtexteditor .e-video-clickelem::after {
|
|
989
|
+
left: 0;
|
|
990
|
+
right: 0;
|
|
991
|
+
z-index: 1;
|
|
992
|
+
}
|
|
993
|
+
.e-richtexteditor .e-clickelem::before,
|
|
994
|
+
.e-richtexteditor .e-video-clickelem::before {
|
|
995
|
+
left: 0;
|
|
996
|
+
right: 0;
|
|
997
|
+
z-index: 1;
|
|
998
|
+
}
|
|
999
|
+
.e-richtexteditor .e-clickelem::before {
|
|
1000
|
+
bottom: 70%;
|
|
1001
|
+
top: 0;
|
|
1002
|
+
}
|
|
1003
|
+
.e-richtexteditor .e-clickelem::after {
|
|
1004
|
+
bottom: 0;
|
|
1005
|
+
top: 70%;
|
|
1006
|
+
}
|
|
1007
|
+
.e-richtexteditor .e-video-clickelem::before {
|
|
1008
|
+
bottom: 85%;
|
|
1009
|
+
top: 0;
|
|
1010
|
+
}
|
|
1011
|
+
.e-richtexteditor .e-video-clickelem::after {
|
|
1012
|
+
bottom: 0;
|
|
1013
|
+
top: 90%;
|
|
1014
|
+
}
|
|
988
1015
|
|
|
989
1016
|
.e-rte-linkcontent .e-rte-label {
|
|
990
1017
|
padding-top: 20px;
|
|
@@ -1234,7 +1261,6 @@
|
|
|
1234
1261
|
height: 20px;
|
|
1235
1262
|
min-width: 20px;
|
|
1236
1263
|
padding: 2px 5px;
|
|
1237
|
-
vertical-align: middle;
|
|
1238
1264
|
}
|
|
1239
1265
|
|
|
1240
1266
|
.e-rte-table.e-dashed-border td,
|
|
@@ -1277,6 +1303,14 @@
|
|
|
1277
1303
|
padding-top: 0;
|
|
1278
1304
|
}
|
|
1279
1305
|
|
|
1306
|
+
.e-rte-video-dialog .e-rte-label {
|
|
1307
|
+
padding-top: 20px;
|
|
1308
|
+
}
|
|
1309
|
+
|
|
1310
|
+
.e-rte-video-dialog .e-rte-label:first-child {
|
|
1311
|
+
padding-top: 0;
|
|
1312
|
+
}
|
|
1313
|
+
|
|
1280
1314
|
.e-rte-table-resize.e-row-resize,
|
|
1281
1315
|
.e-rte-table-resize.e-column-resize {
|
|
1282
1316
|
background-color: transparent;
|
|
@@ -2801,15 +2835,18 @@
|
|
|
2801
2835
|
.e-richtexteditor .e-clickelem::after,
|
|
2802
2836
|
.e-richtexteditor .e-video-clickelem::after {
|
|
2803
2837
|
background: transparent;
|
|
2804
|
-
bottom: 0;
|
|
2805
2838
|
content: "";
|
|
2806
2839
|
cursor: default;
|
|
2807
2840
|
display: block;
|
|
2808
|
-
left: 0;
|
|
2809
2841
|
position: absolute;
|
|
2810
|
-
|
|
2811
|
-
|
|
2812
|
-
|
|
2842
|
+
}
|
|
2843
|
+
.e-richtexteditor .e-clickelem::before,
|
|
2844
|
+
.e-richtexteditor .e-video-clickelem::before {
|
|
2845
|
+
background: transparent;
|
|
2846
|
+
content: "";
|
|
2847
|
+
cursor: default;
|
|
2848
|
+
display: block;
|
|
2849
|
+
position: absolute;
|
|
2813
2850
|
}
|
|
2814
2851
|
.e-richtexteditor .e-videoheader,
|
|
2815
2852
|
.e-richtexteditor .e-embed-videoheader,
|
package/styles/material-dark.css
CHANGED
|
@@ -518,6 +518,10 @@
|
|
|
518
518
|
.e-richtexteditor.e-bigger .e-dialog.e-rte-dialog-minheight {
|
|
519
519
|
min-height: 324px;
|
|
520
520
|
}
|
|
521
|
+
.e-bigger .e-richtexteditor .e-rte-content .e-content,
|
|
522
|
+
.e-richtexteditor.e-bigger .e-rte-content .e-content {
|
|
523
|
+
font-size: 16px;
|
|
524
|
+
}
|
|
521
525
|
|
|
522
526
|
.e-richtexteditor {
|
|
523
527
|
color: #fff;
|
|
@@ -803,12 +807,7 @@
|
|
|
803
807
|
position: relative;
|
|
804
808
|
text-align: inherit;
|
|
805
809
|
z-index: 2;
|
|
806
|
-
|
|
807
|
-
@media screen and (min-width: 992px) {
|
|
808
|
-
.e-richtexteditor .e-rte-content .e-content,
|
|
809
|
-
.e-richtexteditor .e-source-content .e-content {
|
|
810
|
-
font-size: 14px;
|
|
811
|
-
}
|
|
810
|
+
font-size: 14px;
|
|
812
811
|
}
|
|
813
812
|
.e-richtexteditor .e-rte-content .e-content p,
|
|
814
813
|
.e-richtexteditor .e-source-content .e-content p {
|
|
@@ -985,6 +984,34 @@
|
|
|
985
984
|
.e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item .e-tbar-btn {
|
|
986
985
|
font-size: 14px;
|
|
987
986
|
}
|
|
987
|
+
.e-richtexteditor .e-clickelem::after,
|
|
988
|
+
.e-richtexteditor .e-video-clickelem::after {
|
|
989
|
+
left: 0;
|
|
990
|
+
right: 0;
|
|
991
|
+
z-index: 1;
|
|
992
|
+
}
|
|
993
|
+
.e-richtexteditor .e-clickelem::before,
|
|
994
|
+
.e-richtexteditor .e-video-clickelem::before {
|
|
995
|
+
left: 0;
|
|
996
|
+
right: 0;
|
|
997
|
+
z-index: 1;
|
|
998
|
+
}
|
|
999
|
+
.e-richtexteditor .e-clickelem::before {
|
|
1000
|
+
bottom: 70%;
|
|
1001
|
+
top: 0;
|
|
1002
|
+
}
|
|
1003
|
+
.e-richtexteditor .e-clickelem::after {
|
|
1004
|
+
bottom: 0;
|
|
1005
|
+
top: 70%;
|
|
1006
|
+
}
|
|
1007
|
+
.e-richtexteditor .e-video-clickelem::before {
|
|
1008
|
+
bottom: 85%;
|
|
1009
|
+
top: 0;
|
|
1010
|
+
}
|
|
1011
|
+
.e-richtexteditor .e-video-clickelem::after {
|
|
1012
|
+
bottom: 0;
|
|
1013
|
+
top: 90%;
|
|
1014
|
+
}
|
|
988
1015
|
|
|
989
1016
|
.e-rte-linkcontent .e-rte-label {
|
|
990
1017
|
padding-top: 20px;
|
|
@@ -1234,7 +1261,6 @@
|
|
|
1234
1261
|
height: 20px;
|
|
1235
1262
|
min-width: 20px;
|
|
1236
1263
|
padding: 2px 5px;
|
|
1237
|
-
vertical-align: middle;
|
|
1238
1264
|
}
|
|
1239
1265
|
|
|
1240
1266
|
.e-rte-table.e-dashed-border td,
|
|
@@ -1277,6 +1303,14 @@
|
|
|
1277
1303
|
padding-top: 0;
|
|
1278
1304
|
}
|
|
1279
1305
|
|
|
1306
|
+
.e-rte-video-dialog .e-rte-label {
|
|
1307
|
+
padding-top: 20px;
|
|
1308
|
+
}
|
|
1309
|
+
|
|
1310
|
+
.e-rte-video-dialog .e-rte-label:first-child {
|
|
1311
|
+
padding-top: 0;
|
|
1312
|
+
}
|
|
1313
|
+
|
|
1280
1314
|
.e-rte-table-resize.e-row-resize,
|
|
1281
1315
|
.e-rte-table-resize.e-column-resize {
|
|
1282
1316
|
background-color: transparent;
|
|
@@ -2813,15 +2847,18 @@
|
|
|
2813
2847
|
.e-richtexteditor .e-clickelem::after,
|
|
2814
2848
|
.e-richtexteditor .e-video-clickelem::after {
|
|
2815
2849
|
background: transparent;
|
|
2816
|
-
bottom: 0;
|
|
2817
2850
|
content: "";
|
|
2818
2851
|
cursor: default;
|
|
2819
2852
|
display: block;
|
|
2820
|
-
left: 0;
|
|
2821
2853
|
position: absolute;
|
|
2822
|
-
|
|
2823
|
-
|
|
2824
|
-
|
|
2854
|
+
}
|
|
2855
|
+
.e-richtexteditor .e-clickelem::before,
|
|
2856
|
+
.e-richtexteditor .e-video-clickelem::before {
|
|
2857
|
+
background: transparent;
|
|
2858
|
+
content: "";
|
|
2859
|
+
cursor: default;
|
|
2860
|
+
display: block;
|
|
2861
|
+
position: absolute;
|
|
2825
2862
|
}
|
|
2826
2863
|
.e-richtexteditor .e-videoheader,
|
|
2827
2864
|
.e-richtexteditor .e-embed-videoheader,
|
package/styles/material.css
CHANGED
|
@@ -518,6 +518,10 @@
|
|
|
518
518
|
.e-richtexteditor.e-bigger .e-dialog.e-rte-dialog-minheight {
|
|
519
519
|
min-height: 324px;
|
|
520
520
|
}
|
|
521
|
+
.e-bigger .e-richtexteditor .e-rte-content .e-content,
|
|
522
|
+
.e-richtexteditor.e-bigger .e-rte-content .e-content {
|
|
523
|
+
font-size: 16px;
|
|
524
|
+
}
|
|
521
525
|
|
|
522
526
|
.e-richtexteditor {
|
|
523
527
|
color: #333;
|
|
@@ -803,12 +807,7 @@
|
|
|
803
807
|
position: relative;
|
|
804
808
|
text-align: inherit;
|
|
805
809
|
z-index: 2;
|
|
806
|
-
|
|
807
|
-
@media screen and (min-width: 992px) {
|
|
808
|
-
.e-richtexteditor .e-rte-content .e-content,
|
|
809
|
-
.e-richtexteditor .e-source-content .e-content {
|
|
810
|
-
font-size: 14px;
|
|
811
|
-
}
|
|
810
|
+
font-size: 14px;
|
|
812
811
|
}
|
|
813
812
|
.e-richtexteditor .e-rte-content .e-content p,
|
|
814
813
|
.e-richtexteditor .e-source-content .e-content p {
|
|
@@ -985,6 +984,34 @@
|
|
|
985
984
|
.e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item .e-tbar-btn {
|
|
986
985
|
font-size: 14px;
|
|
987
986
|
}
|
|
987
|
+
.e-richtexteditor .e-clickelem::after,
|
|
988
|
+
.e-richtexteditor .e-video-clickelem::after {
|
|
989
|
+
left: 0;
|
|
990
|
+
right: 0;
|
|
991
|
+
z-index: 1;
|
|
992
|
+
}
|
|
993
|
+
.e-richtexteditor .e-clickelem::before,
|
|
994
|
+
.e-richtexteditor .e-video-clickelem::before {
|
|
995
|
+
left: 0;
|
|
996
|
+
right: 0;
|
|
997
|
+
z-index: 1;
|
|
998
|
+
}
|
|
999
|
+
.e-richtexteditor .e-clickelem::before {
|
|
1000
|
+
bottom: 70%;
|
|
1001
|
+
top: 0;
|
|
1002
|
+
}
|
|
1003
|
+
.e-richtexteditor .e-clickelem::after {
|
|
1004
|
+
bottom: 0;
|
|
1005
|
+
top: 70%;
|
|
1006
|
+
}
|
|
1007
|
+
.e-richtexteditor .e-video-clickelem::before {
|
|
1008
|
+
bottom: 85%;
|
|
1009
|
+
top: 0;
|
|
1010
|
+
}
|
|
1011
|
+
.e-richtexteditor .e-video-clickelem::after {
|
|
1012
|
+
bottom: 0;
|
|
1013
|
+
top: 90%;
|
|
1014
|
+
}
|
|
988
1015
|
|
|
989
1016
|
.e-rte-linkcontent .e-rte-label {
|
|
990
1017
|
padding-top: 20px;
|
|
@@ -1234,7 +1261,6 @@
|
|
|
1234
1261
|
height: 20px;
|
|
1235
1262
|
min-width: 20px;
|
|
1236
1263
|
padding: 2px 5px;
|
|
1237
|
-
vertical-align: middle;
|
|
1238
1264
|
}
|
|
1239
1265
|
|
|
1240
1266
|
.e-rte-table.e-dashed-border td,
|
|
@@ -1277,6 +1303,14 @@
|
|
|
1277
1303
|
padding-top: 0;
|
|
1278
1304
|
}
|
|
1279
1305
|
|
|
1306
|
+
.e-rte-video-dialog .e-rte-label {
|
|
1307
|
+
padding-top: 20px;
|
|
1308
|
+
}
|
|
1309
|
+
|
|
1310
|
+
.e-rte-video-dialog .e-rte-label:first-child {
|
|
1311
|
+
padding-top: 0;
|
|
1312
|
+
}
|
|
1313
|
+
|
|
1280
1314
|
.e-rte-table-resize.e-row-resize,
|
|
1281
1315
|
.e-rte-table-resize.e-column-resize {
|
|
1282
1316
|
background-color: transparent;
|
|
@@ -2813,15 +2847,18 @@
|
|
|
2813
2847
|
.e-richtexteditor .e-clickelem::after,
|
|
2814
2848
|
.e-richtexteditor .e-video-clickelem::after {
|
|
2815
2849
|
background: transparent;
|
|
2816
|
-
bottom: 0;
|
|
2817
2850
|
content: "";
|
|
2818
2851
|
cursor: default;
|
|
2819
2852
|
display: block;
|
|
2820
|
-
left: 0;
|
|
2821
2853
|
position: absolute;
|
|
2822
|
-
|
|
2823
|
-
|
|
2824
|
-
|
|
2854
|
+
}
|
|
2855
|
+
.e-richtexteditor .e-clickelem::before,
|
|
2856
|
+
.e-richtexteditor .e-video-clickelem::before {
|
|
2857
|
+
background: transparent;
|
|
2858
|
+
content: "";
|
|
2859
|
+
cursor: default;
|
|
2860
|
+
display: block;
|
|
2861
|
+
position: absolute;
|
|
2825
2862
|
}
|
|
2826
2863
|
.e-richtexteditor .e-videoheader,
|
|
2827
2864
|
.e-richtexteditor .e-embed-videoheader,
|
|
@@ -573,6 +573,10 @@
|
|
|
573
573
|
.e-richtexteditor.e-bigger .e-dialog.e-rte-dialog-minheight {
|
|
574
574
|
min-height: 324px;
|
|
575
575
|
}
|
|
576
|
+
.e-bigger .e-richtexteditor .e-rte-content .e-content,
|
|
577
|
+
.e-richtexteditor.e-bigger .e-rte-content .e-content {
|
|
578
|
+
font-size: 16px;
|
|
579
|
+
}
|
|
576
580
|
|
|
577
581
|
.e-richtexteditor {
|
|
578
582
|
color: rgba(var(--color-sf-on-surface));
|
|
@@ -858,12 +862,7 @@
|
|
|
858
862
|
position: relative;
|
|
859
863
|
text-align: inherit;
|
|
860
864
|
z-index: 2;
|
|
861
|
-
|
|
862
|
-
@media screen and (min-width: 992px) {
|
|
863
|
-
.e-richtexteditor .e-rte-content .e-content,
|
|
864
|
-
.e-richtexteditor .e-source-content .e-content {
|
|
865
|
-
font-size: 14px;
|
|
866
|
-
}
|
|
865
|
+
font-size: 14px;
|
|
867
866
|
}
|
|
868
867
|
.e-richtexteditor .e-rte-content .e-content p,
|
|
869
868
|
.e-richtexteditor .e-source-content .e-content p {
|
|
@@ -1040,6 +1039,34 @@
|
|
|
1040
1039
|
.e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item .e-tbar-btn {
|
|
1041
1040
|
font-size: 18px;
|
|
1042
1041
|
}
|
|
1042
|
+
.e-richtexteditor .e-clickelem::after,
|
|
1043
|
+
.e-richtexteditor .e-video-clickelem::after {
|
|
1044
|
+
left: 0;
|
|
1045
|
+
right: 0;
|
|
1046
|
+
z-index: 1;
|
|
1047
|
+
}
|
|
1048
|
+
.e-richtexteditor .e-clickelem::before,
|
|
1049
|
+
.e-richtexteditor .e-video-clickelem::before {
|
|
1050
|
+
left: 0;
|
|
1051
|
+
right: 0;
|
|
1052
|
+
z-index: 1;
|
|
1053
|
+
}
|
|
1054
|
+
.e-richtexteditor .e-clickelem::before {
|
|
1055
|
+
bottom: 70%;
|
|
1056
|
+
top: 0;
|
|
1057
|
+
}
|
|
1058
|
+
.e-richtexteditor .e-clickelem::after {
|
|
1059
|
+
bottom: 0;
|
|
1060
|
+
top: 70%;
|
|
1061
|
+
}
|
|
1062
|
+
.e-richtexteditor .e-video-clickelem::before {
|
|
1063
|
+
bottom: 85%;
|
|
1064
|
+
top: 0;
|
|
1065
|
+
}
|
|
1066
|
+
.e-richtexteditor .e-video-clickelem::after {
|
|
1067
|
+
bottom: 0;
|
|
1068
|
+
top: 90%;
|
|
1069
|
+
}
|
|
1043
1070
|
|
|
1044
1071
|
.e-rte-linkcontent .e-rte-label {
|
|
1045
1072
|
padding-top: 20px;
|
|
@@ -1289,7 +1316,6 @@
|
|
|
1289
1316
|
height: 20px;
|
|
1290
1317
|
min-width: 20px;
|
|
1291
1318
|
padding: 2px 5px;
|
|
1292
|
-
vertical-align: middle;
|
|
1293
1319
|
}
|
|
1294
1320
|
|
|
1295
1321
|
.e-rte-table.e-dashed-border td,
|
|
@@ -1332,6 +1358,14 @@
|
|
|
1332
1358
|
padding-top: 0;
|
|
1333
1359
|
}
|
|
1334
1360
|
|
|
1361
|
+
.e-rte-video-dialog .e-rte-label {
|
|
1362
|
+
padding-top: 20px;
|
|
1363
|
+
}
|
|
1364
|
+
|
|
1365
|
+
.e-rte-video-dialog .e-rte-label:first-child {
|
|
1366
|
+
padding-top: 0;
|
|
1367
|
+
}
|
|
1368
|
+
|
|
1335
1369
|
.e-rte-table-resize.e-row-resize,
|
|
1336
1370
|
.e-rte-table-resize.e-column-resize {
|
|
1337
1371
|
background-color: transparent;
|
|
@@ -1536,15 +1570,15 @@
|
|
|
1536
1570
|
.e-rte-elements .e-rte-table-popup.e-popup-open .e-rte-tablecell {
|
|
1537
1571
|
border: 1px solid rgba(var(--color-sf-outline-variant));
|
|
1538
1572
|
display: inline-block;
|
|
1539
|
-
height:
|
|
1540
|
-
margin:
|
|
1573
|
+
height: 14px;
|
|
1574
|
+
margin: 1px;
|
|
1541
1575
|
overflow: hidden;
|
|
1542
1576
|
vertical-align: top;
|
|
1543
|
-
width:
|
|
1577
|
+
width: 14px;
|
|
1544
1578
|
}
|
|
1545
1579
|
.e-richtexteditor .e-rte-table-popup.e-popup-open .e-rte-table-row,
|
|
1546
1580
|
.e-rte-elements .e-rte-table-popup.e-popup-open .e-rte-table-row {
|
|
1547
|
-
height:
|
|
1581
|
+
height: 16px;
|
|
1548
1582
|
}
|
|
1549
1583
|
.e-richtexteditor .e-rte-table-popup.e-popup-open .e-insert-table-btn,
|
|
1550
1584
|
.e-rte-elements .e-rte-table-popup.e-popup-open .e-insert-table-btn {
|
|
@@ -2376,12 +2410,12 @@
|
|
|
2376
2410
|
}
|
|
2377
2411
|
|
|
2378
2412
|
.e-bigger .e-rte-table-popup.e-popup-open .e-rte-tablecell {
|
|
2379
|
-
height:
|
|
2380
|
-
width:
|
|
2413
|
+
height: 16px;
|
|
2414
|
+
width: 16px;
|
|
2381
2415
|
}
|
|
2382
2416
|
|
|
2383
2417
|
.e-bigger .e-rte-table-popup.e-popup-open .e-rte-table-row {
|
|
2384
|
-
height:
|
|
2418
|
+
height: 18px;
|
|
2385
2419
|
}
|
|
2386
2420
|
|
|
2387
2421
|
.e-table-rhelper {
|
|
@@ -2893,15 +2927,18 @@
|
|
|
2893
2927
|
.e-richtexteditor .e-clickelem::after,
|
|
2894
2928
|
.e-richtexteditor .e-video-clickelem::after {
|
|
2895
2929
|
background: transparent;
|
|
2896
|
-
bottom: 0;
|
|
2897
2930
|
content: "";
|
|
2898
2931
|
cursor: default;
|
|
2899
2932
|
display: block;
|
|
2900
|
-
left: 0;
|
|
2901
2933
|
position: absolute;
|
|
2902
|
-
|
|
2903
|
-
|
|
2904
|
-
|
|
2934
|
+
}
|
|
2935
|
+
.e-richtexteditor .e-clickelem::before,
|
|
2936
|
+
.e-richtexteditor .e-video-clickelem::before {
|
|
2937
|
+
background: transparent;
|
|
2938
|
+
content: "";
|
|
2939
|
+
cursor: default;
|
|
2940
|
+
display: block;
|
|
2941
|
+
position: absolute;
|
|
2905
2942
|
}
|
|
2906
2943
|
.e-richtexteditor .e-videoheader,
|
|
2907
2944
|
.e-richtexteditor .e-embed-videoheader,
|
package/styles/material3.css
CHANGED
|
@@ -629,6 +629,10 @@
|
|
|
629
629
|
.e-richtexteditor.e-bigger .e-dialog.e-rte-dialog-minheight {
|
|
630
630
|
min-height: 324px;
|
|
631
631
|
}
|
|
632
|
+
.e-bigger .e-richtexteditor .e-rte-content .e-content,
|
|
633
|
+
.e-richtexteditor.e-bigger .e-rte-content .e-content {
|
|
634
|
+
font-size: 16px;
|
|
635
|
+
}
|
|
632
636
|
|
|
633
637
|
.e-richtexteditor {
|
|
634
638
|
color: rgba(var(--color-sf-on-surface));
|
|
@@ -914,12 +918,7 @@
|
|
|
914
918
|
position: relative;
|
|
915
919
|
text-align: inherit;
|
|
916
920
|
z-index: 2;
|
|
917
|
-
|
|
918
|
-
@media screen and (min-width: 992px) {
|
|
919
|
-
.e-richtexteditor .e-rte-content .e-content,
|
|
920
|
-
.e-richtexteditor .e-source-content .e-content {
|
|
921
|
-
font-size: 14px;
|
|
922
|
-
}
|
|
921
|
+
font-size: 14px;
|
|
923
922
|
}
|
|
924
923
|
.e-richtexteditor .e-rte-content .e-content p,
|
|
925
924
|
.e-richtexteditor .e-source-content .e-content p {
|
|
@@ -1096,6 +1095,34 @@
|
|
|
1096
1095
|
.e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item .e-tbar-btn {
|
|
1097
1096
|
font-size: 18px;
|
|
1098
1097
|
}
|
|
1098
|
+
.e-richtexteditor .e-clickelem::after,
|
|
1099
|
+
.e-richtexteditor .e-video-clickelem::after {
|
|
1100
|
+
left: 0;
|
|
1101
|
+
right: 0;
|
|
1102
|
+
z-index: 1;
|
|
1103
|
+
}
|
|
1104
|
+
.e-richtexteditor .e-clickelem::before,
|
|
1105
|
+
.e-richtexteditor .e-video-clickelem::before {
|
|
1106
|
+
left: 0;
|
|
1107
|
+
right: 0;
|
|
1108
|
+
z-index: 1;
|
|
1109
|
+
}
|
|
1110
|
+
.e-richtexteditor .e-clickelem::before {
|
|
1111
|
+
bottom: 70%;
|
|
1112
|
+
top: 0;
|
|
1113
|
+
}
|
|
1114
|
+
.e-richtexteditor .e-clickelem::after {
|
|
1115
|
+
bottom: 0;
|
|
1116
|
+
top: 70%;
|
|
1117
|
+
}
|
|
1118
|
+
.e-richtexteditor .e-video-clickelem::before {
|
|
1119
|
+
bottom: 85%;
|
|
1120
|
+
top: 0;
|
|
1121
|
+
}
|
|
1122
|
+
.e-richtexteditor .e-video-clickelem::after {
|
|
1123
|
+
bottom: 0;
|
|
1124
|
+
top: 90%;
|
|
1125
|
+
}
|
|
1099
1126
|
|
|
1100
1127
|
.e-rte-linkcontent .e-rte-label {
|
|
1101
1128
|
padding-top: 20px;
|
|
@@ -1345,7 +1372,6 @@
|
|
|
1345
1372
|
height: 20px;
|
|
1346
1373
|
min-width: 20px;
|
|
1347
1374
|
padding: 2px 5px;
|
|
1348
|
-
vertical-align: middle;
|
|
1349
1375
|
}
|
|
1350
1376
|
|
|
1351
1377
|
.e-rte-table.e-dashed-border td,
|
|
@@ -1388,6 +1414,14 @@
|
|
|
1388
1414
|
padding-top: 0;
|
|
1389
1415
|
}
|
|
1390
1416
|
|
|
1417
|
+
.e-rte-video-dialog .e-rte-label {
|
|
1418
|
+
padding-top: 20px;
|
|
1419
|
+
}
|
|
1420
|
+
|
|
1421
|
+
.e-rte-video-dialog .e-rte-label:first-child {
|
|
1422
|
+
padding-top: 0;
|
|
1423
|
+
}
|
|
1424
|
+
|
|
1391
1425
|
.e-rte-table-resize.e-row-resize,
|
|
1392
1426
|
.e-rte-table-resize.e-column-resize {
|
|
1393
1427
|
background-color: transparent;
|
|
@@ -1592,15 +1626,15 @@
|
|
|
1592
1626
|
.e-rte-elements .e-rte-table-popup.e-popup-open .e-rte-tablecell {
|
|
1593
1627
|
border: 1px solid rgba(var(--color-sf-outline-variant));
|
|
1594
1628
|
display: inline-block;
|
|
1595
|
-
height:
|
|
1596
|
-
margin:
|
|
1629
|
+
height: 14px;
|
|
1630
|
+
margin: 1px;
|
|
1597
1631
|
overflow: hidden;
|
|
1598
1632
|
vertical-align: top;
|
|
1599
|
-
width:
|
|
1633
|
+
width: 14px;
|
|
1600
1634
|
}
|
|
1601
1635
|
.e-richtexteditor .e-rte-table-popup.e-popup-open .e-rte-table-row,
|
|
1602
1636
|
.e-rte-elements .e-rte-table-popup.e-popup-open .e-rte-table-row {
|
|
1603
|
-
height:
|
|
1637
|
+
height: 16px;
|
|
1604
1638
|
}
|
|
1605
1639
|
.e-richtexteditor .e-rte-table-popup.e-popup-open .e-insert-table-btn,
|
|
1606
1640
|
.e-rte-elements .e-rte-table-popup.e-popup-open .e-insert-table-btn {
|
|
@@ -2432,12 +2466,12 @@
|
|
|
2432
2466
|
}
|
|
2433
2467
|
|
|
2434
2468
|
.e-bigger .e-rte-table-popup.e-popup-open .e-rte-tablecell {
|
|
2435
|
-
height:
|
|
2436
|
-
width:
|
|
2469
|
+
height: 16px;
|
|
2470
|
+
width: 16px;
|
|
2437
2471
|
}
|
|
2438
2472
|
|
|
2439
2473
|
.e-bigger .e-rte-table-popup.e-popup-open .e-rte-table-row {
|
|
2440
|
-
height:
|
|
2474
|
+
height: 18px;
|
|
2441
2475
|
}
|
|
2442
2476
|
|
|
2443
2477
|
.e-table-rhelper {
|
|
@@ -2949,15 +2983,18 @@
|
|
|
2949
2983
|
.e-richtexteditor .e-clickelem::after,
|
|
2950
2984
|
.e-richtexteditor .e-video-clickelem::after {
|
|
2951
2985
|
background: transparent;
|
|
2952
|
-
bottom: 0;
|
|
2953
2986
|
content: "";
|
|
2954
2987
|
cursor: default;
|
|
2955
2988
|
display: block;
|
|
2956
|
-
left: 0;
|
|
2957
2989
|
position: absolute;
|
|
2958
|
-
|
|
2959
|
-
|
|
2960
|
-
|
|
2990
|
+
}
|
|
2991
|
+
.e-richtexteditor .e-clickelem::before,
|
|
2992
|
+
.e-richtexteditor .e-video-clickelem::before {
|
|
2993
|
+
background: transparent;
|
|
2994
|
+
content: "";
|
|
2995
|
+
cursor: default;
|
|
2996
|
+
display: block;
|
|
2997
|
+
position: absolute;
|
|
2961
2998
|
}
|
|
2962
2999
|
.e-richtexteditor .e-videoheader,
|
|
2963
3000
|
.e-richtexteditor .e-embed-videoheader,
|
|
@@ -155,6 +155,7 @@ $rte-insert-dialog-label-padding-bottom: 20px !default;
|
|
|
155
155
|
$rte-big-quick-tbar-item-min-height: 36px !default;
|
|
156
156
|
$rte-big-quick-tbar-item-min-width: 36px !default;
|
|
157
157
|
$rte-content-font-size: 14px !default;
|
|
158
|
+
$rte-big-content-font-size: 16px !default;
|
|
158
159
|
$rte-toolbar-icon-size: 16px !default;
|
|
159
160
|
$rte-toolbar-big-icon-size: 18px !default;
|
|
160
161
|
$rte-toolbar-hor-nav-border-width: 0 0 0 1px !default;
|
|
@@ -159,6 +159,7 @@ $rte-insert-dialog-label-padding-bottom: 20px !default;
|
|
|
159
159
|
$rte-big-quick-tbar-item-min-height: 36px !default;
|
|
160
160
|
$rte-big-quick-tbar-item-min-width: 36px !default;
|
|
161
161
|
$rte-content-font-size: 14px !default;
|
|
162
|
+
$rte-big-content-font-size: 16px !default;
|
|
162
163
|
$rte-dropdown-caret-icon-size: 12px !default;
|
|
163
164
|
$rte-big-dropdown-caret-icon-size: 12px !default;
|
|
164
165
|
$rte-toolbar-icon-size: 16px !default;
|
|
@@ -146,6 +146,7 @@ $rte-insert-dialog-label-padding-bottom: 14px !default;
|
|
|
146
146
|
$rte-big-quick-tbar-item-min-height: 38px !default;
|
|
147
147
|
$rte-big-quick-tbar-item-min-width: 38px !default;
|
|
148
148
|
$rte-content-font-size: 14px !default;
|
|
149
|
+
$rte-big-content-font-size: 16px !default;
|
|
149
150
|
$rte-table-popup-bdr-radius: 0 !default;
|
|
150
151
|
|
|
151
152
|
$rte-inline-dropdown-line-height: 30px !default;
|
|
@@ -68,7 +68,8 @@ $rte-insert-dialog-label-padding-top: 12px !default;
|
|
|
68
68
|
$rte-insert-dialog-label-padding-bottom: 12px !default;
|
|
69
69
|
$rte-big-quick-tbar-item-min-height: 38px !default;
|
|
70
70
|
$rte-big-quick-tbar-item-min-width: 38px !default;
|
|
71
|
-
$rte-content-font-size:
|
|
71
|
+
$rte-content-font-size: 14px !default;
|
|
72
|
+
$rte-big-content-font-size: 16px !default;
|
|
72
73
|
$rte-dropdown-caret-icon-size: $text-xs !default;
|
|
73
74
|
$rte-big-dropdown-caret-icon-size: $text-sm !default;
|
|
74
75
|
$font-weight: $font-weight-light !default;
|
|
@@ -158,6 +158,7 @@ $rte-insert-dialog-label-padding-bottom: 20px !default;
|
|
|
158
158
|
$rte-big-quick-tbar-item-min-height: 50px !default;
|
|
159
159
|
$rte-big-quick-tbar-item-min-width: 50px !default;
|
|
160
160
|
$rte-content-font-size: 14px !default;
|
|
161
|
+
$rte-big-content-font-size: 16px !default;
|
|
161
162
|
$rte-dropdown-caret-icon-size: 12px !default;
|
|
162
163
|
$rte-big-dropdown-caret-icon-size: 12px !default;
|
|
163
164
|
$rte-toolbar-icon-size: 16px !default;
|
|
@@ -161,6 +161,7 @@ $rte-insert-dialog-label-padding-bottom: 20px !default;
|
|
|
161
161
|
$rte-big-quick-tbar-item-min-height: 34px !default;
|
|
162
162
|
$rte-big-quick-tbar-item-min-width: 39px !default;
|
|
163
163
|
$rte-content-font-size: 14px !default;
|
|
164
|
+
$rte-big-content-font-size: 16px !default;
|
|
164
165
|
$rte-dropdown-caret-icon-size: 12px !default;
|
|
165
166
|
$rte-big-dropdown-caret-icon-size: 12px !default;
|
|
166
167
|
|
|
@@ -72,7 +72,8 @@ $rte-insert-dialog-label-padding-top: 12px !default;
|
|
|
72
72
|
$rte-insert-dialog-label-padding-bottom: 12px !default;
|
|
73
73
|
$rte-big-quick-tbar-item-min-height: 48px !default;
|
|
74
74
|
$rte-big-quick-tbar-item-min-width: 48px !default;
|
|
75
|
-
$rte-content-font-size:
|
|
75
|
+
$rte-content-font-size: 14px !default;
|
|
76
|
+
$rte-big-content-font-size: 16px !default;
|
|
76
77
|
$rte-dropdown-caret-icon-size: $text-xs !default;
|
|
77
78
|
$rte-big-dropdown-caret-icon-size: $text-sm !default;
|
|
78
79
|
$font-weight: $font-weight-normal !default;
|
|
@@ -68,7 +68,8 @@ $rte-insert-dialog-label-padding-top: 12px !default;
|
|
|
68
68
|
$rte-insert-dialog-label-padding-bottom: 12px !default;
|
|
69
69
|
$rte-big-quick-tbar-item-min-height: 34px !default;
|
|
70
70
|
$rte-big-quick-tbar-item-min-width: 39px !default;
|
|
71
|
-
$rte-content-font-size:
|
|
71
|
+
$rte-content-font-size: 14px !default;
|
|
72
|
+
$rte-big-content-font-size: 16px !default;
|
|
72
73
|
$rte-dropdown-caret-icon-size: $text-xs !default;
|
|
73
74
|
$rte-big-dropdown-caret-icon-size: $text-sm !default;
|
|
74
75
|
$rte-inline-dropdown-line-height: 0 !default;
|
|
@@ -162,6 +162,7 @@ $rte-insert-dialog-label-padding-bottom: 20px !default;
|
|
|
162
162
|
$rte-big-quick-tbar-item-min-height: 49px !default;
|
|
163
163
|
$rte-big-quick-tbar-item-min-width: 50px !default;
|
|
164
164
|
$rte-content-font-size: 14px !default;
|
|
165
|
+
$rte-big-content-font-size: 16px !default;
|
|
165
166
|
$rte-dropdown-caret-icon-size: 12px !default;
|
|
166
167
|
$rte-big-dropdown-caret-icon-size: 12px !default;
|
|
167
168
|
$rte-toolbar-icon-size: 16px !default;
|
|
@@ -158,6 +158,7 @@ $rte-insert-dialog-label-padding-bottom: 20px !default;
|
|
|
158
158
|
$rte-big-quick-tbar-item-min-height: 34px !default;
|
|
159
159
|
$rte-big-quick-tbar-item-min-width: 39px !default;
|
|
160
160
|
$rte-content-font-size: 14px !default;
|
|
161
|
+
$rte-big-content-font-size: 16px !default;
|
|
161
162
|
$rte-dropdown-caret-icon-size: 12px !default;
|
|
162
163
|
$rte-big-dropdown-caret-icon-size: 12px !default;
|
|
163
164
|
$rte-toolbar-icon-size: 16px !default;
|