@syncfusion/ej2-richtexteditor 20.1.61 → 20.2.39
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 +32 -0
- 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 +468 -191
- package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es5.js +460 -181
- 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/helpers/e2e/index.js +8 -6
- package/helpers/e2e/rte-helper.js +80 -64
- package/package.json +12 -12
- package/src/common/util.js +7 -8
- package/src/editor-manager/plugin/inserthtml.d.ts +1 -0
- package/src/editor-manager/plugin/inserthtml.js +25 -3
- package/src/editor-manager/plugin/lists.js +14 -4
- package/src/markdown-parser/base/constant.d.ts +6 -0
- package/src/markdown-parser/base/constant.js +6 -0
- package/src/markdown-parser/base/markdown-parser.d.ts +2 -0
- package/src/markdown-parser/base/markdown-parser.js +6 -0
- package/src/markdown-parser/base/types.d.ts +1 -1
- package/src/markdown-parser/plugin/insert-text.d.ts +22 -0
- package/src/markdown-parser/plugin/insert-text.js +51 -0
- package/src/rich-text-editor/actions/color-picker.js +20 -4
- package/src/rich-text-editor/actions/full-screen.js +4 -2
- package/src/rich-text-editor/actions/resize.js +4 -3
- package/src/rich-text-editor/actions/toolbar.js +4 -2
- package/src/rich-text-editor/base/classes.d.ts +5 -0
- package/src/rich-text-editor/base/classes.js +5 -0
- package/src/rich-text-editor/base/constant.d.ts +46 -1
- package/src/rich-text-editor/base/constant.js +46 -1
- package/src/rich-text-editor/base/interface.d.ts +2 -0
- package/src/rich-text-editor/base/rich-text-editor.d.ts +1 -0
- package/src/rich-text-editor/base/rich-text-editor.js +34 -27
- package/src/rich-text-editor/base/util.js +10 -6
- package/src/rich-text-editor/formatter/formatter.js +1 -1
- package/src/rich-text-editor/renderer/iframe-content-renderer.js +1 -1
- package/src/rich-text-editor/renderer/image-module.d.ts +1 -0
- package/src/rich-text-editor/renderer/image-module.js +58 -44
- package/src/rich-text-editor/renderer/link-module.js +16 -14
- package/src/rich-text-editor/renderer/markdown-renderer.js +2 -1
- package/src/rich-text-editor/renderer/table-module.d.ts +3 -0
- package/src/rich-text-editor/renderer/table-module.js +133 -56
- package/src/rich-text-editor/renderer/toolbar-renderer.js +13 -2
- package/src/rich-text-editor/renderer/view-source.js +1 -1
- package/styles/bootstrap-dark.css +49 -0
- package/styles/bootstrap.css +49 -0
- package/styles/bootstrap4.css +49 -0
- package/styles/bootstrap5-dark.css +49 -0
- package/styles/bootstrap5.css +49 -0
- package/styles/fabric-dark.css +49 -0
- package/styles/fabric.css +49 -0
- package/styles/fluent-dark.css +53 -3
- package/styles/fluent.css +50 -0
- package/styles/highcontrast-light.css +49 -0
- package/styles/highcontrast.css +49 -0
- package/styles/material-dark.css +49 -0
- package/styles/material.css +49 -0
- package/styles/rich-text-editor/_bootstrap-dark-definition.scss +17 -16
- package/styles/rich-text-editor/_bootstrap-definition.scss +17 -16
- package/styles/rich-text-editor/_bootstrap4-definition.scss +17 -16
- package/styles/rich-text-editor/_bootstrap5-definition.scss +17 -16
- package/styles/rich-text-editor/_fabric-dark-definition.scss +17 -16
- package/styles/rich-text-editor/_fabric-definition.scss +17 -16
- package/styles/rich-text-editor/_fluent-definition.scss +18 -16
- package/styles/rich-text-editor/_fusionnew-definition.scss +190 -0
- package/styles/rich-text-editor/_highcontrast-definition.scss +17 -16
- package/styles/rich-text-editor/_highcontrast-light-definition.scss +17 -16
- package/styles/rich-text-editor/_layout.scss +59 -0
- package/styles/rich-text-editor/_material-dark-definition.scss +17 -16
- package/styles/rich-text-editor/_material-definition.scss +17 -16
- package/styles/rich-text-editor/_material3-definition.scss +190 -0
- package/styles/rich-text-editor/_tailwind-definition.scss +17 -16
- package/styles/rich-text-editor/bootstrap-dark.css +49 -0
- package/styles/rich-text-editor/bootstrap.css +49 -0
- package/styles/rich-text-editor/bootstrap4.css +49 -0
- package/styles/rich-text-editor/bootstrap5-dark.css +49 -0
- package/styles/rich-text-editor/bootstrap5.css +49 -0
- package/styles/rich-text-editor/fabric-dark.css +49 -0
- package/styles/rich-text-editor/fabric.css +49 -0
- package/styles/rich-text-editor/fluent-dark.css +53 -3
- package/styles/rich-text-editor/fluent.css +50 -0
- package/styles/rich-text-editor/highcontrast-light.css +49 -0
- package/styles/rich-text-editor/highcontrast.css +49 -0
- package/styles/rich-text-editor/icons/_fusionnew.scss +303 -0
- package/styles/rich-text-editor/icons/_material3.scss +303 -0
- package/styles/rich-text-editor/material-dark.css +49 -0
- package/styles/rich-text-editor/material.css +49 -0
- package/styles/rich-text-editor/tailwind-dark.css +49 -0
- package/styles/rich-text-editor/tailwind.css +49 -0
- package/styles/tailwind-dark.css +49 -0
- package/styles/tailwind.css +49 -0
|
@@ -170,20 +170,21 @@ $rte-default-character-count-opacity: .54;
|
|
|
170
170
|
$rte-big-color-list-span-common-padding-left-right: 0;
|
|
171
171
|
$rte-placeholder-padding: 16px !default;
|
|
172
172
|
|
|
173
|
-
$rte-img-dlg-
|
|
174
|
-
$rte-
|
|
175
|
-
$rte-link-dlg-
|
|
176
|
-
$rte-
|
|
177
|
-
$rte-
|
|
178
|
-
$rte-
|
|
179
|
-
$rte-
|
|
180
|
-
$rte-
|
|
181
|
-
|
|
182
|
-
$rte-big-img-
|
|
183
|
-
$rte-img-
|
|
184
|
-
$rte-big-img-
|
|
185
|
-
$rte-
|
|
186
|
-
$rte-big-
|
|
187
|
-
$rte-file-browser-dlg-
|
|
188
|
-
$rte-big-
|
|
173
|
+
$rte-img-dlg-max-height: 403px !default;
|
|
174
|
+
$rte-img-alt-dlg-max-height: 403px !default;
|
|
175
|
+
$rte-img-link-dlg-max-height: 198px !default;
|
|
176
|
+
$rte-img-size-dlg-max-height: 260px !default;
|
|
177
|
+
$rte-link-dlg-max-height: 365px !default;
|
|
178
|
+
$rte-file-browser-dlg-max-height: 557px !default;
|
|
179
|
+
$rte-table-dlg-max-height: 250px !default;
|
|
180
|
+
$rte-edit-table-dlg-max-height: 321px !default;
|
|
181
|
+
|
|
182
|
+
$rte-big-img-dlg-max-height: 451px !default;
|
|
183
|
+
$rte-big-img-alt-dlg-max-height: 451px !default;
|
|
184
|
+
$rte-big-img-link-dlg-max-height: 250px !default;
|
|
185
|
+
$rte-big-img-size-dlg-max-height: 312px !default;
|
|
186
|
+
$rte-big-link-dlg-max-height: 437px !default;
|
|
187
|
+
$rte-big-file-browser-dlg-max-height: 557px !default;
|
|
188
|
+
$rte-big-table-dlg-max-height: 312px !default;
|
|
189
|
+
$rte-big-edit-table-dlg-max-height: 385px !default;
|
|
189
190
|
//enddefult
|
|
@@ -170,19 +170,20 @@ $rte-default-character-count-opacity: .54;
|
|
|
170
170
|
$rte-big-color-list-span-common-padding-left-right: 0;
|
|
171
171
|
$rte-placeholder-padding: 16px !default;
|
|
172
172
|
|
|
173
|
-
$rte-img-dlg-
|
|
174
|
-
$rte-
|
|
175
|
-
$rte-link-dlg-
|
|
176
|
-
$rte-
|
|
177
|
-
$rte-
|
|
178
|
-
$rte-
|
|
179
|
-
$rte-
|
|
180
|
-
$rte-
|
|
181
|
-
|
|
182
|
-
$rte-big-img-
|
|
183
|
-
$rte-img-
|
|
184
|
-
$rte-big-img-
|
|
185
|
-
$rte-
|
|
186
|
-
$rte-big-
|
|
187
|
-
$rte-file-browser-dlg-
|
|
188
|
-
$rte-big-
|
|
173
|
+
$rte-img-dlg-max-height: 403px !default;
|
|
174
|
+
$rte-img-alt-dlg-max-height: 403px !default;
|
|
175
|
+
$rte-img-link-dlg-max-height: 198px !default;
|
|
176
|
+
$rte-img-size-dlg-max-height: 260px !default;
|
|
177
|
+
$rte-link-dlg-max-height: 365px !default;
|
|
178
|
+
$rte-file-browser-dlg-max-height: 557px !default;
|
|
179
|
+
$rte-table-dlg-max-height: 250px !default;
|
|
180
|
+
$rte-edit-table-dlg-max-height: 321px !default;
|
|
181
|
+
|
|
182
|
+
$rte-big-img-dlg-max-height: 451px !default;
|
|
183
|
+
$rte-big-img-alt-dlg-max-height: 451px !default;
|
|
184
|
+
$rte-big-img-link-dlg-max-height: 250px !default;
|
|
185
|
+
$rte-big-img-size-dlg-max-height: 312px !default;
|
|
186
|
+
$rte-big-link-dlg-max-height: 437px !default;
|
|
187
|
+
$rte-big-file-browser-dlg-max-height: 557px !default;
|
|
188
|
+
$rte-big-table-dlg-max-height: 312px !default;
|
|
189
|
+
$rte-big-edit-table-dlg-max-height: 385px !default;
|
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
$skin-name: 'bootstrap5' !default;
|
|
2
|
+
//Layout Variables Start
|
|
3
|
+
$rte-border-size: 1px !default;
|
|
4
|
+
$rte-2px-border-size: 2px !default;
|
|
5
|
+
$rte-border-type: solid !default;
|
|
6
|
+
$rte-list-btn-flex: column !default;
|
|
7
|
+
$rte-list-btn-line-height: 1 !default;
|
|
8
|
+
$rte-split-btn-line-height: 20px !default;
|
|
9
|
+
$rte-big-split-btn-line-height: 30px !default;
|
|
10
|
+
$rte-big-quick-item-btn-width: 39px !default;
|
|
11
|
+
$rte-quick-item-btn-width: 27px !default;
|
|
12
|
+
$rte-big-quick-item-btn-height: 34px !default;
|
|
13
|
+
$rte-quick-item-btn-height: 26px !default;
|
|
14
|
+
$rte-big-quick-item-padding: 0 !default;
|
|
15
|
+
$rte-quick-item-padding: 0 !default;
|
|
16
|
+
$rte-quick-item-icon-min-width: 24px !default; // Clarify
|
|
17
|
+
$rte-big-quick-item-line-height: $leading-normal !default;
|
|
18
|
+
$rte-content-padding: 16px !default;
|
|
19
|
+
$rte-toolbar-icon-size: $text-base !default;
|
|
20
|
+
$rte-toolbar-big-icon-size: $text-lg !default;
|
|
21
|
+
$rte-big-quick-drop-btn-line-height: 33px !default;
|
|
22
|
+
$rte-quick-drop-btn-line-height: 24px !default;
|
|
23
|
+
$rte-big-quick-drop-btn-margin: 4px 0 !default;
|
|
24
|
+
$rte-quick-drop-btn-margin: 4px 0 !default;
|
|
25
|
+
$rte-big-quick-drop-btn-padding: 0 !default;
|
|
26
|
+
$rte-quick-drop-btn-padding: 1px 0 !default;
|
|
27
|
+
$rte-big-quick-drop-btn-icon-size: 16px !default;
|
|
28
|
+
$rte-quick-drop-btn-icon-size: 14px !default;
|
|
29
|
+
$rte-big-quick-drop-btn-caret-icon-size: 10px !default;
|
|
30
|
+
$rte-quick-drop-btn-caret-icon-size: 12px !default;
|
|
31
|
+
$rte-big-quick-drop-btn-caret-font-size: 12px !default;
|
|
32
|
+
$rte-quick-drop-btn-caret-font-size: 10px !default;
|
|
33
|
+
$rte-big-tb-items-margin-left: 3px !default;
|
|
34
|
+
$rte-tb-items-margin-left: 7px !default;
|
|
35
|
+
$rte-big-tb-items-padding-left: 3px !default;
|
|
36
|
+
$rte-tb-items-padding-left: 7px !default;
|
|
37
|
+
$rte-active-tb-item-btn-padding: 0 !default;
|
|
38
|
+
$rte-split-btn-bar-size: 0 !default;
|
|
39
|
+
$rte-split-btn-active-color-icon-line-height: 30px !default;
|
|
40
|
+
$rte-big-split-btn-active-color-icon-line-height: 37px !default;
|
|
41
|
+
$rte-format-btn-min-width: 75px !default;
|
|
42
|
+
$rte-font-name-btn-min-width: 67px !default;
|
|
43
|
+
$rte-font-size-btn-min-width: 36px !default;
|
|
44
|
+
$rte-drop-btn-padding-left: 7px !default;
|
|
45
|
+
$dropdown-btn-font-size: $text-sm;
|
|
46
|
+
$dropdown-btn-big-font-size: $text-base;
|
|
47
|
+
$rte-drop-btn-padding-right: 7px !default;
|
|
48
|
+
$rte-drop-btn-action-padding-left: 7px !default;
|
|
49
|
+
$rte-drop-btn-action-padding-right: 7px !default;
|
|
50
|
+
$rte-big-drop-btn-padding-left: 10px !default;
|
|
51
|
+
$rte-big-drop-btn-padding-right: 6px !default;
|
|
52
|
+
$rte-big-drop-btn-action-padding-left: 10px !default;
|
|
53
|
+
$rte-big-drop-btn-action-padding-right: 6px !default;
|
|
54
|
+
$rte-colorpicker-parent-padding: 0 !default;
|
|
55
|
+
$rte-colorpicker-parent-padding-hover: 0 !default;
|
|
56
|
+
$rte-colorpicker-parent-padding-active-hover: 0 !default;
|
|
57
|
+
$rte-font-icon-width: 30px !default;
|
|
58
|
+
$rte-font-arrow-width: 18px !default;
|
|
59
|
+
$rte-font-arrow-touch-width: 20px !default;
|
|
60
|
+
$rte-font-icon-line-height: $leading-tight !default;
|
|
61
|
+
$rte-placeholder-line-height: $leading-normal !default;
|
|
62
|
+
$rte-big-active-tb-item-btn-padding: 0 6px !default;
|
|
63
|
+
$rte-table-popup-padding: 10px !default;
|
|
64
|
+
$rte-insert-dialog-label-padding-top: 12px !default;
|
|
65
|
+
$rte-insert-dialog-label-padding-bottom: 12px !default;
|
|
66
|
+
$rte-big-quick-tbar-item-min-height: 34px !default;
|
|
67
|
+
$rte-big-quick-tbar-item-min-width: 39px !default;
|
|
68
|
+
$rte-content-font-size: $text-sm !default;
|
|
69
|
+
$rte-dropdown-caret-icon-size: $text-xs !default;
|
|
70
|
+
$rte-big-dropdown-caret-icon-size: $text-sm !default;
|
|
71
|
+
$font-weight: $font-weight-normal !default;
|
|
72
|
+
$rte-table-popup-bdr-radius: 6px !default;
|
|
73
|
+
$rte-resize-handler-width: 15px;
|
|
74
|
+
$rte-resize-handler-height: 15px;
|
|
75
|
+
$rte-resize-handler-position: 0;
|
|
76
|
+
$rte-big-inline-tmp-min-width: 48px;
|
|
77
|
+
$rte-inline-tmp-min-width: 55px;
|
|
78
|
+
$rte-big-inline-tmp-size-min-width: 59px;
|
|
79
|
+
$rte-inline-tmp-size-min-width: 66px;
|
|
80
|
+
$rte-big-inline-tmp-color-min-width: 50px;
|
|
81
|
+
$rte-inline-tmp-color-min-width: 55px;
|
|
82
|
+
$rte-big-color-list-span-common-padding-left-right: 0;
|
|
83
|
+
$rte-default-character-count-opacity: 1;
|
|
84
|
+
//Layout Variables End
|
|
85
|
+
|
|
86
|
+
//Theme Variables Start
|
|
87
|
+
$rte-split-btn-active-border: 0 !default;
|
|
88
|
+
$rte-border-color: $border-light !default;
|
|
89
|
+
$rte-content-bg: $content-bg-color !default;
|
|
90
|
+
$rte-full-screen-bg: $content-bg-color !default;
|
|
91
|
+
$rte-content-font-color: $content-text-color !default;
|
|
92
|
+
$rte-item-color: $content-text-color !default;
|
|
93
|
+
$rte-icons-color: $icon-color !default;
|
|
94
|
+
$rte-img-popup-border: 1px solid $border-light !default;
|
|
95
|
+
$rte-img-popup-box-shadow: $shadow !default;
|
|
96
|
+
$rte-img-popup-color: $border-light !default;
|
|
97
|
+
$rte-quick-item-active-bg: $secondary-bg-color-pressed !default;
|
|
98
|
+
$rte-quick-item-active-font-color: $secondary-text-color-hover !default;
|
|
99
|
+
$rte-quick-item-border: 0 !default;
|
|
100
|
+
$rte-quick-item-hover-border-color: $secondary-border-color-hover !default;
|
|
101
|
+
$rte-quick-item-active-border-color: $secondary-border-color-pressed !default;
|
|
102
|
+
$rte-quick-drop-btn-border-color: $content-bg-color-alt2 !default;
|
|
103
|
+
$rte-quick-drop-btn-hover-border-color: $content-bg-color-alt2 !default;
|
|
104
|
+
$rte-extended-toolbar-background: $content-bg-color-alt2 !default;
|
|
105
|
+
$rte-quick-pop-border: none !default;
|
|
106
|
+
$rte-quick-tb-border: 1px solid $border-light !default;
|
|
107
|
+
$rte-quick-pop-bg: $content-bg-color-alt2 !default;
|
|
108
|
+
$rte-quick-vr-line-color: $border-light !default;
|
|
109
|
+
$rte-quick-pop-shadow: none !default;
|
|
110
|
+
$rte-quick-pop-item-focus-bg: $secondary-bg-color-pressed !default;
|
|
111
|
+
$rte-quick-tb-btn-hover: $secondary-bg-color-hover !default;
|
|
112
|
+
$rte-tb-item-active-bg: $secondary-bg-color-pressed !default;
|
|
113
|
+
$rte-tb-active-font-color: $white !default;
|
|
114
|
+
$rte-tb-item-active-border: 1px solid $secondary-border-color-pressed !default;
|
|
115
|
+
$rte-expand-tb-border-bottom: $rte-border-size $rte-border-type $border-light !default;
|
|
116
|
+
$rte-color-picker-active-bg: inherit !default;
|
|
117
|
+
$rte-drop-btn-active-bg: $secondary-bg-color-pressed !default;
|
|
118
|
+
$rte-drop-btn-active-color: $white !default;
|
|
119
|
+
$rte-drop-btn-active-border-color: $secondary-border-color-pressed !default;
|
|
120
|
+
$rte-split-btn-active-hover-font-color: $white !default;
|
|
121
|
+
$rte-split-btn-color: $secondary-bg-color-pressed !default;
|
|
122
|
+
$rte-split-btn-active-color: $white !default;
|
|
123
|
+
$rte-split-btn-hover-bg: $secondary-bg-color-hover !default;
|
|
124
|
+
$rte-split-btn-active-bg: $secondary-bg-color-pressed !default;
|
|
125
|
+
$rte-split-btn-span-hover-bg: $secondary-bg-color-hover !default;
|
|
126
|
+
$rte-split-btn-span-focus-bg: $secondary-bg-color-pressed !default;
|
|
127
|
+
$rte-split-btn-span-active-bg: $secondary-bg-color-pressed !default;
|
|
128
|
+
$rte-split-btn-bar-bg: $content-bg-color !default;
|
|
129
|
+
$rte-split-btn-active-bar-bg: $content-bg-color !default;
|
|
130
|
+
$rte-split-btn-bar-size: 0 !default;
|
|
131
|
+
$rte-split-btn-active-border: 0 !default;
|
|
132
|
+
$rte-split-btn-active-color-icon-line-height: 30px !default;
|
|
133
|
+
$rte-big-split-btn-active-color-icon-line-height: 38px !default;
|
|
134
|
+
|
|
135
|
+
$rte-link-valid-color: $danger !default;
|
|
136
|
+
$rte-upload-drag-border-clr: $border-dark !default;
|
|
137
|
+
$rte-img-header-clr: $content-text-color !default;
|
|
138
|
+
$rte-drop-text-clr: $content-text-color-alt2 !default;
|
|
139
|
+
$rte-default-character-count-color: $placeholder-text-color !default;
|
|
140
|
+
$rte-warning-character-count-color: $warning !default;
|
|
141
|
+
$rte-error-character-count-color: $danger !default;
|
|
142
|
+
$rte-img-border: dashed 2px $primary !default;
|
|
143
|
+
$rte-font-family: $font-family !default;
|
|
144
|
+
$rte-content-color: $content-text-color !default;
|
|
145
|
+
$rte-content-blockquote-border-left-color: solid 2px $content-text-color !default;
|
|
146
|
+
$rte-dropdown-selection-bgcolor: $secondary-bg-color-pressed !default;
|
|
147
|
+
$rte-ext-tbar-overlay-icons-color: $icon-color-disabled !default;
|
|
148
|
+
$rte-overlay-color: $overlay-bg-color !default;
|
|
149
|
+
$rte-dropdown-selection-color: $secondary-text-color-pressed !default;
|
|
150
|
+
$rte-anchor-color: $primary !default;
|
|
151
|
+
$rte-ext-tbar-overlay-dropdown-color: $content-bg-color-alt4 !default;
|
|
152
|
+
$rte-img-resize-back-color: $primary !default;
|
|
153
|
+
$rte-img-resize-color: $primary-text-color !default;
|
|
154
|
+
$rte-table-header-color: $content-text-color-alt1 !default;
|
|
155
|
+
$rte-table-span-bg-color: $content-bg-color !default;
|
|
156
|
+
$rte-table-span-border: 1px solid $border-light !default;
|
|
157
|
+
$rte-table-span-active-bg-color: $primary-lighter !default;
|
|
158
|
+
$rte-table-span-active-border-color: $primary !default;
|
|
159
|
+
$rte-table-select-border-color: $primary !default;
|
|
160
|
+
$rte-table-popup-bg: $flyout-bg-color !default;
|
|
161
|
+
$rte-table-popup-color: $border-light !default;
|
|
162
|
+
$rte-table-popup-box: $shadow !default;
|
|
163
|
+
$rte-table-border-color: $border-light !default;
|
|
164
|
+
$rte-table-alternate-color: $content-bg-color-alt1 !default;
|
|
165
|
+
$rte-table-header-bg: $content-bg-color-alt1 !default;
|
|
166
|
+
//Theme Variables End
|
|
167
|
+
|
|
168
|
+
$rte-tb-hover-font-color: $secondary-text-color-hover;
|
|
169
|
+
$transparent: $transparent;
|
|
170
|
+
$rte-placeholder-padding: 16px !default;
|
|
171
|
+
|
|
172
|
+
$rte-img-dlg-max-height: 390px !default;
|
|
173
|
+
$rte-img-alt-dlg-max-height: 390px !default;
|
|
174
|
+
$rte-img-link-dlg-max-height: 191px !default;
|
|
175
|
+
$rte-img-size-dlg-max-height: 256px !default;
|
|
176
|
+
$rte-link-dlg-max-height: 353px !default;
|
|
177
|
+
$rte-file-browser-dlg-max-height: 557px !default;
|
|
178
|
+
$rte-table-dlg-max-height: 252px !default;
|
|
179
|
+
$rte-edit-table-dlg-max-height: 320px !default;
|
|
180
|
+
|
|
181
|
+
$rte-big-img-dlg-max-height: 425px !default;
|
|
182
|
+
$rte-big-img-alt-dlg-max-height: 425px !default;
|
|
183
|
+
$rte-big-img-link-dlg-max-height: 229px !default;
|
|
184
|
+
$rte-big-img-size-dlg-max-height: 309px !default;
|
|
185
|
+
$rte-big-link-dlg-max-height: 400px !default;
|
|
186
|
+
$rte-big-file-browser-dlg-max-height: 557px !default;
|
|
187
|
+
$rte-big-table-dlg-max-height: 299px !default;
|
|
188
|
+
$rte-big-edit-table-dlg-max-height: 373px !default;
|
|
189
|
+
$toolbar-expand-icon-min-height: 40px !default;
|
|
190
|
+
$rte-align-caret-icon-min-width: 24px !default;
|
|
@@ -169,19 +169,20 @@ $rte-table-header-bg: $content-bg-color-alt1 !default;
|
|
|
169
169
|
|
|
170
170
|
$rte-tb-hover-bg-color: $content-bg-color-alt1 !default;
|
|
171
171
|
|
|
172
|
-
$rte-img-dlg-
|
|
173
|
-
$rte-
|
|
174
|
-
$rte-link-dlg-
|
|
175
|
-
$rte-
|
|
176
|
-
$rte-
|
|
177
|
-
$rte-
|
|
178
|
-
$rte-
|
|
179
|
-
$rte-
|
|
180
|
-
|
|
181
|
-
$rte-big-img-
|
|
182
|
-
$rte-img-
|
|
183
|
-
$rte-big-img-
|
|
184
|
-
$rte-
|
|
185
|
-
$rte-big-
|
|
186
|
-
$rte-file-browser-dlg-
|
|
187
|
-
$rte-big-
|
|
172
|
+
$rte-img-dlg-max-height: 363px !default;
|
|
173
|
+
$rte-img-alt-dlg-max-height: 363px !default;
|
|
174
|
+
$rte-img-link-dlg-max-height: 173px !default;
|
|
175
|
+
$rte-img-size-dlg-max-height: 236px !default;
|
|
176
|
+
$rte-link-dlg-max-height: 331px !default;
|
|
177
|
+
$rte-file-browser-dlg-max-height: 557px !default;
|
|
178
|
+
$rte-table-dlg-max-height: 232px !default;
|
|
179
|
+
$rte-edit-table-dlg-max-height: 340px !default;
|
|
180
|
+
|
|
181
|
+
$rte-big-img-dlg-max-height: 397px !default;
|
|
182
|
+
$rte-big-img-alt-dlg-max-height: 397px !default;
|
|
183
|
+
$rte-big-img-link-dlg-max-height: 211px !default;
|
|
184
|
+
$rte-big-img-size-dlg-max-height: 293px !default;
|
|
185
|
+
$rte-big-link-dlg-max-height: 378px !default;
|
|
186
|
+
$rte-big-file-browser-dlg-max-height: 557px !default;
|
|
187
|
+
$rte-big-table-dlg-max-height: 283px !default;
|
|
188
|
+
$rte-big-edit-table-dlg-max-height: 388px !default;
|
|
@@ -417,6 +417,34 @@
|
|
|
417
417
|
.e-richtexteditor.e-bigger.e-rte-full-screen iframe {
|
|
418
418
|
height: calc(100% - 56px);
|
|
419
419
|
}
|
|
420
|
+
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-edit-table,
|
|
421
|
+
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-edit-table {
|
|
422
|
+
max-height: 330px !important;
|
|
423
|
+
}
|
|
424
|
+
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-edit-table-prop-dialog,
|
|
425
|
+
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-edit-table-prop-dialog {
|
|
426
|
+
max-height: 414px !important;
|
|
427
|
+
}
|
|
428
|
+
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-link-dialog,
|
|
429
|
+
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-link-dialog {
|
|
430
|
+
max-height: 427px !important;
|
|
431
|
+
}
|
|
432
|
+
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-dialog,
|
|
433
|
+
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-dialog {
|
|
434
|
+
min-height: 457px !important;
|
|
435
|
+
}
|
|
436
|
+
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-link-dialog,
|
|
437
|
+
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-link-dialog {
|
|
438
|
+
max-height: 256px !important;
|
|
439
|
+
}
|
|
440
|
+
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-size-dialog,
|
|
441
|
+
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-size-dialog {
|
|
442
|
+
max-height: 327px !important;
|
|
443
|
+
}
|
|
444
|
+
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-alt-dialog,
|
|
445
|
+
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-alt-dialog {
|
|
446
|
+
min-height: 457px !important;
|
|
447
|
+
}
|
|
420
448
|
|
|
421
449
|
.e-richtexteditor {
|
|
422
450
|
color: #f0f0f0;
|
|
@@ -456,6 +484,27 @@
|
|
|
456
484
|
.e-richtexteditor.e-rte-full-screen iframe {
|
|
457
485
|
height: calc(100% - 42px);
|
|
458
486
|
}
|
|
487
|
+
.e-richtexteditor.e-rte-full-screen .e-rte-edit-table {
|
|
488
|
+
max-height: 287px !important;
|
|
489
|
+
}
|
|
490
|
+
.e-richtexteditor.e-rte-full-screen .e-rte-edit-table-prop-dialog {
|
|
491
|
+
max-height: 365px !important;
|
|
492
|
+
}
|
|
493
|
+
.e-richtexteditor.e-rte-full-screen .e-rte-link-dialog {
|
|
494
|
+
max-height: 394px !important;
|
|
495
|
+
}
|
|
496
|
+
.e-richtexteditor.e-rte-full-screen .e-rte-img-dialog {
|
|
497
|
+
max-height: 426px !important;
|
|
498
|
+
}
|
|
499
|
+
.e-richtexteditor.e-rte-full-screen .e-rte-img-link-dialog {
|
|
500
|
+
max-height: 223px !important;
|
|
501
|
+
}
|
|
502
|
+
.e-richtexteditor.e-rte-full-screen .e-rte-img-size-dialog {
|
|
503
|
+
max-height: 284px !important;
|
|
504
|
+
}
|
|
505
|
+
.e-richtexteditor.e-rte-full-screen .e-rte-img-alt-dialog {
|
|
506
|
+
max-height: 426px !important;
|
|
507
|
+
}
|
|
459
508
|
.e-richtexteditor.e-rtl .e-rte-character-count {
|
|
460
509
|
left: 0;
|
|
461
510
|
padding-left: 30px;
|
|
@@ -558,6 +558,34 @@
|
|
|
558
558
|
.e-richtexteditor.e-bigger.e-rte-full-screen iframe {
|
|
559
559
|
height: calc(100% - 56px);
|
|
560
560
|
}
|
|
561
|
+
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-edit-table,
|
|
562
|
+
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-edit-table {
|
|
563
|
+
max-height: 330px !important;
|
|
564
|
+
}
|
|
565
|
+
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-edit-table-prop-dialog,
|
|
566
|
+
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-edit-table-prop-dialog {
|
|
567
|
+
max-height: 414px !important;
|
|
568
|
+
}
|
|
569
|
+
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-link-dialog,
|
|
570
|
+
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-link-dialog {
|
|
571
|
+
max-height: 427px !important;
|
|
572
|
+
}
|
|
573
|
+
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-dialog,
|
|
574
|
+
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-dialog {
|
|
575
|
+
min-height: 457px !important;
|
|
576
|
+
}
|
|
577
|
+
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-link-dialog,
|
|
578
|
+
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-link-dialog {
|
|
579
|
+
max-height: 256px !important;
|
|
580
|
+
}
|
|
581
|
+
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-size-dialog,
|
|
582
|
+
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-size-dialog {
|
|
583
|
+
max-height: 327px !important;
|
|
584
|
+
}
|
|
585
|
+
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-alt-dialog,
|
|
586
|
+
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-alt-dialog {
|
|
587
|
+
min-height: 457px !important;
|
|
588
|
+
}
|
|
561
589
|
|
|
562
590
|
.e-richtexteditor {
|
|
563
591
|
color: #333;
|
|
@@ -597,6 +625,27 @@
|
|
|
597
625
|
.e-richtexteditor.e-rte-full-screen iframe {
|
|
598
626
|
height: calc(100% - 42px);
|
|
599
627
|
}
|
|
628
|
+
.e-richtexteditor.e-rte-full-screen .e-rte-edit-table {
|
|
629
|
+
max-height: 287px !important;
|
|
630
|
+
}
|
|
631
|
+
.e-richtexteditor.e-rte-full-screen .e-rte-edit-table-prop-dialog {
|
|
632
|
+
max-height: 365px !important;
|
|
633
|
+
}
|
|
634
|
+
.e-richtexteditor.e-rte-full-screen .e-rte-link-dialog {
|
|
635
|
+
max-height: 394px !important;
|
|
636
|
+
}
|
|
637
|
+
.e-richtexteditor.e-rte-full-screen .e-rte-img-dialog {
|
|
638
|
+
max-height: 426px !important;
|
|
639
|
+
}
|
|
640
|
+
.e-richtexteditor.e-rte-full-screen .e-rte-img-link-dialog {
|
|
641
|
+
max-height: 223px !important;
|
|
642
|
+
}
|
|
643
|
+
.e-richtexteditor.e-rte-full-screen .e-rte-img-size-dialog {
|
|
644
|
+
max-height: 284px !important;
|
|
645
|
+
}
|
|
646
|
+
.e-richtexteditor.e-rte-full-screen .e-rte-img-alt-dialog {
|
|
647
|
+
max-height: 426px !important;
|
|
648
|
+
}
|
|
600
649
|
.e-richtexteditor.e-rtl .e-rte-character-count {
|
|
601
650
|
left: 0;
|
|
602
651
|
padding-left: 30px;
|
|
@@ -653,6 +653,34 @@
|
|
|
653
653
|
.e-richtexteditor.e-bigger.e-rte-full-screen iframe {
|
|
654
654
|
height: calc(100% - 56px);
|
|
655
655
|
}
|
|
656
|
+
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-edit-table,
|
|
657
|
+
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-edit-table {
|
|
658
|
+
max-height: 302px !important;
|
|
659
|
+
}
|
|
660
|
+
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-edit-table-prop-dialog,
|
|
661
|
+
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-edit-table-prop-dialog {
|
|
662
|
+
max-height: 378px !important;
|
|
663
|
+
}
|
|
664
|
+
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-link-dialog,
|
|
665
|
+
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-link-dialog {
|
|
666
|
+
max-height: 404px !important;
|
|
667
|
+
}
|
|
668
|
+
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-dialog,
|
|
669
|
+
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-dialog {
|
|
670
|
+
min-height: 428px !important;
|
|
671
|
+
}
|
|
672
|
+
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-link-dialog,
|
|
673
|
+
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-link-dialog {
|
|
674
|
+
max-height: 231px !important;
|
|
675
|
+
}
|
|
676
|
+
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-size-dialog,
|
|
677
|
+
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-size-dialog {
|
|
678
|
+
max-height: 312px !important;
|
|
679
|
+
}
|
|
680
|
+
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-alt-dialog,
|
|
681
|
+
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-alt-dialog {
|
|
682
|
+
min-height: 428px !important;
|
|
683
|
+
}
|
|
656
684
|
|
|
657
685
|
.e-richtexteditor {
|
|
658
686
|
color: #212529;
|
|
@@ -692,6 +720,27 @@
|
|
|
692
720
|
.e-richtexteditor.e-rte-full-screen iframe {
|
|
693
721
|
height: calc(100% - 42px);
|
|
694
722
|
}
|
|
723
|
+
.e-richtexteditor.e-rte-full-screen .e-rte-edit-table {
|
|
724
|
+
max-height: 264px !important;
|
|
725
|
+
}
|
|
726
|
+
.e-richtexteditor.e-rte-full-screen .e-rte-edit-table-prop-dialog {
|
|
727
|
+
max-height: 333px !important;
|
|
728
|
+
}
|
|
729
|
+
.e-richtexteditor.e-rte-full-screen .e-rte-link-dialog {
|
|
730
|
+
max-height: 368px !important;
|
|
731
|
+
}
|
|
732
|
+
.e-richtexteditor.e-rte-full-screen .e-rte-img-dialog {
|
|
733
|
+
max-height: 405px !important;
|
|
734
|
+
}
|
|
735
|
+
.e-richtexteditor.e-rte-full-screen .e-rte-img-link-dialog {
|
|
736
|
+
max-height: 204px !important;
|
|
737
|
+
}
|
|
738
|
+
.e-richtexteditor.e-rte-full-screen .e-rte-img-size-dialog {
|
|
739
|
+
max-height: 268px !important;
|
|
740
|
+
}
|
|
741
|
+
.e-richtexteditor.e-rte-full-screen .e-rte-img-alt-dialog {
|
|
742
|
+
max-height: 405px !important;
|
|
743
|
+
}
|
|
695
744
|
.e-richtexteditor.e-rtl .e-rte-character-count {
|
|
696
745
|
left: 0;
|
|
697
746
|
padding-left: 30px;
|
|
@@ -416,6 +416,34 @@
|
|
|
416
416
|
.e-richtexteditor.e-bigger.e-rte-full-screen iframe {
|
|
417
417
|
height: calc(100% - 56px);
|
|
418
418
|
}
|
|
419
|
+
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-edit-table,
|
|
420
|
+
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-edit-table {
|
|
421
|
+
max-height: 299px !important;
|
|
422
|
+
}
|
|
423
|
+
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-edit-table-prop-dialog,
|
|
424
|
+
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-edit-table-prop-dialog {
|
|
425
|
+
max-height: 373px !important;
|
|
426
|
+
}
|
|
427
|
+
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-link-dialog,
|
|
428
|
+
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-link-dialog {
|
|
429
|
+
max-height: 400px !important;
|
|
430
|
+
}
|
|
431
|
+
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-dialog,
|
|
432
|
+
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-dialog {
|
|
433
|
+
min-height: 425px !important;
|
|
434
|
+
}
|
|
435
|
+
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-link-dialog,
|
|
436
|
+
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-link-dialog {
|
|
437
|
+
max-height: 229px !important;
|
|
438
|
+
}
|
|
439
|
+
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-size-dialog,
|
|
440
|
+
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-size-dialog {
|
|
441
|
+
max-height: 309px !important;
|
|
442
|
+
}
|
|
443
|
+
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-alt-dialog,
|
|
444
|
+
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-alt-dialog {
|
|
445
|
+
min-height: 425px !important;
|
|
446
|
+
}
|
|
419
447
|
|
|
420
448
|
.e-richtexteditor {
|
|
421
449
|
color: #fff;
|
|
@@ -455,6 +483,27 @@
|
|
|
455
483
|
.e-richtexteditor.e-rte-full-screen iframe {
|
|
456
484
|
height: calc(100% - 42px);
|
|
457
485
|
}
|
|
486
|
+
.e-richtexteditor.e-rte-full-screen .e-rte-edit-table {
|
|
487
|
+
max-height: 252px !important;
|
|
488
|
+
}
|
|
489
|
+
.e-richtexteditor.e-rte-full-screen .e-rte-edit-table-prop-dialog {
|
|
490
|
+
max-height: 320px !important;
|
|
491
|
+
}
|
|
492
|
+
.e-richtexteditor.e-rte-full-screen .e-rte-link-dialog {
|
|
493
|
+
max-height: 353px !important;
|
|
494
|
+
}
|
|
495
|
+
.e-richtexteditor.e-rte-full-screen .e-rte-img-dialog {
|
|
496
|
+
max-height: 390px !important;
|
|
497
|
+
}
|
|
498
|
+
.e-richtexteditor.e-rte-full-screen .e-rte-img-link-dialog {
|
|
499
|
+
max-height: 191px !important;
|
|
500
|
+
}
|
|
501
|
+
.e-richtexteditor.e-rte-full-screen .e-rte-img-size-dialog {
|
|
502
|
+
max-height: 256px !important;
|
|
503
|
+
}
|
|
504
|
+
.e-richtexteditor.e-rte-full-screen .e-rte-img-alt-dialog {
|
|
505
|
+
max-height: 390px !important;
|
|
506
|
+
}
|
|
458
507
|
.e-richtexteditor.e-rtl .e-rte-character-count {
|
|
459
508
|
left: 0;
|
|
460
509
|
padding-left: 30px;
|
|
@@ -416,6 +416,34 @@
|
|
|
416
416
|
.e-richtexteditor.e-bigger.e-rte-full-screen iframe {
|
|
417
417
|
height: calc(100% - 56px);
|
|
418
418
|
}
|
|
419
|
+
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-edit-table,
|
|
420
|
+
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-edit-table {
|
|
421
|
+
max-height: 299px !important;
|
|
422
|
+
}
|
|
423
|
+
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-edit-table-prop-dialog,
|
|
424
|
+
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-edit-table-prop-dialog {
|
|
425
|
+
max-height: 373px !important;
|
|
426
|
+
}
|
|
427
|
+
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-link-dialog,
|
|
428
|
+
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-link-dialog {
|
|
429
|
+
max-height: 400px !important;
|
|
430
|
+
}
|
|
431
|
+
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-dialog,
|
|
432
|
+
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-dialog {
|
|
433
|
+
min-height: 425px !important;
|
|
434
|
+
}
|
|
435
|
+
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-link-dialog,
|
|
436
|
+
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-link-dialog {
|
|
437
|
+
max-height: 229px !important;
|
|
438
|
+
}
|
|
439
|
+
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-size-dialog,
|
|
440
|
+
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-size-dialog {
|
|
441
|
+
max-height: 309px !important;
|
|
442
|
+
}
|
|
443
|
+
.e-bigger .e-richtexteditor.e-rte-full-screen .e-rte-img-alt-dialog,
|
|
444
|
+
.e-richtexteditor.e-bigger.e-rte-full-screen .e-rte-img-alt-dialog {
|
|
445
|
+
min-height: 425px !important;
|
|
446
|
+
}
|
|
419
447
|
|
|
420
448
|
.e-richtexteditor {
|
|
421
449
|
color: #212529;
|
|
@@ -455,6 +483,27 @@
|
|
|
455
483
|
.e-richtexteditor.e-rte-full-screen iframe {
|
|
456
484
|
height: calc(100% - 42px);
|
|
457
485
|
}
|
|
486
|
+
.e-richtexteditor.e-rte-full-screen .e-rte-edit-table {
|
|
487
|
+
max-height: 252px !important;
|
|
488
|
+
}
|
|
489
|
+
.e-richtexteditor.e-rte-full-screen .e-rte-edit-table-prop-dialog {
|
|
490
|
+
max-height: 320px !important;
|
|
491
|
+
}
|
|
492
|
+
.e-richtexteditor.e-rte-full-screen .e-rte-link-dialog {
|
|
493
|
+
max-height: 353px !important;
|
|
494
|
+
}
|
|
495
|
+
.e-richtexteditor.e-rte-full-screen .e-rte-img-dialog {
|
|
496
|
+
max-height: 390px !important;
|
|
497
|
+
}
|
|
498
|
+
.e-richtexteditor.e-rte-full-screen .e-rte-img-link-dialog {
|
|
499
|
+
max-height: 191px !important;
|
|
500
|
+
}
|
|
501
|
+
.e-richtexteditor.e-rte-full-screen .e-rte-img-size-dialog {
|
|
502
|
+
max-height: 256px !important;
|
|
503
|
+
}
|
|
504
|
+
.e-richtexteditor.e-rte-full-screen .e-rte-img-alt-dialog {
|
|
505
|
+
max-height: 390px !important;
|
|
506
|
+
}
|
|
458
507
|
.e-richtexteditor.e-rtl .e-rte-character-count {
|
|
459
508
|
left: 0;
|
|
460
509
|
padding-left: 30px;
|