@syncfusion/ej2-richtexteditor 24.2.4 → 24.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +34 -0
- package/dist/ej2-richtexteditor.min.js +2 -2
- package/dist/ej2-richtexteditor.umd.min.js +2 -2
- package/dist/ej2-richtexteditor.umd.min.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es2015.js +669 -272
- package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es5.js +662 -269
- package/dist/es6/ej2-richtexteditor.es5.js.map +1 -1
- package/dist/global/ej2-richtexteditor.min.js +2 -2
- package/dist/global/ej2-richtexteditor.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +12 -12
- package/src/common/util.js +4 -1
- package/src/editor-manager/plugin/dom-node.js +3 -1
- package/src/editor-manager/plugin/format-painter-actions.d.ts +1 -0
- package/src/editor-manager/plugin/format-painter-actions.js +18 -0
- package/src/editor-manager/plugin/formats.d.ts +1 -0
- package/src/editor-manager/plugin/formats.js +37 -2
- package/src/editor-manager/plugin/inserthtml.js +15 -2
- package/src/editor-manager/plugin/lists.js +85 -63
- package/src/editor-manager/plugin/ms-word-clean-up.js +87 -18
- package/src/editor-manager/plugin/nodecutter.js +1 -1
- package/src/editor-manager/plugin/selection-commands.d.ts +1 -0
- package/src/editor-manager/plugin/selection-commands.js +56 -1
- package/src/editor-manager/plugin/table.js +1 -1
- package/src/rich-text-editor/actions/base-quick-toolbar.js +4 -4
- package/src/rich-text-editor/actions/color-picker.d.ts +1 -0
- package/src/rich-text-editor/actions/color-picker.js +10 -0
- package/src/rich-text-editor/actions/enter-key.js +2 -2
- package/src/rich-text-editor/actions/html-editor.js +25 -12
- package/src/rich-text-editor/actions/paste-clean-up.d.ts +1 -0
- package/src/rich-text-editor/actions/paste-clean-up.js +26 -5
- package/src/rich-text-editor/actions/toolbar-action.js +1 -1
- package/src/rich-text-editor/actions/toolbar.js +4 -1
- package/src/rich-text-editor/base/constant.d.ts +5 -0
- package/src/rich-text-editor/base/constant.js +5 -0
- package/src/rich-text-editor/base/interface.d.ts +0 -8
- package/src/rich-text-editor/base/rich-text-editor-model.d.ts +1 -1
- package/src/rich-text-editor/base/rich-text-editor.d.ts +1 -1
- package/src/rich-text-editor/base/rich-text-editor.js +33 -7
- package/src/rich-text-editor/base/util.js +3 -0
- package/src/rich-text-editor/models/default-locale.js +3 -2
- package/src/rich-text-editor/renderer/dialog-renderer.js +5 -1
- package/src/rich-text-editor/renderer/iframe-content-renderer.js +1 -1
- package/src/rich-text-editor/renderer/image-module.js +31 -10
- package/src/rich-text-editor/renderer/table-module.d.ts +4 -1
- package/src/rich-text-editor/renderer/table-module.js +200 -131
- package/src/rich-text-editor/renderer/toolbar-renderer.js +13 -13
- package/styles/bootstrap-dark.css +57 -22
- package/styles/bootstrap.css +61 -29
- package/styles/bootstrap4.css +48 -17
- package/styles/bootstrap5-dark.css +47 -18
- package/styles/bootstrap5.css +47 -18
- package/styles/fabric-dark.css +43 -12
- package/styles/fabric.css +43 -12
- package/styles/fluent-dark.css +51 -14
- package/styles/fluent.css +51 -14
- package/styles/highcontrast-light.css +43 -12
- package/styles/highcontrast.css +46 -12
- package/styles/material-dark.css +47 -12
- package/styles/material.css +47 -12
- package/styles/material3-dark.css +45 -14
- package/styles/material3.css +45 -14
- package/styles/rich-text-editor/_bootstrap-dark-definition.scss +12 -10
- package/styles/rich-text-editor/_bootstrap-definition.scss +18 -16
- package/styles/rich-text-editor/_bootstrap4-definition.scss +8 -6
- package/styles/rich-text-editor/_bootstrap5-definition.scss +4 -2
- package/styles/rich-text-editor/_fabric-dark-definition.scss +4 -2
- package/styles/rich-text-editor/_fabric-definition.scss +4 -2
- package/styles/rich-text-editor/_fluent-definition.scss +5 -3
- package/styles/rich-text-editor/_fusionnew-definition.scss +4 -2
- package/styles/rich-text-editor/_highcontrast-definition.scss +4 -2
- package/styles/rich-text-editor/_highcontrast-light-definition.scss +4 -2
- package/styles/rich-text-editor/_layout.scss +46 -6
- package/styles/rich-text-editor/_material-dark-definition.scss +4 -2
- package/styles/rich-text-editor/_material-definition.scss +4 -2
- package/styles/rich-text-editor/_material3-definition.scss +6 -4
- package/styles/rich-text-editor/_tailwind-definition.scss +21 -19
- package/styles/rich-text-editor/_theme.scss +65 -16
- package/styles/rich-text-editor/bootstrap-dark.css +57 -22
- package/styles/rich-text-editor/bootstrap.css +61 -29
- package/styles/rich-text-editor/bootstrap4.css +48 -17
- package/styles/rich-text-editor/bootstrap5-dark.css +47 -18
- package/styles/rich-text-editor/bootstrap5.css +47 -18
- package/styles/rich-text-editor/fabric-dark.css +43 -12
- package/styles/rich-text-editor/fabric.css +43 -12
- package/styles/rich-text-editor/fluent-dark.css +51 -14
- package/styles/rich-text-editor/fluent.css +51 -14
- package/styles/rich-text-editor/highcontrast-light.css +43 -12
- package/styles/rich-text-editor/highcontrast.css +46 -12
- package/styles/rich-text-editor/material-dark.css +47 -12
- package/styles/rich-text-editor/material.css +47 -12
- package/styles/rich-text-editor/material3-dark.css +45 -14
- package/styles/rich-text-editor/material3.css +45 -14
- package/styles/rich-text-editor/tailwind-dark.css +98 -35
- package/styles/rich-text-editor/tailwind.css +98 -35
- package/styles/tailwind-dark.css +98 -35
- package/styles/tailwind.css +98 -35
- package/.github/PULL_REQUEST_TEMPLATE/Bug.md +0 -41
- package/.github/PULL_REQUEST_TEMPLATE/Feature.md +0 -27
|
@@ -27,7 +27,7 @@ $rte-big-quick-item-line-height: normal !default;
|
|
|
27
27
|
$rte-quick-item-line-height: 20px !default;
|
|
28
28
|
$rte-quick-item-active-bg: rgba($grey-base, .12) !default;
|
|
29
29
|
$rte-quick-item-active-font-color: $base-font !default;
|
|
30
|
-
$rte-quick-item-border:
|
|
30
|
+
$rte-quick-item-border: 0 solid transparent !default;
|
|
31
31
|
$rte-quick-item-hover-border-color: $grey-8c !default;
|
|
32
32
|
$rte-quick-item-active-border-color: $grey-8c !default;
|
|
33
33
|
$rte-content-padding: 16px !default;
|
|
@@ -65,11 +65,11 @@ $rte-big-tb-items-margin-left: 3px !default;
|
|
|
65
65
|
$rte-tb-items-margin-left: 6px !default;
|
|
66
66
|
$rte-big-tb-items-padding-left: 3px !default;
|
|
67
67
|
$rte-tb-items-padding-left: 6px !default;
|
|
68
|
-
$rte-big-active-tb-item-btn-padding: 0
|
|
69
|
-
$rte-active-tb-item-btn-padding: 0
|
|
68
|
+
$rte-big-active-tb-item-btn-padding: 0 7px !default;
|
|
69
|
+
$rte-active-tb-item-btn-padding: 0 2.5px !default;
|
|
70
70
|
$rte-tb-item-active-bg: rgba($grey-base, .12) !default;
|
|
71
71
|
$rte-tb-active-font-color: $base-font !default;
|
|
72
|
-
$rte-tb-item-active-border:
|
|
72
|
+
$rte-tb-item-active-border: 0 !default;
|
|
73
73
|
$rte-expand-tb-border-bottom: $rte-border-size $rte-border-type rgb(250, 250, 250) !default;
|
|
74
74
|
$rte-color-picker-active-bg: inherit !default;
|
|
75
75
|
$rte-drop-btn-active-bg: $grey-e6 !default;
|
|
@@ -87,7 +87,7 @@ $rte-split-btn-span-active-bg: $grey-e6 !default;
|
|
|
87
87
|
$rte-split-btn-bar-bg: $grey-ad !default;
|
|
88
88
|
$rte-split-btn-active-bar-bg: $grey-ad !default;
|
|
89
89
|
$rte-split-btn-bar-size: 0 !default;
|
|
90
|
-
$rte-split-btn-active-border:
|
|
90
|
+
$rte-split-btn-active-border: 0 solid $grey-ad !default;
|
|
91
91
|
$rte-split-btn-active-color-icon-line-height: 30px !default;
|
|
92
92
|
$rte-big-split-btn-active-color-icon-line-height: 34px !default;
|
|
93
93
|
$rte-formatlists-dropdown-line-height: 20px;
|
|
@@ -114,15 +114,15 @@ $rte-font-name-btn-min-width: 67px !default;
|
|
|
114
114
|
$rte-font-size-btn-min-width: 36px !default;
|
|
115
115
|
$rte-drop-btn-padding-left: 9px !default;
|
|
116
116
|
$rte-drop-btn-padding-right: 3.5px !default;
|
|
117
|
-
$rte-drop-btn-action-padding-left:
|
|
118
|
-
$rte-drop-btn-action-padding-right:
|
|
117
|
+
$rte-drop-btn-action-padding-left: 9px !default;
|
|
118
|
+
$rte-drop-btn-action-padding-right: 3.5px !default;
|
|
119
119
|
$rte-big-drop-btn-padding-left: 12px !default;
|
|
120
120
|
$rte-big-drop-btn-padding-right: 7px !default;
|
|
121
|
-
$rte-big-drop-btn-action-padding-left:
|
|
122
|
-
$rte-big-drop-btn-action-padding-right:
|
|
121
|
+
$rte-big-drop-btn-action-padding-left: 12px !default;
|
|
122
|
+
$rte-big-drop-btn-action-padding-right: 7px !default;
|
|
123
123
|
$rte-ext-tbar-overlay-icons-color: $base-font !default;
|
|
124
124
|
$rte-colorpicker-parent-padding: 1px !default;
|
|
125
|
-
$rte-colorpicker-parent-padding-hover:
|
|
125
|
+
$rte-colorpicker-parent-padding-hover: 1px !default;
|
|
126
126
|
$rte-colorpicker-parent-padding-active-hover: 1px !default;
|
|
127
127
|
$rte-overlay-color: #383838 !default;
|
|
128
128
|
$rte-dropdown-btn-color-content-height: 30px !default;
|
|
@@ -178,7 +178,7 @@ $rte-resize-handler-height: 15px;
|
|
|
178
178
|
$rte-resize-handler-position: 0;
|
|
179
179
|
$rte-default-character-count-opacity: .54;
|
|
180
180
|
|
|
181
|
-
$rte-big-color-list-span-common-padding-left-right:
|
|
181
|
+
$rte-big-color-list-span-common-padding-left-right: 1px;
|
|
182
182
|
$rte-placeholder-padding: 16px !default;
|
|
183
183
|
|
|
184
184
|
$rte-img-dlg-max-height: 426px !default;
|
|
@@ -203,13 +203,15 @@ $rte-big-file-browser-dlg-max-height: 557px !default;
|
|
|
203
203
|
$rte-big-table-dlg-max-height: 330px !default;
|
|
204
204
|
$rte-big-edit-table-dlg-max-height: 414px !default;
|
|
205
205
|
$rte-drop-text-width: 300px !default;
|
|
206
|
-
$rte-drop-text-height:
|
|
206
|
+
$rte-drop-text-height: 128px !default;
|
|
207
|
+
$rte-big-drop-text-height: 140px !default;
|
|
207
208
|
$rte-drop-text-mobile-width: 250px !default;
|
|
208
209
|
$rte-tbar-default-bg: $grey-f8;
|
|
209
210
|
$rte-droparea-line-height: 10;
|
|
210
211
|
$rte-droparea-browsebtn-height: 36px;
|
|
211
212
|
$rte-droparea-browsebtn-padding: 0 18px;
|
|
212
|
-
$rte-droparea-browsebtn-top: -
|
|
213
|
+
$rte-droparea-browsebtn-top: -120px;
|
|
214
|
+
$rte-big-droparea-browsebtn-top: -120px;
|
|
213
215
|
$rte-insert-dialog-font-size: 15px;
|
|
214
216
|
$rte-big-insert-dialog-font-size: 15px;
|
|
215
217
|
$rte-table-popup-tablecell-height: 14px;
|
|
@@ -265,9 +267,9 @@ $rte-format-painter-cursor: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiI
|
|
|
265
267
|
&.e-extended-toolbar .e-toolbar-items .e-toolbar-item {
|
|
266
268
|
& .e-rte-dropdown-btn.e-active.e-tbar-btn {
|
|
267
269
|
background: $rte-dropdown-active-bg;
|
|
268
|
-
border:
|
|
269
|
-
padding-left:
|
|
270
|
-
padding-right:
|
|
270
|
+
border: 0;
|
|
271
|
+
padding-left: 9px;
|
|
272
|
+
padding-right: 3.5px;
|
|
271
273
|
}
|
|
272
274
|
}
|
|
273
275
|
}
|
|
@@ -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-100 !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;
|
|
@@ -151,7 +151,7 @@ $rte-table-popup-bdr-radius: 0 !default;
|
|
|
151
151
|
|
|
152
152
|
$rte-inline-dropdown-line-height: 30px !default;
|
|
153
153
|
$rte-big-inline-dropdown-line-height: 34px !default;
|
|
154
|
-
$rte-table-popup-border: rgba(0, 0, 0, .2) !default;
|
|
154
|
+
$rte-table-popup-border:1px solid rgba(0, 0, 0, .2) !default;
|
|
155
155
|
$rte-big-content-font-size: 16px !default;
|
|
156
156
|
$rte-dropdown-caret-icon-size: 8px !default;
|
|
157
157
|
$rte-big-dropdown-caret-icon-size: 10px !default;
|
|
@@ -198,13 +198,15 @@ $rte-big-file-browser-dlg-max-height: 557px !default;
|
|
|
198
198
|
$rte-big-table-dlg-max-height: 302px !default;
|
|
199
199
|
$rte-big-edit-table-dlg-max-height: 378px !default;
|
|
200
200
|
$rte-drop-text-width: 300px !default;
|
|
201
|
-
$rte-drop-text-height:
|
|
201
|
+
$rte-drop-text-height: 128px !default;
|
|
202
|
+
$rte-big-drop-text-height: 140px !default;
|
|
202
203
|
$rte-drop-text-mobile-width: 250px !default;
|
|
203
204
|
$rte-tbar-default-bg: $gray-100;
|
|
204
205
|
$rte-droparea-line-height: 10;
|
|
205
206
|
$rte-droparea-browsebtn-height: 36px;
|
|
206
207
|
$rte-droparea-browsebtn-padding: 0 18px;
|
|
207
|
-
$rte-droparea-browsebtn-top: -
|
|
208
|
+
$rte-droparea-browsebtn-top: -120px;
|
|
209
|
+
$rte-big-droparea-browsebtn-top: -120px;
|
|
208
210
|
$rte-insert-dialog-font-size: 15px;
|
|
209
211
|
$rte-big-insert-dialog-font-size: 15px;
|
|
210
212
|
$rte-table-popup-tablecell-height: 14px;
|
|
@@ -223,7 +225,7 @@ $rte-toolbar-item-frist-last-child-margin: 0;
|
|
|
223
225
|
$rte-big-toolbar-item-frist-last-child-margin: 0 6px;
|
|
224
226
|
$rte-toolbar-expaned-padding: 0 3px;
|
|
225
227
|
$rte-toolbar-expaned-padding-hover: 0 3px;
|
|
226
|
-
$dropdown-btn-font-size:
|
|
228
|
+
$dropdown-btn-font-size: 14px !default;
|
|
227
229
|
$rte-extended-toolbar-items-padding: 0;
|
|
228
230
|
$rte-expand-tbar-hover-bg: $gray-600 !default;
|
|
229
231
|
$rte-big-insert-dialog-label-padding-top: 12px;
|
|
@@ -331,7 +333,7 @@ $rte-format-painter-cursor: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiI
|
|
|
331
333
|
}
|
|
332
334
|
|
|
333
335
|
& .e-rte-table-popup.e-popup.e-popup-open {
|
|
334
|
-
border:
|
|
336
|
+
border: $rte-table-popup-border;
|
|
335
337
|
border-radius: 4px;
|
|
336
338
|
|
|
337
339
|
& .e-insert-table-btn .e-btn-icon.e-icons {
|
|
@@ -88,7 +88,8 @@ $rte-default-character-count-opacity: 1;
|
|
|
88
88
|
$rte-droparea-line-height: 10;
|
|
89
89
|
$rte-droparea-browsebtn-height: 36px;
|
|
90
90
|
$rte-droparea-browsebtn-padding: 0 18px;
|
|
91
|
-
$rte-droparea-browsebtn-top: -
|
|
91
|
+
$rte-droparea-browsebtn-top: -120px;
|
|
92
|
+
$rte-big-droparea-browsebtn-top: -120px;
|
|
92
93
|
$rte-insert-dialog-font-size: 15px;
|
|
93
94
|
$rte-big-insert-dialog-font-size: 15px;
|
|
94
95
|
$rte-table-popup-tablecell-height: 14px;
|
|
@@ -230,7 +231,8 @@ $rte-big-edit-table-dlg-max-height: 373px !default;
|
|
|
230
231
|
$toolbar-expand-icon-min-height: 40px !default;
|
|
231
232
|
$rte-align-caret-icon-min-width: 24px !default;
|
|
232
233
|
$rte-drop-text-width: 300px !default;
|
|
233
|
-
$rte-drop-text-height:
|
|
234
|
+
$rte-drop-text-height: 128px !default;
|
|
235
|
+
$rte-big-drop-text-height: 140px !default;
|
|
234
236
|
$rte-drop-text-mobile-width: 250px !default;
|
|
235
237
|
$rte-tbar-default-bg: $content-bg-color-alt1;
|
|
236
238
|
$rte-expand-tbar-hover-bg: $secondary-bg-color-hover !default;
|
|
@@ -202,13 +202,15 @@ $rte-big-file-browser-dlg-max-height: 557px !default;
|
|
|
202
202
|
$rte-big-table-dlg-max-height: 335px !default;
|
|
203
203
|
$rte-big-edit-table-dlg-max-height: 427px !default;
|
|
204
204
|
$rte-drop-text-width: 300px !default;
|
|
205
|
-
$rte-drop-text-height:
|
|
205
|
+
$rte-drop-text-height: 128px !default;
|
|
206
|
+
$rte-big-drop-text-height: 140px !default;
|
|
206
207
|
$rte-drop-text-mobile-width: 250px !default;
|
|
207
208
|
$rte-tbar-default-bg: $neutral-lighter;
|
|
208
209
|
$rte-droparea-line-height: 10;
|
|
209
210
|
$rte-droparea-browsebtn-height: 36px;
|
|
210
211
|
$rte-droparea-browsebtn-padding: 0 18px;
|
|
211
|
-
$rte-droparea-browsebtn-top: -
|
|
212
|
+
$rte-droparea-browsebtn-top: -120px;
|
|
213
|
+
$rte-big-droparea-browsebtn-top: -120px;
|
|
212
214
|
$rte-insert-dialog-font-size: 15px;
|
|
213
215
|
$rte-big-insert-dialog-font-size: 15px;
|
|
214
216
|
$rte-table-popup-tablecell-height: 14px;
|
|
@@ -202,13 +202,15 @@ $rte-big-file-browser-dlg-max-height: 557px !default;
|
|
|
202
202
|
$rte-big-table-dlg-max-height: 335px !default;
|
|
203
203
|
$rte-big-edit-table-dlg-max-height: 427px !default;
|
|
204
204
|
$rte-drop-text-width: 290px !default;
|
|
205
|
-
$rte-drop-text-height:
|
|
205
|
+
$rte-drop-text-height: 128px !default;
|
|
206
|
+
$rte-big-drop-text-height: 140px !default;
|
|
206
207
|
$rte-drop-text-mobile-width: 240px !default;
|
|
207
208
|
$rte-tbar-default-bg: $neutral-white;
|
|
208
209
|
$rte-droparea-line-height: 10;
|
|
209
210
|
$rte-droparea-browsebtn-height: 36px;
|
|
210
211
|
$rte-droparea-browsebtn-padding: 0 18px;
|
|
211
|
-
$rte-droparea-browsebtn-top: -
|
|
212
|
+
$rte-droparea-browsebtn-top: -120px;
|
|
213
|
+
$rte-big-droparea-browsebtn-top: -120px;
|
|
212
214
|
$rte-insert-dialog-font-size: 15px;
|
|
213
215
|
$rte-big-insert-dialog-font-size: 15px;
|
|
214
216
|
$rte-table-popup-tablecell-height: 14px;
|
|
@@ -92,7 +92,8 @@ $rte-default-character-count-opacity: .8;
|
|
|
92
92
|
$rte-droparea-line-height: 10;
|
|
93
93
|
$rte-droparea-browsebtn-height: 36px;
|
|
94
94
|
$rte-droparea-browsebtn-padding: 0 18px;
|
|
95
|
-
$rte-droparea-browsebtn-top: -
|
|
95
|
+
$rte-droparea-browsebtn-top: -120px;
|
|
96
|
+
$rte-big-droparea-browsebtn-top: -120px;
|
|
96
97
|
$rte-insert-dialog-font-size: 15px;
|
|
97
98
|
$rte-big-insert-dialog-font-size: 15px;
|
|
98
99
|
$rte-table-popup-tablecell-height: 14px;
|
|
@@ -176,7 +177,7 @@ $rte-font-family: $font-family !default;
|
|
|
176
177
|
$rte-content-color: $content-text-color !default;
|
|
177
178
|
$rte-content-blockquote-border-left-color: solid 2px $content-text-color !default;
|
|
178
179
|
$rte-dropdown-selection-bgcolor: $secondary-bg-color-pressed !default;
|
|
179
|
-
$rte-ext-tbar-overlay-icons-color: $icon-color
|
|
180
|
+
$rte-ext-tbar-overlay-icons-color: $icon-color !default;
|
|
180
181
|
$rte-overlay-color: $overlay-bg-color !default;
|
|
181
182
|
$rte-dropdown-selection-color: $secondary-text-color-pressed !default;
|
|
182
183
|
$rte-anchor-color: $primary !default;
|
|
@@ -234,7 +235,8 @@ $rte-big-file-browser-dlg-max-height: 557px !default;
|
|
|
234
235
|
$rte-big-table-dlg-max-height: 306px !default;
|
|
235
236
|
$rte-big-edit-table-dlg-max-height: 388px !default;
|
|
236
237
|
$rte-drop-text-width: 292px !default;
|
|
237
|
-
$rte-drop-text-height:
|
|
238
|
+
$rte-drop-text-height: 128px !default;
|
|
239
|
+
$rte-big-drop-text-height: 140px !default;
|
|
238
240
|
$rte-drop-text-mobile-width: 242px !default;
|
|
239
241
|
$rte-tbar-default-bg: $content-bg-color-alt2;
|
|
240
242
|
$rte-big-insert-dialog-label-padding-top: 12px;
|
|
@@ -90,7 +90,8 @@ $rte-default-character-count-opacity: 1;
|
|
|
90
90
|
$rte-droparea-line-height: 10;
|
|
91
91
|
$rte-droparea-browsebtn-height: 36px;
|
|
92
92
|
$rte-droparea-browsebtn-padding: 0 18px;
|
|
93
|
-
$rte-droparea-browsebtn-top: -
|
|
93
|
+
$rte-droparea-browsebtn-top: -120px;
|
|
94
|
+
$rte-big-droparea-browsebtn-top: -120px;
|
|
94
95
|
$rte-insert-dialog-font-size: 15px;
|
|
95
96
|
$rte-big-insert-dialog-font-size: 15px;
|
|
96
97
|
$rte-table-popup-tablecell-height: 14px;
|
|
@@ -231,7 +232,8 @@ $rte-big-edit-table-dlg-max-height: 373px !default;
|
|
|
231
232
|
$toolbar-expand-icon-min-height: 40px !default;
|
|
232
233
|
$rte-align-caret-icon-min-width: 24px !default;
|
|
233
234
|
$rte-drop-text-width: 300px !default;
|
|
234
|
-
$rte-drop-text-height:
|
|
235
|
+
$rte-drop-text-height: 128px !default;
|
|
236
|
+
$rte-big-drop-text-height: 140px !default;
|
|
235
237
|
$rte-drop-text-mobile-width: 250px !default;
|
|
236
238
|
$rte-tbar-default-bg: $content-bg-color-alt1;
|
|
237
239
|
$rte-big-insert-dialog-label-padding-top: 12px;
|
|
@@ -206,13 +206,15 @@ $rte-big-file-browser-dlg-max-height: 557px !default;
|
|
|
206
206
|
$rte-big-table-dlg-max-height: 309px !default;
|
|
207
207
|
$rte-big-edit-table-dlg-max-height: 400px !default;
|
|
208
208
|
$rte-drop-text-width: 288px !default;
|
|
209
|
-
$rte-drop-text-height:
|
|
209
|
+
$rte-drop-text-height: 128px !default;
|
|
210
|
+
$rte-big-drop-text-height: 140px !default;
|
|
210
211
|
$rte-drop-text-mobile-width: 238px !default;
|
|
211
212
|
$rte-tbar-default-bg: $bg-base-0;
|
|
212
213
|
$rte-droparea-line-height: 10;
|
|
213
214
|
$rte-droparea-browsebtn-height: 36px;
|
|
214
215
|
$rte-droparea-browsebtn-padding: 0 18px;
|
|
215
|
-
$rte-droparea-browsebtn-top: -
|
|
216
|
+
$rte-droparea-browsebtn-top: -120px;
|
|
217
|
+
$rte-big-droparea-browsebtn-top: -120px;
|
|
216
218
|
$rte-insert-dialog-font-size: 15px;
|
|
217
219
|
$rte-big-insert-dialog-font-size: 15px;
|
|
218
220
|
$rte-table-popup-tablecell-height: 14px;
|
|
@@ -202,13 +202,15 @@ $rte-big-file-browser-dlg-max-height: 557px !default;
|
|
|
202
202
|
$rte-big-table-dlg-max-height: 309px !default;
|
|
203
203
|
$rte-big-edit-table-dlg-max-height: 400px !default;
|
|
204
204
|
$rte-drop-text-width: 288px !default;
|
|
205
|
-
$rte-drop-text-height:
|
|
205
|
+
$rte-drop-text-height: 128px !default;
|
|
206
|
+
$rte-big-drop-text-height: 140px !default;
|
|
206
207
|
$rte-drop-text-mobile-width: 238px !default;
|
|
207
208
|
$rte-tbar-default-bg: $bg-base-0;
|
|
208
209
|
$rte-droparea-line-height: 10;
|
|
209
210
|
$rte-droparea-browsebtn-height: 36px;
|
|
210
211
|
$rte-droparea-browsebtn-padding: 0 18px;
|
|
211
|
-
$rte-droparea-browsebtn-top: -
|
|
212
|
+
$rte-droparea-browsebtn-top: -120px;
|
|
213
|
+
$rte-big-droparea-browsebtn-top: -120px;
|
|
212
214
|
$rte-insert-dialog-font-size: 15px;
|
|
213
215
|
$rte-big-insert-dialog-font-size: 15px;
|
|
214
216
|
$rte-table-popup-tablecell-height: 14px;
|
|
@@ -139,6 +139,11 @@
|
|
|
139
139
|
.e-rte-content .e-content {
|
|
140
140
|
font-size: $rte-big-content-font-size;
|
|
141
141
|
}
|
|
142
|
+
.e-dialog .e-img-uploadwrap.e-droparea .e-browsebtn,
|
|
143
|
+
.e-dialog .e-aud-uploadwrap.e-droparea .e-browsebtn,
|
|
144
|
+
.e-dialog .e-vid-uploadwrap.e-droparea .e-browsebtn {
|
|
145
|
+
top: $rte-big-droparea-browsebtn-top;
|
|
146
|
+
}
|
|
142
147
|
}
|
|
143
148
|
|
|
144
149
|
.e-richtexteditor {
|
|
@@ -661,6 +666,20 @@
|
|
|
661
666
|
}
|
|
662
667
|
}
|
|
663
668
|
|
|
669
|
+
@if $skin-name == 'tailwind' {
|
|
670
|
+
.e-bigger {
|
|
671
|
+
.e-richtexteditor {
|
|
672
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn,
|
|
673
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control {
|
|
674
|
+
padding: 0 8px;
|
|
675
|
+
}
|
|
676
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover {
|
|
677
|
+
padding: 0 8px;
|
|
678
|
+
}
|
|
679
|
+
}
|
|
680
|
+
}
|
|
681
|
+
}
|
|
682
|
+
|
|
664
683
|
.e-rte-linkcontent .e-rte-label {
|
|
665
684
|
padding-top: $rte-insert-dialog-label-padding-top;
|
|
666
685
|
}
|
|
@@ -853,7 +872,9 @@
|
|
|
853
872
|
|
|
854
873
|
.e-rte-image.e-imginline,
|
|
855
874
|
.e-rte-audio.e-audio-inline,
|
|
856
|
-
.e-rte-video.e-video-inline
|
|
875
|
+
.e-rte-video.e-video-inline {
|
|
876
|
+
margin-left: 5px;
|
|
877
|
+
margin-right: 5px;
|
|
857
878
|
display: inline-block;
|
|
858
879
|
float: none;
|
|
859
880
|
max-width: calc(100% - (2 * 5px));
|
|
@@ -911,19 +932,19 @@
|
|
|
911
932
|
}
|
|
912
933
|
|
|
913
934
|
.e-rte-img-caption.e-imgcenter {
|
|
914
|
-
display:
|
|
935
|
+
display: contents;
|
|
915
936
|
margin-left: auto;
|
|
916
937
|
margin-right: auto;
|
|
917
938
|
}
|
|
918
939
|
|
|
919
940
|
.e-rte-img-caption.e-imgright {
|
|
920
|
-
display:
|
|
941
|
+
display: contents;
|
|
921
942
|
margin-left: auto;
|
|
922
943
|
margin-right: 0;
|
|
923
944
|
}
|
|
924
945
|
|
|
925
946
|
.e-rte-img-caption.e-imgleft {
|
|
926
|
-
display:
|
|
947
|
+
display: contents;
|
|
927
948
|
margin-left: 0;
|
|
928
949
|
margin-right: auto;
|
|
929
950
|
}
|
|
@@ -940,7 +961,7 @@
|
|
|
940
961
|
}
|
|
941
962
|
|
|
942
963
|
.e-img-caption.e-rte-img-caption.e-imgbreak {
|
|
943
|
-
display:
|
|
964
|
+
display: contents;
|
|
944
965
|
}
|
|
945
966
|
|
|
946
967
|
.e-rte-table {
|
|
@@ -1111,7 +1132,7 @@
|
|
|
1111
1132
|
|
|
1112
1133
|
.e-dialog .e-vid-uploadwrap.e-droparea .e-browsebtn,
|
|
1113
1134
|
.e-rte-video-dialog.e-dialog.e-device.e-dlg-modal .e-vid-uploadwrap.e-droparea .e-browsebtn {
|
|
1114
|
-
top: -
|
|
1135
|
+
top: $rte-droparea-browsebtn-top;
|
|
1115
1136
|
}
|
|
1116
1137
|
|
|
1117
1138
|
.e-dialog.e-device.e-dlg-modal .e-img-uploadwrap.e-droparea .e-browsebtn,
|
|
@@ -1462,6 +1483,17 @@
|
|
|
1462
1483
|
.e-rte-quick-toolbar {
|
|
1463
1484
|
min-height: 48px;
|
|
1464
1485
|
|
|
1486
|
+
.e-toolbar-items .e-rte-backgroundcolor-dropdown {
|
|
1487
|
+
.e-rte-color-content,
|
|
1488
|
+
.e-caret {
|
|
1489
|
+
height: $rte-big-dropdown-btn-color-content-height;
|
|
1490
|
+
|
|
1491
|
+
&:hover {
|
|
1492
|
+
height: $rte-big-dropdown-btn-color-content-height;
|
|
1493
|
+
}
|
|
1494
|
+
}
|
|
1495
|
+
}
|
|
1496
|
+
|
|
1465
1497
|
.e-toolbar-items:not(.e-tbar-pos) {
|
|
1466
1498
|
margin: $rte-big-quick-toolbar-items-margin;
|
|
1467
1499
|
min-height: 48px;
|
|
@@ -1637,6 +1669,14 @@
|
|
|
1637
1669
|
}
|
|
1638
1670
|
}
|
|
1639
1671
|
}
|
|
1672
|
+
.e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-active{
|
|
1673
|
+
.e-rte-numberformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control,
|
|
1674
|
+
.e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control {
|
|
1675
|
+
@if $skin-name == 'tailwind' {
|
|
1676
|
+
padding: 1px;
|
|
1677
|
+
}
|
|
1678
|
+
}
|
|
1679
|
+
}
|
|
1640
1680
|
|
|
1641
1681
|
.e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item,
|
|
1642
1682
|
.e-rte-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item,
|
|
@@ -200,7 +200,8 @@ $rte-big-file-browser-dlg-max-height: 557px !default;
|
|
|
200
200
|
$rte-big-table-dlg-max-height: 312px !default;
|
|
201
201
|
$rte-big-edit-table-dlg-max-height: 385px !default;
|
|
202
202
|
$rte-drop-text-width: 300px !default;
|
|
203
|
-
$rte-drop-text-height:
|
|
203
|
+
$rte-drop-text-height: 128px !default;
|
|
204
|
+
$rte-big-drop-text-height: 140px !default;
|
|
204
205
|
$rte-drop-text-mobile-width: 250px !default;
|
|
205
206
|
|
|
206
207
|
$rte-quick-toolbar-item-margin: 0 6px !default;
|
|
@@ -211,7 +212,8 @@ $rte-tbar-default-bg: $grey-900;
|
|
|
211
212
|
$rte-droparea-line-height: 10;
|
|
212
213
|
$rte-droparea-browsebtn-height: 36px;
|
|
213
214
|
$rte-droparea-browsebtn-padding: 0 18px;
|
|
214
|
-
$rte-droparea-browsebtn-top: -
|
|
215
|
+
$rte-droparea-browsebtn-top: -120px;
|
|
216
|
+
$rte-big-droparea-browsebtn-top: -120px;
|
|
215
217
|
$rte-insert-dialog-font-size: 15px;
|
|
216
218
|
$rte-big-insert-dialog-font-size: 15px;
|
|
217
219
|
$rte-table-popup-tablecell-height: 14px;
|
|
@@ -204,13 +204,15 @@ $rte-big-file-browser-dlg-max-height: 557px !default;
|
|
|
204
204
|
$rte-big-table-dlg-max-height: 312px !default;
|
|
205
205
|
$rte-big-edit-table-dlg-max-height: 385px !default;
|
|
206
206
|
$rte-drop-text-width: 300px !default;
|
|
207
|
-
$rte-drop-text-height:
|
|
207
|
+
$rte-drop-text-height: 128px !default;
|
|
208
|
+
$rte-big-drop-text-height: 140px !default;
|
|
208
209
|
$rte-drop-text-mobile-width: 250px !default;
|
|
209
210
|
$rte-tbar-default-bg: $grey-50;
|
|
210
211
|
$rte-droparea-line-height: 10;
|
|
211
212
|
$rte-droparea-browsebtn-height: 36px;
|
|
212
213
|
$rte-droparea-browsebtn-padding: 0 18px;
|
|
213
|
-
$rte-droparea-browsebtn-top: -
|
|
214
|
+
$rte-droparea-browsebtn-top: -120px;
|
|
215
|
+
$rte-big-droparea-browsebtn-top: -120px;
|
|
214
216
|
$rte-insert-dialog-font-size: 15px;
|
|
215
217
|
$rte-big-insert-dialog-font-size: 15px;
|
|
216
218
|
$rte-table-popup-tablecell-height: 14px;
|
|
@@ -88,7 +88,8 @@ $rte-default-character-count-opacity: 1;
|
|
|
88
88
|
$rte-droparea-line-height: 10;
|
|
89
89
|
$rte-droparea-browsebtn-height: 32px;
|
|
90
90
|
$rte-droparea-browsebtn-padding: 6px 16px;
|
|
91
|
-
$rte-droparea-browsebtn-top: -
|
|
91
|
+
$rte-droparea-browsebtn-top: -120px;
|
|
92
|
+
$rte-big-droparea-browsebtn-top: -120px;
|
|
92
93
|
$rte-inline-dropdown-line-height: 14px !default;
|
|
93
94
|
$rte-big-inline-dropdown-line-height: 14px !default;
|
|
94
95
|
$rte-insert-dialog-font-size: 10px;
|
|
@@ -173,7 +174,7 @@ $rte-drop-text-clr: rgba($on-secondary-container) !default;
|
|
|
173
174
|
$rte-default-character-count-color: rgba($placeholder-text-color) !default;
|
|
174
175
|
$rte-warning-character-count-color: rgba($warning) !default;
|
|
175
176
|
$rte-error-character-count-color: rgba($danger) !default;
|
|
176
|
-
$rte-img-border:
|
|
177
|
+
$rte-img-border: solid 2px rgba($primary) !default;
|
|
177
178
|
$rte-font-family: $font-family !default;
|
|
178
179
|
$rte-content-color: rgba($content-text-color) !default;
|
|
179
180
|
$rte-content-blockquote-border-left-color: solid 2px rgba($content-text-color) !default;
|
|
@@ -231,7 +232,8 @@ $rte-big-edit-table-dlg-max-height: 373px !default;
|
|
|
231
232
|
$toolbar-expand-icon-min-height: 40px !default;
|
|
232
233
|
$rte-align-caret-icon-min-width: 24px !default;
|
|
233
234
|
$rte-drop-text-width: 280px !default;
|
|
234
|
-
$rte-drop-text-height:
|
|
235
|
+
$rte-drop-text-height: 128px !default;
|
|
236
|
+
$rte-big-drop-text-height: 140px !default;
|
|
235
237
|
$rte-drop-text-mobile-width: 250px !default;
|
|
236
238
|
$rte-tbar-default-bg: $content-bg-color-alt2 !default;
|
|
237
239
|
$rte-extended-toolbar-items-padding: 0;
|
|
@@ -245,7 +247,7 @@ $rte-big-dropdown-btn-color-content-padding: 9.5px !default;
|
|
|
245
247
|
$rte-tb-expended-min-height: 48px !default;
|
|
246
248
|
$rte-big-tb-expended-min-height: 56px !default;
|
|
247
249
|
$rte-tb-expended-padding-left: 1px !default;
|
|
248
|
-
$rte-tb-expended-hover-padding-left:
|
|
250
|
+
$rte-tb-expended-hover-padding-left: 1px !default;
|
|
249
251
|
$rte-toolbar-expaned-minwidth: 18px !default;
|
|
250
252
|
|
|
251
253
|
$rte-emoji-pop-background: $flyout-bg-color;
|
|
@@ -4,7 +4,7 @@ $rte-2px-border-size: 2px !default;
|
|
|
4
4
|
$rte-border-type: solid !default;
|
|
5
5
|
$rte-list-btn-flex: column !default;
|
|
6
6
|
$rte-list-btn-line-height: 30px !default;
|
|
7
|
-
$rte-big-list-btn-line-height:
|
|
7
|
+
$rte-big-list-btn-line-height: 38px !default;
|
|
8
8
|
$rte-split-btn-line-height: 30px !default;
|
|
9
9
|
$rte-big-split-btn-line-height: 38px !default;
|
|
10
10
|
$rte-big-quick-item-btn-width: 38px !default;
|
|
@@ -34,7 +34,7 @@ $rte-big-tb-items-margin-left: 3px !default;
|
|
|
34
34
|
$rte-tb-items-margin-left: 7px !default;
|
|
35
35
|
$rte-big-tb-items-padding-left: 3px !default;
|
|
36
36
|
$rte-tb-items-padding-left: 7px !default;
|
|
37
|
-
$rte-active-tb-item-btn-padding: 0 !default;
|
|
37
|
+
$rte-active-tb-item-btn-padding: 0 4px !default;
|
|
38
38
|
$rte-split-btn-bar-size: 0 !default;
|
|
39
39
|
$rte-split-btn-active-color-icon-line-height: 30px !default;
|
|
40
40
|
$rte-big-split-btn-active-color-icon-line-height: 35px !default;
|
|
@@ -45,17 +45,17 @@ $rte-drop-btn-padding-left: 7px !default;
|
|
|
45
45
|
$dropdown-btn-font-size: $text-sm;
|
|
46
46
|
$dropdown-btn-big-font-size: $text-base;
|
|
47
47
|
$rte-drop-btn-padding-right: 2.5px !default;
|
|
48
|
-
$rte-drop-btn-action-padding-left:
|
|
49
|
-
$rte-drop-btn-action-padding-right:
|
|
48
|
+
$rte-drop-btn-action-padding-left: 7px !default;
|
|
49
|
+
$rte-drop-btn-action-padding-right: 2.5px !default;
|
|
50
50
|
$rte-big-drop-btn-padding-left: 10px !default;
|
|
51
51
|
$rte-big-drop-btn-padding-right: 6px !default;
|
|
52
|
-
$rte-big-drop-btn-action-padding-left:
|
|
53
|
-
$rte-big-drop-btn-action-padding-right:
|
|
54
|
-
$rte-colorpicker-parent-padding:
|
|
55
|
-
$rte-colorpicker-parent-padding-hover:
|
|
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: 1px !default;
|
|
55
|
+
$rte-colorpicker-parent-padding-hover: 1px !default;
|
|
56
56
|
$rte-colorpicker-parent-padding-active-hover: 0 !default;
|
|
57
57
|
$rte-dropdown-btn-color-content-height: 30px !default;
|
|
58
|
-
$rte-big-dropdown-btn-color-content-height:
|
|
58
|
+
$rte-big-dropdown-btn-color-content-height: 38px !default;
|
|
59
59
|
$rte-font-icon-width: 30px !default;
|
|
60
60
|
$rte-font-arrow-width: 18px !default;
|
|
61
61
|
$rte-font-arrow-touch-width: 20px !default;
|
|
@@ -63,7 +63,7 @@ $rte-font-icon-line-height: $leading-none !default;
|
|
|
63
63
|
$rte-placeholder-line-height: $leading-normal !default;
|
|
64
64
|
$rte-big-active-tb-item-btn-padding: 0 6px !default;
|
|
65
65
|
$rte-table-popup-padding: 18px 18px 8px 22px !default;
|
|
66
|
-
$rte-table-popup-border: 1px solid $cool-gray-
|
|
66
|
+
$rte-table-popup-border: 1px solid $cool-gray-300 !default;
|
|
67
67
|
$rte-insert-dialog-label-padding-top: 12px !default;
|
|
68
68
|
$rte-insert-dialog-label-padding-bottom: 3px !default;
|
|
69
69
|
$rte-big-quick-tbar-item-min-height: 38px !default;
|
|
@@ -85,13 +85,14 @@ $rte-big-inline-tmp-size-min-width: 59px;
|
|
|
85
85
|
$rte-inline-tmp-size-min-width: 66px;
|
|
86
86
|
$rte-big-inline-tmp-color-min-width: 50px;
|
|
87
87
|
$rte-inline-tmp-color-min-width: 55px;
|
|
88
|
-
$rte-big-color-list-span-common-padding-left-right:
|
|
88
|
+
$rte-big-color-list-span-common-padding-left-right: 1px;
|
|
89
89
|
$rte-placeholder-padding: 12px !default;
|
|
90
90
|
$rte-default-character-count-opacity: 1;
|
|
91
91
|
$rte-droparea-line-height: 10;
|
|
92
92
|
$rte-droparea-browsebtn-height: 36px;
|
|
93
93
|
$rte-droparea-browsebtn-padding: 0 18px;
|
|
94
|
-
$rte-droparea-browsebtn-top: -
|
|
94
|
+
$rte-droparea-browsebtn-top: -120px;
|
|
95
|
+
$rte-big-droparea-browsebtn-top: -120px;
|
|
95
96
|
$rte-insert-dialog-font-size: 15px;
|
|
96
97
|
$rte-big-insert-dialog-font-size: 15px;
|
|
97
98
|
$rte-table-popup-tablecell-height: 14px;
|
|
@@ -103,10 +104,10 @@ $rte-big-tablecell-height : 16px;
|
|
|
103
104
|
$rte-big-tablecell-width : 16px;
|
|
104
105
|
$rte-toolbar-item-frist-last-child-margin: 0;
|
|
105
106
|
$rte-big-toolbar-item-frist-last-child-margin: 0 6px;
|
|
106
|
-
$rte-toolbar-expaned-padding: 0
|
|
107
|
+
$rte-toolbar-expaned-padding: 0 4px;
|
|
107
108
|
$rte-toolbar-expaned-padding-hover: 0 4px;
|
|
108
109
|
$rte-formatlists-dropdown-line-height: 20px;
|
|
109
|
-
$rte-big-formatlists-dropdown-line-height:
|
|
110
|
+
$rte-big-formatlists-dropdown-line-height: 35px;
|
|
110
111
|
|
|
111
112
|
//Layout Variables End
|
|
112
113
|
|
|
@@ -124,7 +125,7 @@ $rte-img-popup-box-shadow: $shadow !default;
|
|
|
124
125
|
$rte-img-popup-color: $border-light !default;
|
|
125
126
|
$rte-quick-item-active-bg: $secondary-bg-color-pressed !default;
|
|
126
127
|
$rte-quick-item-active-font-color: $icon-color !default;
|
|
127
|
-
$rte-quick-item-border:
|
|
128
|
+
$rte-quick-item-border: 1px solid transparent !default;
|
|
128
129
|
$rte-quick-item-hover-border-color: $secondary-border-color-hover !default;
|
|
129
130
|
$rte-quick-item-active-border-color: $secondary-border-color-pressed !default;
|
|
130
131
|
$rte-quick-drop-btn-border-color: $content-bg-color-alt2 !default;
|
|
@@ -139,7 +140,7 @@ $rte-quick-pop-item-focus-bg: $secondary-bg-color-pressed !default;
|
|
|
139
140
|
$rte-quick-tb-btn-hover: $secondary-bg-color-pressed !default;
|
|
140
141
|
$rte-tb-item-active-bg: $secondary-bg-color-pressed !default;
|
|
141
142
|
$rte-tb-active-font-color: $icon-color !default;
|
|
142
|
-
$rte-tb-item-active-border:
|
|
143
|
+
$rte-tb-item-active-border: 0 solid $secondary-border-color-pressed !default;
|
|
143
144
|
$rte-expand-tb-border-bottom: $rte-border-size $rte-border-type $border-light !default;
|
|
144
145
|
$rte-color-picker-active-bg: inherit !default;
|
|
145
146
|
$rte-drop-btn-active-bg: $secondary-bg-color-pressed !default;
|
|
@@ -200,7 +201,7 @@ $rte-border-bottom-right-radius: 0;
|
|
|
200
201
|
$rte-border-bottom-left-radius: 0;
|
|
201
202
|
$rte-big-border-radius: 0;
|
|
202
203
|
$rte-extended-toolbar-items-padding: 0;
|
|
203
|
-
$rte-expand-tbar-hover-bg: $content-bg-color-
|
|
204
|
+
$rte-expand-tbar-hover-bg: $content-bg-color-alt1 !default;
|
|
204
205
|
|
|
205
206
|
//Theme Variables End
|
|
206
207
|
|
|
@@ -227,13 +228,14 @@ $rte-big-file-browser-dlg-max-height: 557px !default;
|
|
|
227
228
|
$rte-big-table-dlg-max-height: 283px !default;
|
|
228
229
|
$rte-big-edit-table-dlg-max-height: 388px !default;
|
|
229
230
|
$rte-drop-text-width: 300px !default;
|
|
230
|
-
$rte-drop-text-height:
|
|
231
|
+
$rte-drop-text-height: 128px !default;
|
|
232
|
+
$rte-big-drop-text-height: 140px !default;
|
|
231
233
|
$rte-drop-text-mobile-width: 250px !default;
|
|
232
234
|
$rte-tbar-default-bg: $content-bg-color-alt2;
|
|
233
235
|
$rte-big-insert-dialog-label-padding-top: 12px;
|
|
234
236
|
$rte-tbar-icon-size: 20px;
|
|
235
237
|
$rte-dropdown-btn-color-content-padding: 1px !default;
|
|
236
|
-
$rte-big-dropdown-btn-color-content-padding:
|
|
238
|
+
$rte-big-dropdown-btn-color-content-padding: 0 !default;
|
|
237
239
|
$rte-tb-expended-min-height: 40px !default;
|
|
238
240
|
$rte-big-tb-expended-min-height: 48px !default;
|
|
239
241
|
$rte-tb-expended-padding-left: 1px !default;
|