@syncfusion/ej2-richtexteditor 24.1.41-569421 → 24.1.41-581025
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 +0 -176
- package/dist/ej2-richtexteditor.umd.min.js +1 -1
- package/dist/ej2-richtexteditor.umd.min.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es2015.js +7822 -9502
- package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es5.js +5674 -7355
- package/dist/es6/ej2-richtexteditor.es5.js.map +1 -1
- package/package.json +12 -12
- package/src/common/config.d.ts +0 -7
- package/src/common/config.js +0 -11
- package/src/common/constant.d.ts +0 -6
- package/src/common/constant.js +0 -6
- package/src/common/interface.d.ts +0 -12
- package/src/common/types.d.ts +0 -6
- package/src/common/util.d.ts +0 -6
- package/src/common/util.js +20 -61
- package/src/editor-manager/base/constant.d.ts +0 -6
- package/src/editor-manager/base/constant.js +0 -6
- package/src/editor-manager/base/editor-manager.d.ts +0 -5
- package/src/editor-manager/base/editor-manager.js +0 -59
- package/src/editor-manager/base/interface.d.ts +0 -8
- package/src/editor-manager/plugin/dom-node.d.ts +1 -5
- package/src/editor-manager/plugin/dom-node.js +15 -169
- package/src/editor-manager/plugin/format-painter-actions.d.ts +0 -1
- package/src/editor-manager/plugin/format-painter-actions.js +1 -19
- package/src/editor-manager/plugin/formats.d.ts +0 -1
- package/src/editor-manager/plugin/formats.js +3 -38
- package/src/editor-manager/plugin/image.js +16 -12
- package/src/editor-manager/plugin/indents.js +1 -1
- package/src/editor-manager/plugin/inserthtml.d.ts +0 -1
- package/src/editor-manager/plugin/inserthtml.js +18 -78
- package/src/editor-manager/plugin/link.js +3 -8
- package/src/editor-manager/plugin/lists.js +70 -159
- package/src/editor-manager/plugin/ms-word-clean-up.d.ts +0 -3
- package/src/editor-manager/plugin/ms-word-clean-up.js +85 -212
- package/src/editor-manager/plugin/nodecutter.js +2 -5
- package/src/editor-manager/plugin/selection-commands.d.ts +0 -2
- package/src/editor-manager/plugin/selection-commands.js +4 -209
- package/src/editor-manager/plugin/table.d.ts +1 -4
- package/src/editor-manager/plugin/table.js +49 -95
- package/src/editor-manager/plugin/toolbar-status.d.ts +2 -2
- package/src/editor-manager/plugin/toolbar-status.js +10 -20
- package/src/editor-manager/plugin/undo.d.ts +0 -1
- package/src/editor-manager/plugin/undo.js +1 -21
- package/src/rich-text-editor/actions/base-quick-toolbar.d.ts +3 -4
- package/src/rich-text-editor/actions/base-quick-toolbar.js +10 -43
- package/src/rich-text-editor/actions/base-toolbar.js +34 -33
- package/src/rich-text-editor/actions/color-picker.d.ts +0 -1
- package/src/rich-text-editor/actions/color-picker.js +0 -10
- package/src/rich-text-editor/actions/count.js +1 -1
- package/src/rich-text-editor/actions/dropdown-buttons.d.ts +0 -1
- package/src/rich-text-editor/actions/dropdown-buttons.js +4 -8
- package/src/rich-text-editor/actions/emoji-picker.js +4 -4
- package/src/rich-text-editor/actions/enter-key.js +4 -8
- package/src/rich-text-editor/actions/format-painter.js +1 -4
- package/src/rich-text-editor/actions/full-screen.js +2 -3
- package/src/rich-text-editor/actions/html-editor.d.ts +2 -2
- package/src/rich-text-editor/actions/html-editor.js +42 -123
- package/src/rich-text-editor/actions/keyboard.js +1 -3
- package/src/rich-text-editor/actions/markdown-editor.js +1 -3
- package/src/rich-text-editor/actions/paste-clean-up.d.ts +0 -3
- package/src/rich-text-editor/actions/paste-clean-up.js +14 -85
- package/src/rich-text-editor/actions/quick-toolbar.d.ts +0 -8
- package/src/rich-text-editor/actions/quick-toolbar.js +9 -37
- package/src/rich-text-editor/actions/resize.js +1 -2
- package/src/rich-text-editor/actions/toolbar-action.js +1 -1
- package/src/rich-text-editor/actions/toolbar.d.ts +3 -2
- package/src/rich-text-editor/actions/toolbar.js +87 -18
- 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 +0 -40
- package/src/rich-text-editor/base/constant.js +0 -209
- package/src/rich-text-editor/base/interface.d.ts +3 -37
- package/src/rich-text-editor/base/rich-text-editor-model.d.ts +3 -3
- package/src/rich-text-editor/base/rich-text-editor.d.ts +4 -7
- package/src/rich-text-editor/base/rich-text-editor.js +132 -156
- package/src/rich-text-editor/base/util.js +2 -11
- package/src/rich-text-editor/formatter/formatter.js +4 -16
- package/src/rich-text-editor/models/default-locale.js +26 -30
- package/src/rich-text-editor/models/items.js +2 -2
- package/src/rich-text-editor/models/toolbar-settings-model.d.ts +1 -1
- package/src/rich-text-editor/models/toolbar-settings.d.ts +1 -1
- package/src/rich-text-editor/models/toolbar-settings.js +1 -1
- package/src/rich-text-editor/renderer/audio-module.d.ts +0 -1
- package/src/rich-text-editor/renderer/audio-module.js +4 -22
- package/src/rich-text-editor/renderer/dialog-renderer.d.ts +0 -2
- package/src/rich-text-editor/renderer/dialog-renderer.js +1 -12
- package/src/rich-text-editor/renderer/iframe-content-renderer.js +1 -2
- package/src/rich-text-editor/renderer/image-module.d.ts +1 -9
- package/src/rich-text-editor/renderer/image-module.js +168 -203
- package/src/rich-text-editor/renderer/link-module.js +1 -10
- package/src/rich-text-editor/renderer/table-module.d.ts +1 -8
- package/src/rich-text-editor/renderer/table-module.js +139 -301
- package/src/rich-text-editor/renderer/toolbar-renderer.d.ts +0 -3
- package/src/rich-text-editor/renderer/toolbar-renderer.js +9 -94
- package/src/rich-text-editor/renderer/video-module.d.ts +0 -3
- package/src/rich-text-editor/renderer/video-module.js +41 -82
- package/src/rich-text-editor/renderer/view-source.d.ts +0 -1
- package/src/rich-text-editor/renderer/view-source.js +4 -12
- package/src/selection/selection.js +0 -3
- package/styles/bootstrap-dark.css +53 -161
- package/styles/bootstrap.css +61 -162
- package/styles/bootstrap4.css +46 -146
- package/styles/bootstrap5-dark.css +46 -151
- package/styles/bootstrap5.css +46 -151
- package/styles/fabric-dark.css +40 -140
- package/styles/fabric.css +41 -141
- package/styles/fluent-dark.css +47 -165
- package/styles/fluent.css +47 -165
- package/styles/highcontrast-light.css +40 -140
- package/styles/highcontrast.css +41 -144
- package/styles/material-dark.css +41 -145
- package/styles/material.css +41 -145
- package/styles/material3-dark.css +50 -156
- package/styles/material3.css +50 -156
- package/styles/rich-text-editor/_bootstrap-dark-definition.scss +13 -17
- package/styles/rich-text-editor/_bootstrap-definition.scss +19 -22
- package/styles/rich-text-editor/_bootstrap4-definition.scss +7 -11
- package/styles/rich-text-editor/_bootstrap5-definition.scss +3 -7
- package/styles/rich-text-editor/_fabric-dark-definition.scss +2 -6
- package/styles/rich-text-editor/_fabric-definition.scss +3 -7
- package/styles/rich-text-editor/_fluent-definition.scss +9 -13
- package/styles/rich-text-editor/_fusionnew-definition.scss +3 -7
- package/styles/rich-text-editor/_highcontrast-definition.scss +3 -7
- package/styles/rich-text-editor/_highcontrast-light-definition.scss +2 -6
- package/styles/rich-text-editor/_layout.scss +31 -133
- package/styles/rich-text-editor/_material-dark-definition.scss +2 -6
- package/styles/rich-text-editor/_material-definition.scss +2 -6
- package/styles/rich-text-editor/_material3-definition.scss +12 -16
- package/styles/rich-text-editor/_tailwind-definition.scss +19 -23
- package/styles/rich-text-editor/_theme.scss +23 -112
- package/styles/rich-text-editor/bootstrap-dark.css +53 -161
- package/styles/rich-text-editor/bootstrap.css +61 -162
- package/styles/rich-text-editor/bootstrap4.css +46 -146
- package/styles/rich-text-editor/bootstrap5-dark.css +46 -151
- package/styles/rich-text-editor/bootstrap5.css +46 -151
- package/styles/rich-text-editor/fabric-dark.css +40 -140
- package/styles/rich-text-editor/fabric.css +41 -141
- package/styles/rich-text-editor/fluent-dark.css +47 -165
- package/styles/rich-text-editor/fluent.css +47 -165
- package/styles/rich-text-editor/highcontrast-light.css +40 -140
- package/styles/rich-text-editor/highcontrast.css +41 -144
- package/styles/rich-text-editor/icons/_bootstrap-dark.scss +2 -2
- package/styles/rich-text-editor/icons/_bootstrap.scss +2 -2
- package/styles/rich-text-editor/icons/_bootstrap4.scss +2 -2
- package/styles/rich-text-editor/icons/_bootstrap5.scss +2 -2
- package/styles/rich-text-editor/icons/_fabric-dark.scss +2 -2
- package/styles/rich-text-editor/icons/_fabric.scss +2 -2
- package/styles/rich-text-editor/icons/_fluent.scss +2 -2
- package/styles/rich-text-editor/icons/_highcontrast-light.scss +2 -2
- package/styles/rich-text-editor/icons/_highcontrast.scss +2 -2
- package/styles/rich-text-editor/icons/_material-dark.scss +2 -2
- package/styles/rich-text-editor/icons/_material.scss +2 -2
- package/styles/rich-text-editor/icons/_material3.scss +2 -2
- package/styles/rich-text-editor/icons/_tailwind.scss +2 -2
- package/styles/rich-text-editor/material-dark.css +41 -145
- package/styles/rich-text-editor/material.css +41 -145
- package/styles/rich-text-editor/material3-dark.css +50 -156
- package/styles/rich-text-editor/material3.css +50 -156
- package/styles/rich-text-editor/tailwind-dark.css +63 -191
- package/styles/rich-text-editor/tailwind.css +63 -191
- package/styles/tailwind-dark.css +63 -191
- package/styles/tailwind.css +63 -191
- package/.eslintrc.json +0 -260
- package/src/global.d.ts +0 -1
- package/styles/rich-text-editor/_bds-definition.scss +0 -279
- package/styles/rich-text-editor/icons/_bds.scss +0 -348
|
@@ -60,7 +60,7 @@ $rte-tb-items-padding-left: 6px !default;
|
|
|
60
60
|
$rte-big-active-tb-item-btn-padding: 0 5px !default;
|
|
61
61
|
$rte-active-tb-item-btn-padding: 0 2px !default;
|
|
62
62
|
$rte-tb-item-active-bg: $gray-600 !default;
|
|
63
|
-
$rte-tb-active-font-color: $gray-
|
|
63
|
+
$rte-tb-active-font-color: $gray-900 !default;
|
|
64
64
|
$rte-tb-item-active-border: $rte-border-size solid darken($gray-600, 12.5%) !default;
|
|
65
65
|
$rte-expand-tb-border-bottom: $rte-border-size $rte-border-type $gray-300 !default;
|
|
66
66
|
$rte-color-picker-active-bg: inherit !default;
|
|
@@ -146,12 +146,11 @@ $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;
|
|
150
149
|
$rte-table-popup-bdr-radius: 0 !default;
|
|
151
150
|
|
|
152
151
|
$rte-inline-dropdown-line-height: 30px !default;
|
|
153
152
|
$rte-big-inline-dropdown-line-height: 34px !default;
|
|
154
|
-
$rte-table-popup-border:
|
|
153
|
+
$rte-table-popup-border: rgba(0, 0, 0, .2) !default;
|
|
155
154
|
$rte-big-content-font-size: 16px !default;
|
|
156
155
|
$rte-dropdown-caret-icon-size: 8px !default;
|
|
157
156
|
$rte-big-dropdown-caret-icon-size: 10px !default;
|
|
@@ -198,15 +197,13 @@ $rte-big-file-browser-dlg-max-height: 557px !default;
|
|
|
198
197
|
$rte-big-table-dlg-max-height: 302px !default;
|
|
199
198
|
$rte-big-edit-table-dlg-max-height: 378px !default;
|
|
200
199
|
$rte-drop-text-width: 300px !default;
|
|
201
|
-
$rte-drop-text-height:
|
|
202
|
-
$rte-big-drop-text-height: 140px !default;
|
|
200
|
+
$rte-drop-text-height: 185px !default;
|
|
203
201
|
$rte-drop-text-mobile-width: 250px !default;
|
|
204
202
|
$rte-tbar-default-bg: $gray-100;
|
|
205
203
|
$rte-droparea-line-height: 10;
|
|
206
204
|
$rte-droparea-browsebtn-height: 36px;
|
|
207
205
|
$rte-droparea-browsebtn-padding: 0 18px;
|
|
208
|
-
$rte-droparea-browsebtn-top: -
|
|
209
|
-
$rte-big-droparea-browsebtn-top: -120px;
|
|
206
|
+
$rte-droparea-browsebtn-top: -50px;
|
|
210
207
|
$rte-insert-dialog-font-size: 15px;
|
|
211
208
|
$rte-big-insert-dialog-font-size: 15px;
|
|
212
209
|
$rte-table-popup-tablecell-height: 14px;
|
|
@@ -225,8 +222,7 @@ $rte-toolbar-item-frist-last-child-margin: 0;
|
|
|
225
222
|
$rte-big-toolbar-item-frist-last-child-margin: 0 6px;
|
|
226
223
|
$rte-toolbar-expaned-padding: 0 3px;
|
|
227
224
|
$rte-toolbar-expaned-padding-hover: 0 3px;
|
|
228
|
-
$
|
|
229
|
-
$dropdown-btn-font-size: 14px !default;
|
|
225
|
+
$dropdown-btn-font-size: inherit !default;
|
|
230
226
|
$rte-extended-toolbar-items-padding: 0;
|
|
231
227
|
$rte-expand-tbar-hover-bg: $gray-600 !default;
|
|
232
228
|
$rte-big-insert-dialog-label-padding-top: 12px;
|
|
@@ -239,7 +235,7 @@ $rte-tb-expended-min-height: 38px !default;
|
|
|
239
235
|
$rte-big-tb-expended-min-height: 54px !default;
|
|
240
236
|
$rte-tb-expended-padding-left: 1px !default;
|
|
241
237
|
$rte-tb-expended-hover-padding-left: 1px !default;
|
|
242
|
-
$rte-toolbar-expaned-minwidth:
|
|
238
|
+
$rte-toolbar-expaned-minwidth: 25px !default;
|
|
243
239
|
|
|
244
240
|
$rte-emoji-pop-background: $content-popup-bg;
|
|
245
241
|
$rte-emoji-pop-box-shadow: drop-shadow(0 0 6px rgba(0, 0, 0, .25));
|
|
@@ -334,7 +330,7 @@ $rte-format-painter-cursor: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiI
|
|
|
334
330
|
}
|
|
335
331
|
|
|
336
332
|
& .e-rte-table-popup.e-popup.e-popup-open {
|
|
337
|
-
border: $rte-table-popup-border;
|
|
333
|
+
border: 1px solid $rte-table-popup-border;
|
|
338
334
|
border-radius: 4px;
|
|
339
335
|
|
|
340
336
|
& .e-insert-table-btn .e-btn-icon.e-icons {
|
|
@@ -68,8 +68,7 @@ $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:
|
|
72
|
-
$rte-big-content-font-size: 16px !default;
|
|
71
|
+
$rte-content-font-size: $text-sm !default;
|
|
73
72
|
$rte-dropdown-caret-icon-size: $text-xs !default;
|
|
74
73
|
$rte-big-dropdown-caret-icon-size: $text-sm !default;
|
|
75
74
|
$font-weight: $font-weight-light !default;
|
|
@@ -88,8 +87,7 @@ $rte-default-character-count-opacity: 1;
|
|
|
88
87
|
$rte-droparea-line-height: 10;
|
|
89
88
|
$rte-droparea-browsebtn-height: 36px;
|
|
90
89
|
$rte-droparea-browsebtn-padding: 0 18px;
|
|
91
|
-
$rte-droparea-browsebtn-top: -
|
|
92
|
-
$rte-big-droparea-browsebtn-top: -120px;
|
|
90
|
+
$rte-droparea-browsebtn-top: -50px;
|
|
93
91
|
$rte-insert-dialog-font-size: 15px;
|
|
94
92
|
$rte-big-insert-dialog-font-size: 15px;
|
|
95
93
|
$rte-table-popup-tablecell-height: 14px;
|
|
@@ -104,7 +102,6 @@ $rte-big-toolbar-item-frist-last-child-margin: 0 6px;
|
|
|
104
102
|
$rte-tlbar-expand-active:$msg-color-alt2;
|
|
105
103
|
$rte-toolbar-expaned-padding: 0 4px;
|
|
106
104
|
$rte-toolbar-expaned-padding-hover: 0 4px;
|
|
107
|
-
$rte-big-toolbar-expaned-padding: 0 8px;
|
|
108
105
|
$rte-inline-dropdown-line-height: 30px !default;
|
|
109
106
|
$rte-big-inline-dropdown-line-height: 36px !default;
|
|
110
107
|
$rte-formatlists-dropdown-line-height: 1;
|
|
@@ -232,8 +229,7 @@ $rte-big-edit-table-dlg-max-height: 373px !default;
|
|
|
232
229
|
$toolbar-expand-icon-min-height: 40px !default;
|
|
233
230
|
$rte-align-caret-icon-min-width: 24px !default;
|
|
234
231
|
$rte-drop-text-width: 300px !default;
|
|
235
|
-
$rte-drop-text-height:
|
|
236
|
-
$rte-big-drop-text-height: 140px !default;
|
|
232
|
+
$rte-drop-text-height: 185px !default;
|
|
237
233
|
$rte-drop-text-mobile-width: 250px !default;
|
|
238
234
|
$rte-tbar-default-bg: $content-bg-color-alt1;
|
|
239
235
|
$rte-expand-tbar-hover-bg: $secondary-bg-color-hover !default;
|
|
@@ -158,7 +158,6 @@ $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;
|
|
162
161
|
$rte-dropdown-caret-icon-size: 12px !default;
|
|
163
162
|
$rte-big-dropdown-caret-icon-size: 12px !default;
|
|
164
163
|
$rte-toolbar-icon-size: 16px !default;
|
|
@@ -202,15 +201,13 @@ $rte-big-file-browser-dlg-max-height: 557px !default;
|
|
|
202
201
|
$rte-big-table-dlg-max-height: 335px !default;
|
|
203
202
|
$rte-big-edit-table-dlg-max-height: 427px !default;
|
|
204
203
|
$rte-drop-text-width: 300px !default;
|
|
205
|
-
$rte-drop-text-height:
|
|
206
|
-
$rte-big-drop-text-height: 140px !default;
|
|
204
|
+
$rte-drop-text-height: 185px !default;
|
|
207
205
|
$rte-drop-text-mobile-width: 250px !default;
|
|
208
206
|
$rte-tbar-default-bg: $neutral-lighter;
|
|
209
207
|
$rte-droparea-line-height: 10;
|
|
210
208
|
$rte-droparea-browsebtn-height: 36px;
|
|
211
209
|
$rte-droparea-browsebtn-padding: 0 18px;
|
|
212
|
-
$rte-droparea-browsebtn-top: -
|
|
213
|
-
$rte-big-droparea-browsebtn-top: -120px;
|
|
210
|
+
$rte-droparea-browsebtn-top: -50px;
|
|
214
211
|
$rte-insert-dialog-font-size: 15px;
|
|
215
212
|
$rte-big-insert-dialog-font-size: 15px;
|
|
216
213
|
$rte-table-popup-tablecell-height: 14px;
|
|
@@ -229,7 +226,6 @@ $rte-toolbar-item-frist-last-child-margin: 0;
|
|
|
229
226
|
$rte-big-toolbar-item-frist-last-child-margin: 0 6px;
|
|
230
227
|
$rte-toolbar-expaned-padding: 0;
|
|
231
228
|
$rte-toolbar-expaned-padding-hover: 0;
|
|
232
|
-
$rte-big-toolbar-expaned-padding: 0;
|
|
233
229
|
$dropdown-btn-font-size: inherit !default;
|
|
234
230
|
$rte-extended-toolbar-items-padding: 0;
|
|
235
231
|
$rte-expand-tbar-hover-bg: $neutral-light !default;
|
|
@@ -161,7 +161,6 @@ $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;
|
|
165
164
|
$rte-dropdown-caret-icon-size: 12px !default;
|
|
166
165
|
$rte-big-dropdown-caret-icon-size: 12px !default;
|
|
167
166
|
|
|
@@ -202,15 +201,13 @@ $rte-big-file-browser-dlg-max-height: 557px !default;
|
|
|
202
201
|
$rte-big-table-dlg-max-height: 335px !default;
|
|
203
202
|
$rte-big-edit-table-dlg-max-height: 427px !default;
|
|
204
203
|
$rte-drop-text-width: 290px !default;
|
|
205
|
-
$rte-drop-text-height:
|
|
206
|
-
$rte-big-drop-text-height: 140px !default;
|
|
204
|
+
$rte-drop-text-height: 185px !default;
|
|
207
205
|
$rte-drop-text-mobile-width: 240px !default;
|
|
208
206
|
$rte-tbar-default-bg: $neutral-white;
|
|
209
207
|
$rte-droparea-line-height: 10;
|
|
210
208
|
$rte-droparea-browsebtn-height: 36px;
|
|
211
209
|
$rte-droparea-browsebtn-padding: 0 18px;
|
|
212
|
-
$rte-droparea-browsebtn-top: -
|
|
213
|
-
$rte-big-droparea-browsebtn-top: -120px;
|
|
210
|
+
$rte-droparea-browsebtn-top: -50px;
|
|
214
211
|
$rte-insert-dialog-font-size: 15px;
|
|
215
212
|
$rte-big-insert-dialog-font-size: 15px;
|
|
216
213
|
$rte-table-popup-tablecell-height: 14px;
|
|
@@ -228,7 +225,6 @@ $rte-big-tablecell-width : 16px;
|
|
|
228
225
|
$rte-toolbar-item-frist-last-child-margin: 0;
|
|
229
226
|
$rte-big-toolbar-item-frist-last-child-margin: 0 6px;
|
|
230
227
|
$rte-toolbar-expaned-padding: 0;
|
|
231
|
-
$rte-big-toolbar-expaned-padding: 0;
|
|
232
228
|
$rte-toolbar-expaned-padding-hover: 0;
|
|
233
229
|
$dropdown-btn-font-size: inherit !default;
|
|
234
230
|
$rte-extended-toolbar-items-padding: 0;
|
|
@@ -243,7 +239,7 @@ $rte-tb-expended-min-height: 40px !default;
|
|
|
243
239
|
$rte-big-tb-expended-min-height: 50px !default;
|
|
244
240
|
$rte-tb-expended-padding-left: 1px !default;
|
|
245
241
|
$rte-tb-expended-hover-padding-left: 1px !default;
|
|
246
|
-
$rte-toolbar-expaned-minwidth:
|
|
242
|
+
$rte-toolbar-expaned-minwidth: 40px !default;
|
|
247
243
|
|
|
248
244
|
$rte-emoji-pop-background: $neutral-white;
|
|
249
245
|
$rte-emoji-pop-box-shadow: 0 0 6px rgba(0, 0, 0, .25);
|
|
@@ -36,7 +36,7 @@ $rte-big-tb-items-margin-left: 8px !default;
|
|
|
36
36
|
$rte-tb-items-margin-left: 8px !default;
|
|
37
37
|
$rte-big-tb-items-padding-left: 8px !default;
|
|
38
38
|
$rte-tb-items-padding-left: 8px !default;
|
|
39
|
-
$rte-active-tb-item-btn-padding: 0
|
|
39
|
+
$rte-active-tb-item-btn-padding: 0 !default;
|
|
40
40
|
$rte-split-btn-bar-size: 0 !default;
|
|
41
41
|
$rte-split-btn-active-color-icon-line-height: 30px !default;
|
|
42
42
|
$rte-big-split-btn-active-color-icon-line-height: 37px !default;
|
|
@@ -65,15 +65,14 @@ $rte-font-arrow-width: 12px !default;
|
|
|
65
65
|
$rte-font-arrow-touch-width: 20px !default;
|
|
66
66
|
$rte-font-icon-line-height: $leading-none !default;
|
|
67
67
|
$rte-placeholder-line-height: $leading-normal !default;
|
|
68
|
-
$rte-big-active-tb-item-btn-padding: 0
|
|
68
|
+
$rte-big-active-tb-item-btn-padding: 0 6px !default;
|
|
69
69
|
$rte-table-popup-padding: 10px !default;
|
|
70
70
|
$rte-table-popup-border: 0 solid $gray30 !default;
|
|
71
71
|
$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:
|
|
76
|
-
$rte-big-content-font-size: 16px !default;
|
|
75
|
+
$rte-content-font-size: $text-sm !default;
|
|
77
76
|
$rte-dropdown-caret-icon-size: $text-xs !default;
|
|
78
77
|
$rte-big-dropdown-caret-icon-size: $text-sm !default;
|
|
79
78
|
$font-weight: $font-weight-normal !default;
|
|
@@ -92,8 +91,7 @@ $rte-default-character-count-opacity: .8;
|
|
|
92
91
|
$rte-droparea-line-height: 10;
|
|
93
92
|
$rte-droparea-browsebtn-height: 36px;
|
|
94
93
|
$rte-droparea-browsebtn-padding: 0 18px;
|
|
95
|
-
$rte-droparea-browsebtn-top: -
|
|
96
|
-
$rte-big-droparea-browsebtn-top: -120px;
|
|
94
|
+
$rte-droparea-browsebtn-top: -50px;
|
|
97
95
|
$rte-insert-dialog-font-size: 15px;
|
|
98
96
|
$rte-big-insert-dialog-font-size: 15px;
|
|
99
97
|
$rte-table-popup-tablecell-height: 14px;
|
|
@@ -107,7 +105,6 @@ $rte-toolbar-item-frist-last-child-margin: 0;
|
|
|
107
105
|
$rte-big-toolbar-item-frist-last-child-margin: 0 3px;
|
|
108
106
|
$rte-toolbar-expaned-padding: 0 4px;
|
|
109
107
|
$rte-toolbar-expaned-padding-hover: 0 4px;
|
|
110
|
-
$rte-big-toolbar-expaned-padding: 0 8px;
|
|
111
108
|
$rte-inline-dropdown-line-height: 40px !default;
|
|
112
109
|
$rte-big-inline-dropdown-line-height: 48px !default;
|
|
113
110
|
$rte-formatlists-dropdown-line-height: 20px;
|
|
@@ -116,7 +113,7 @@ $rte-big-formatlists-dropdown-line-height: 30px;
|
|
|
116
113
|
//Layout Variables End
|
|
117
114
|
|
|
118
115
|
//Theme Variables Start
|
|
119
|
-
$rte-split-btn-active-border:
|
|
116
|
+
$rte-split-btn-active-border: 0 !default;
|
|
120
117
|
$rte-border-color: $border-light !default;
|
|
121
118
|
$rte-content-bg: $content-bg-color !default;
|
|
122
119
|
$rte-full-screen-bg: $content-bg-color !default;
|
|
@@ -145,7 +142,7 @@ $rte-quick-pop-item-focus-bg: $content-bg-color-alt4 !default;
|
|
|
145
142
|
$rte-quick-tb-btn-hover: $content-bg-color-alt4 !default;
|
|
146
143
|
$rte-tb-item-active-bg: $content-bg-color-alt5 !default;
|
|
147
144
|
$rte-tb-active-font-color: $icon-color !default;
|
|
148
|
-
$rte-tb-item-active-border:
|
|
145
|
+
$rte-tb-item-active-border: 0 solid $secondary-border-color-pressed !default;
|
|
149
146
|
$rte-expand-tb-border-bottom: $rte-border-size $rte-border-type $border-light !default;
|
|
150
147
|
$rte-color-picker-active-bg: inherit !default;
|
|
151
148
|
$rte-drop-btn-active-bg: $content-bg-color-alt5 !default;
|
|
@@ -162,7 +159,7 @@ $rte-split-btn-span-active-bg: $content-bg-color-alt3 !default;
|
|
|
162
159
|
$rte-split-btn-bar-bg: $content-bg-color !default;
|
|
163
160
|
$rte-split-btn-active-bar-bg: $content-bg-color !default;
|
|
164
161
|
$rte-split-btn-bar-size: 0 !default;
|
|
165
|
-
$rte-split-btn-active-border:
|
|
162
|
+
$rte-split-btn-active-border: 0 !default;
|
|
166
163
|
$rte-split-btn-active-color-icon-line-height: 40px !default;
|
|
167
164
|
$rte-big-split-btn-active-color-icon-line-height: 48px !default;
|
|
168
165
|
|
|
@@ -178,7 +175,7 @@ $rte-font-family: $font-family !default;
|
|
|
178
175
|
$rte-content-color: $content-text-color !default;
|
|
179
176
|
$rte-content-blockquote-border-left-color: solid 2px $content-text-color !default;
|
|
180
177
|
$rte-dropdown-selection-bgcolor: $secondary-bg-color-pressed !default;
|
|
181
|
-
$rte-ext-tbar-overlay-icons-color: $icon-color !default;
|
|
178
|
+
$rte-ext-tbar-overlay-icons-color: $icon-color-disabled !default;
|
|
182
179
|
$rte-overlay-color: $overlay-bg-color !default;
|
|
183
180
|
$rte-dropdown-selection-color: $secondary-text-color-pressed !default;
|
|
184
181
|
$rte-anchor-color: $primary !default;
|
|
@@ -236,8 +233,7 @@ $rte-big-file-browser-dlg-max-height: 557px !default;
|
|
|
236
233
|
$rte-big-table-dlg-max-height: 306px !default;
|
|
237
234
|
$rte-big-edit-table-dlg-max-height: 388px !default;
|
|
238
235
|
$rte-drop-text-width: 292px !default;
|
|
239
|
-
$rte-drop-text-height:
|
|
240
|
-
$rte-big-drop-text-height: 140px !default;
|
|
236
|
+
$rte-drop-text-height: 185px !default;
|
|
241
237
|
$rte-drop-text-mobile-width: 242px !default;
|
|
242
238
|
$rte-tbar-default-bg: $content-bg-color-alt2;
|
|
243
239
|
$rte-big-insert-dialog-label-padding-top: 12px;
|
|
@@ -68,8 +68,7 @@ $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:
|
|
72
|
-
$rte-big-content-font-size: 16px !default;
|
|
71
|
+
$rte-content-font-size: $text-sm !default;
|
|
73
72
|
$rte-dropdown-caret-icon-size: $text-xs !default;
|
|
74
73
|
$rte-big-dropdown-caret-icon-size: $text-sm !default;
|
|
75
74
|
$rte-inline-dropdown-line-height: 0 !default;
|
|
@@ -90,8 +89,7 @@ $rte-default-character-count-opacity: 1;
|
|
|
90
89
|
$rte-droparea-line-height: 10;
|
|
91
90
|
$rte-droparea-browsebtn-height: 36px;
|
|
92
91
|
$rte-droparea-browsebtn-padding: 0 18px;
|
|
93
|
-
$rte-droparea-browsebtn-top: -
|
|
94
|
-
$rte-big-droparea-browsebtn-top: -120px;
|
|
92
|
+
$rte-droparea-browsebtn-top: -50px;
|
|
95
93
|
$rte-insert-dialog-font-size: 15px;
|
|
96
94
|
$rte-big-insert-dialog-font-size: 15px;
|
|
97
95
|
$rte-table-popup-tablecell-height: 14px;
|
|
@@ -104,7 +102,6 @@ $rte-big-tablecell-width : 16px;
|
|
|
104
102
|
$rte-toolbar-item-frist-last-child-margin: 0;
|
|
105
103
|
$rte-big-toolbar-item-frist-last-child-margin: 0 6px;
|
|
106
104
|
$rte-toolbar-expaned-padding: 0 4px;
|
|
107
|
-
$rte-big-toolbar-expaned-padding: 0 4px;
|
|
108
105
|
$rte-toolbar-expaned-padding-hover: 0 4px;
|
|
109
106
|
$rte-formatlists-dropdown-line-height: 1;
|
|
110
107
|
$rte-big-formatlists-dropdown-line-height: 1;
|
|
@@ -233,8 +230,7 @@ $rte-big-edit-table-dlg-max-height: 373px !default;
|
|
|
233
230
|
$toolbar-expand-icon-min-height: 40px !default;
|
|
234
231
|
$rte-align-caret-icon-min-width: 24px !default;
|
|
235
232
|
$rte-drop-text-width: 300px !default;
|
|
236
|
-
$rte-drop-text-height:
|
|
237
|
-
$rte-big-drop-text-height: 140px !default;
|
|
233
|
+
$rte-drop-text-height: 185px !default;
|
|
238
234
|
$rte-drop-text-mobile-width: 250px !default;
|
|
239
235
|
$rte-tbar-default-bg: $content-bg-color-alt1;
|
|
240
236
|
$rte-big-insert-dialog-label-padding-top: 12px;
|
|
@@ -162,7 +162,6 @@ $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;
|
|
166
165
|
$rte-dropdown-caret-icon-size: 12px !default;
|
|
167
166
|
$rte-big-dropdown-caret-icon-size: 12px !default;
|
|
168
167
|
$rte-toolbar-icon-size: 16px !default;
|
|
@@ -206,15 +205,13 @@ $rte-big-file-browser-dlg-max-height: 557px !default;
|
|
|
206
205
|
$rte-big-table-dlg-max-height: 309px !default;
|
|
207
206
|
$rte-big-edit-table-dlg-max-height: 400px !default;
|
|
208
207
|
$rte-drop-text-width: 288px !default;
|
|
209
|
-
$rte-drop-text-height:
|
|
210
|
-
$rte-big-drop-text-height: 140px !default;
|
|
208
|
+
$rte-drop-text-height: 185px !default;
|
|
211
209
|
$rte-drop-text-mobile-width: 238px !default;
|
|
212
210
|
$rte-tbar-default-bg: $bg-base-0;
|
|
213
211
|
$rte-droparea-line-height: 10;
|
|
214
212
|
$rte-droparea-browsebtn-height: 36px;
|
|
215
213
|
$rte-droparea-browsebtn-padding: 0 18px;
|
|
216
|
-
$rte-droparea-browsebtn-top: -
|
|
217
|
-
$rte-big-droparea-browsebtn-top: -120px;
|
|
214
|
+
$rte-droparea-browsebtn-top: -50px;
|
|
218
215
|
$rte-insert-dialog-font-size: 15px;
|
|
219
216
|
$rte-big-insert-dialog-font-size: 15px;
|
|
220
217
|
$rte-table-popup-tablecell-height: 14px;
|
|
@@ -232,7 +229,6 @@ $rte-big-tablecell-width : 16px;
|
|
|
232
229
|
$rte-toolbar-item-frist-last-child-margin: 0;
|
|
233
230
|
$rte-big-toolbar-item-frist-last-child-margin: 0 6px;
|
|
234
231
|
$rte-toolbar-expaned-padding: 0;
|
|
235
|
-
$rte-big-toolbar-expaned-padding: 0;
|
|
236
232
|
$rte-toolbar-expaned-padding-hover: 0;
|
|
237
233
|
$dropdown-btn-font-size: inherit !default;
|
|
238
234
|
$rte-extended-toolbar-items-padding: 0;
|
|
@@ -243,7 +239,7 @@ $rte-background-color-icon-fontsize: 14px;
|
|
|
243
239
|
$rte-big-background-color-icon-fontsize: 18px;
|
|
244
240
|
$rte-dropdown-btn-color-content-padding: 0 !default;
|
|
245
241
|
$rte-big-dropdown-btn-color-content-padding: 1px !default;
|
|
246
|
-
$rte-toolbar-expaned-minwidth:
|
|
242
|
+
$rte-toolbar-expaned-minwidth: 36px !default;
|
|
247
243
|
|
|
248
244
|
$rte-emoji-pop-background: $bg-base-0;
|
|
249
245
|
$rte-emoji-pop-box-shadow: none;
|
|
@@ -158,7 +158,6 @@ $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;
|
|
162
161
|
$rte-dropdown-caret-icon-size: 12px !default;
|
|
163
162
|
$rte-big-dropdown-caret-icon-size: 12px !default;
|
|
164
163
|
$rte-toolbar-icon-size: 16px !default;
|
|
@@ -202,15 +201,13 @@ $rte-big-file-browser-dlg-max-height: 557px !default;
|
|
|
202
201
|
$rte-big-table-dlg-max-height: 309px !default;
|
|
203
202
|
$rte-big-edit-table-dlg-max-height: 400px !default;
|
|
204
203
|
$rte-drop-text-width: 288px !default;
|
|
205
|
-
$rte-drop-text-height:
|
|
206
|
-
$rte-big-drop-text-height: 140px !default;
|
|
204
|
+
$rte-drop-text-height: 185px !default;
|
|
207
205
|
$rte-drop-text-mobile-width: 238px !default;
|
|
208
206
|
$rte-tbar-default-bg: $bg-base-0;
|
|
209
207
|
$rte-droparea-line-height: 10;
|
|
210
208
|
$rte-droparea-browsebtn-height: 36px;
|
|
211
209
|
$rte-droparea-browsebtn-padding: 0 18px;
|
|
212
|
-
$rte-droparea-browsebtn-top: -
|
|
213
|
-
$rte-big-droparea-browsebtn-top: -120px;
|
|
210
|
+
$rte-droparea-browsebtn-top: -50px;
|
|
214
211
|
$rte-insert-dialog-font-size: 15px;
|
|
215
212
|
$rte-big-insert-dialog-font-size: 15px;
|
|
216
213
|
$rte-table-popup-tablecell-height: 14px;
|
|
@@ -228,7 +225,6 @@ $rte-big-tablecell-width : 16px;
|
|
|
228
225
|
$rte-toolbar-item-frist-last-child-margin: 0;
|
|
229
226
|
$rte-big-toolbar-item-frist-last-child-margin: 0 6px;
|
|
230
227
|
$rte-toolbar-expaned-padding: 0;
|
|
231
|
-
$rte-big-toolbar-expaned-padding: 0;
|
|
232
228
|
$rte-toolbar-expaned-padding-hover: 0;
|
|
233
229
|
$dropdown-btn-font-size: inherit !default;
|
|
234
230
|
$rte-extended-toolbar-items-padding: 0;
|