@syncfusion/ej2-richtexteditor 20.4.53 → 21.1.37
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 +16 -2
- 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 +1479 -576
- package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es5.js +1516 -605
- 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 +13 -13
- package/src/common/config.js +3 -1
- package/src/common/constant.d.ts +6 -0
- package/src/common/constant.js +6 -0
- package/src/common/util.d.ts +1 -0
- package/src/common/util.js +1 -0
- package/src/editor-manager/base/editor-manager.d.ts +2 -0
- package/src/editor-manager/base/editor-manager.js +5 -0
- package/src/editor-manager/base/enum.d.ts +14 -0
- package/src/editor-manager/base/interface.d.ts +34 -0
- package/src/editor-manager/plugin/clearformat.js +13 -4
- package/src/editor-manager/plugin/format-painter-actions.d.ts +63 -0
- package/src/editor-manager/plugin/format-painter-actions.js +474 -0
- package/src/editor-manager/plugin/image.js +0 -1
- package/src/editor-manager/plugin/inserthtml.js +4 -2
- package/src/editor-manager/plugin/isformatted.js +1 -0
- package/src/editor-manager/plugin/link.js +0 -1
- package/src/editor-manager/plugin/lists.js +1 -1
- package/src/editor-manager/plugin/ms-word-clean-up.js +4 -4
- package/src/editor-manager/plugin/selection-commands.d.ts +4 -1
- package/src/editor-manager/plugin/selection-commands.js +70 -9
- package/src/editor-manager/plugin/video.js +2 -0
- package/src/editor-manager/plugin.d.ts +1 -0
- package/src/editor-manager/plugin.js +1 -0
- package/src/global.js +1 -1
- package/src/rich-text-editor/actions/base-quick-toolbar.d.ts +1 -0
- package/src/rich-text-editor/actions/base-quick-toolbar.js +21 -1
- package/src/rich-text-editor/actions/base-toolbar.js +33 -10
- package/src/rich-text-editor/actions/enter-key.js +5 -10
- package/src/rich-text-editor/actions/format-painter.d.ts +24 -0
- package/src/rich-text-editor/actions/format-painter.js +142 -0
- package/src/rich-text-editor/actions/full-screen.js +0 -1
- package/src/rich-text-editor/actions/html-editor.d.ts +1 -0
- package/src/rich-text-editor/actions/html-editor.js +117 -97
- package/src/rich-text-editor/actions/toolbar.js +5 -0
- package/src/rich-text-editor/actions.d.ts +1 -0
- package/src/rich-text-editor/actions.js +1 -0
- package/src/rich-text-editor/base/constant.d.ts +10 -0
- package/src/rich-text-editor/base/constant.js +10 -0
- package/src/rich-text-editor/base/enum.d.ts +4 -0
- package/src/rich-text-editor/base/interface.d.ts +30 -3
- package/src/rich-text-editor/base/interface.js +12 -0
- package/src/rich-text-editor/base/rich-text-editor-model.d.ts +30 -4
- package/src/rich-text-editor/base/rich-text-editor.d.ts +35 -5
- package/src/rich-text-editor/base/rich-text-editor.js +40 -9
- package/src/rich-text-editor/base/util.js +2 -0
- package/src/rich-text-editor/formatter/formatter.js +22 -13
- package/src/rich-text-editor/formatter/html-formatter.d.ts +5 -3
- package/src/rich-text-editor/formatter/html-formatter.js +7 -5
- package/src/rich-text-editor/models/default-locale.js +4 -2
- package/src/rich-text-editor/models/items.d.ts +3 -0
- package/src/rich-text-editor/models/items.js +32 -0
- package/src/rich-text-editor/models/toolbar-settings-model.d.ts +29 -1
- package/src/rich-text-editor/models/toolbar-settings.d.ts +24 -1
- package/src/rich-text-editor/models/toolbar-settings.js +20 -0
- package/src/rich-text-editor/renderer/audio-module.js +6 -3
- package/src/rich-text-editor/renderer/image-module.js +11 -6
- package/src/rich-text-editor/renderer/link-module.js +2 -1
- package/src/rich-text-editor/renderer/table-module.js +18 -6
- package/src/rich-text-editor/renderer/toolbar-renderer.js +10 -1
- package/src/rich-text-editor/renderer/video-module.js +8 -5
- package/src/rich-text-editor/renderer/view-source.js +1 -1
- package/styles/bootstrap-dark.css +31 -1
- package/styles/bootstrap.css +31 -1
- package/styles/bootstrap4.css +31 -1
- package/styles/bootstrap5-dark.css +32 -2
- package/styles/bootstrap5.css +32 -2
- package/styles/fabric-dark.css +31 -1
- package/styles/fabric.css +31 -1
- package/styles/fluent-dark.css +34 -4
- package/styles/fluent.css +34 -4
- package/styles/highcontrast-light.css +31 -1
- package/styles/highcontrast.css +31 -1
- package/styles/material-dark.css +31 -1
- package/styles/material.css +31 -1
- package/styles/rich-text-editor/_bootstrap-dark-definition.scss +25 -1
- package/styles/rich-text-editor/_bootstrap-definition.scss +25 -1
- package/styles/rich-text-editor/_bootstrap4-definition.scss +25 -1
- package/styles/rich-text-editor/_bootstrap5-definition.scss +28 -5
- package/styles/rich-text-editor/_fabric-dark-definition.scss +25 -1
- package/styles/rich-text-editor/_fabric-definition.scss +25 -1
- package/styles/rich-text-editor/_fluent-definition.scss +30 -7
- package/styles/rich-text-editor/_fusionnew-definition.scss +26 -3
- package/styles/rich-text-editor/_highcontrast-definition.scss +25 -1
- package/styles/rich-text-editor/_highcontrast-light-definition.scss +25 -1
- package/styles/rich-text-editor/_layout.scss +47 -15
- package/styles/rich-text-editor/_material-dark-definition.scss +26 -1
- package/styles/rich-text-editor/_material-definition.scss +25 -1
- package/styles/rich-text-editor/_tailwind-definition.scss +28 -5
- package/styles/rich-text-editor/_theme.scss +54 -6
- package/styles/rich-text-editor/bootstrap-dark.css +31 -1
- package/styles/rich-text-editor/bootstrap.css +31 -1
- package/styles/rich-text-editor/bootstrap4.css +31 -1
- package/styles/rich-text-editor/bootstrap5-dark.css +32 -2
- package/styles/rich-text-editor/bootstrap5.css +32 -2
- package/styles/rich-text-editor/fabric-dark.css +31 -1
- package/styles/rich-text-editor/fabric.css +31 -1
- package/styles/rich-text-editor/fluent-dark.css +34 -4
- package/styles/rich-text-editor/fluent.css +34 -4
- package/styles/rich-text-editor/highcontrast-light.css +31 -1
- package/styles/rich-text-editor/highcontrast.css +31 -1
- package/styles/rich-text-editor/icons/_bootstrap-dark.scss +8 -0
- package/styles/rich-text-editor/icons/_bootstrap.scss +8 -0
- package/styles/rich-text-editor/icons/_bootstrap4.scss +8 -0
- package/styles/rich-text-editor/icons/_bootstrap5.scss +8 -0
- package/styles/rich-text-editor/icons/_fabric-dark.scss +8 -0
- package/styles/rich-text-editor/icons/_fabric.scss +8 -0
- package/styles/rich-text-editor/icons/_fluent.scss +8 -0
- package/styles/rich-text-editor/icons/_fusionnew.scss +8 -0
- package/styles/rich-text-editor/icons/_highcontrast-light.scss +8 -0
- package/styles/rich-text-editor/icons/_highcontrast.scss +8 -0
- package/styles/rich-text-editor/icons/_material-dark.scss +8 -0
- package/styles/rich-text-editor/icons/_material.scss +8 -0
- package/styles/rich-text-editor/icons/_material3.scss +8 -0
- package/styles/rich-text-editor/icons/_tailwind.scss +8 -0
- package/styles/rich-text-editor/material-dark.css +31 -1
- package/styles/rich-text-editor/material.css +31 -1
- package/styles/rich-text-editor/tailwind-dark.css +31 -1
- package/styles/rich-text-editor/tailwind.css +31 -1
- package/styles/tailwind-dark.css +31 -1
- package/styles/tailwind.css +31 -1
- package/styles/rich-text-editor/_material3-definition.scss +0 -196
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
$skin-name: 'bootstrap5' !default;
|
|
2
|
-
|
|
3
1
|
//Layout Variables Start
|
|
4
2
|
$rte-border-size: 1px !default;
|
|
5
3
|
$rte-2px-border-size: 2px !default;
|
|
@@ -82,6 +80,21 @@ $rte-big-inline-tmp-color-min-width: 50px;
|
|
|
82
80
|
$rte-inline-tmp-color-min-width: 55px;
|
|
83
81
|
$rte-big-color-list-span-common-padding-left-right: 0;
|
|
84
82
|
$rte-default-character-count-opacity: 1;
|
|
83
|
+
$rte-droparea-line-height: 10;
|
|
84
|
+
$rte-droparea-browsebtn-height: 36px;
|
|
85
|
+
$rte-droparea-browsebtn-padding: 0 18px;
|
|
86
|
+
$rte-droparea-browsebtn-top: -50px;
|
|
87
|
+
$rte-insert-dialog-font-size: 15px;
|
|
88
|
+
$rte-big-insert-dialog-font-size: 15px;
|
|
89
|
+
$rte-table-popup-tablecell-height: 14px;
|
|
90
|
+
$rte-table-popup-tablecell-width: 14px;
|
|
91
|
+
$rte-table-popup-tablecell-margin: 1px;
|
|
92
|
+
$rte-table-popup-row-height : 16px;
|
|
93
|
+
$rte-big-table-row-height : 18px;
|
|
94
|
+
$rte-big-tablecell-height : 16px;
|
|
95
|
+
$rte-big-tablecell-width : 16px;
|
|
96
|
+
$rte-toolbar-item-frist-last-child-margin: 0 6px;
|
|
97
|
+
$rte-big-toolbar-item-frist-last-child-margin: 0 6px;
|
|
85
98
|
|
|
86
99
|
//Layout Variables End
|
|
87
100
|
|
|
@@ -93,6 +106,8 @@ $rte-full-screen-bg: $content-bg-color !default;
|
|
|
93
106
|
$rte-content-font-color: $content-text-color !default;
|
|
94
107
|
$rte-item-color: $content-text-color !default;
|
|
95
108
|
$rte-icons-color: $icon-color !default;
|
|
109
|
+
$rte-tlbar-expand-active: $icon-color !default;
|
|
110
|
+
$rte-hover-icons-color: $icon-color !default;
|
|
96
111
|
$rte-img-popup-border: 1px solid $border-light !default;
|
|
97
112
|
$rte-img-popup-box-shadow: $shadow !default;
|
|
98
113
|
$rte-img-popup-color: $border-light !default;
|
|
@@ -141,7 +156,7 @@ $rte-drop-text-clr: $content-text-color-alt2 !default;
|
|
|
141
156
|
$rte-default-character-count-color: $placeholder-text-color !default;
|
|
142
157
|
$rte-warning-character-count-color: $warning !default;
|
|
143
158
|
$rte-error-character-count-color: $danger !default;
|
|
144
|
-
$rte-img-border:
|
|
159
|
+
$rte-img-border: solid 2px $primary !default;
|
|
145
160
|
$rte-font-family: $font-family !default;
|
|
146
161
|
$rte-content-color: $content-text-color !default;
|
|
147
162
|
$rte-content-blockquote-border-left-color: solid 2px $content-text-color !default;
|
|
@@ -160,12 +175,18 @@ $rte-table-span-active-bg-color: $primary-lighter !default;
|
|
|
160
175
|
$rte-table-span-active-border-color: $primary !default;
|
|
161
176
|
$rte-table-select-border-color: $primary !default;
|
|
162
177
|
$rte-table-popup-bg: $flyout-bg-color !default;
|
|
178
|
+
$rte-table-resize-back-color: $flyout-bg-color !default;
|
|
163
179
|
$rte-table-popup-color: $border-light !default;
|
|
164
180
|
$rte-table-popup-box: $shadow !default;
|
|
165
181
|
$rte-table-border-color: $border-light !default;
|
|
166
182
|
$rte-table-alternate-color: $content-bg-color-alt1 !default;
|
|
167
183
|
$rte-table-header-bg: $content-bg-color-alt1 !default;
|
|
168
184
|
$rte-toolbar-hor-nav-border-width: 0 0 0 1px !default;
|
|
185
|
+
$rte-border-top-left-radius: 0;
|
|
186
|
+
$rte-border-top-right-radius: 0;
|
|
187
|
+
$rte-border-bottom-right-radius: 0;
|
|
188
|
+
$rte-border-bottom-left-radius: 0;
|
|
189
|
+
$rte-big-border-radius: 0;
|
|
169
190
|
|
|
170
191
|
//Theme Variables End
|
|
171
192
|
|
|
@@ -193,4 +214,6 @@ $rte-big-edit-table-dlg-max-height: 373px !default;
|
|
|
193
214
|
$toolbar-expand-icon-min-height: 40px !default;
|
|
194
215
|
$rte-align-caret-icon-min-width: 24px !default;
|
|
195
216
|
$rte-drop-text-width: 300px !default;
|
|
217
|
+
$rte-drop-text-height: 185px !default;
|
|
196
218
|
$rte-drop-text-mobile-width: 250px !default;
|
|
219
|
+
$rte-tbar-default-bg: $content-bg-color-alt1;
|
|
@@ -6,13 +6,14 @@ $rte-list-btn-flex: column !default;
|
|
|
6
6
|
$rte-list-btn-line-height: 1 !default;
|
|
7
7
|
$rte-split-btn-line-height: 40px !default;
|
|
8
8
|
$rte-big-split-btn-line-height: 50px !default;
|
|
9
|
-
$skin-name: 'highcontrast' !default;
|
|
10
9
|
$rte-border-color: $border-fg !default;
|
|
11
10
|
$rte-full-screen-bg: $bg-base-0 !default;
|
|
12
11
|
$rte-content-bg: $bg-base-0 !default;
|
|
13
12
|
$rte-content-font-color: #fff !default;
|
|
14
13
|
$rte-item-color: $content-font !default;
|
|
15
14
|
$rte-icons-color: $content-font !default;
|
|
15
|
+
$rte-tlbar-expand-active: $content-font !default;
|
|
16
|
+
$rte-hover-icons-color: $content-font !default;
|
|
16
17
|
$rte-content-padding: 16px !default;
|
|
17
18
|
$rte-table-popup-padding: 10px !default;
|
|
18
19
|
|
|
@@ -137,6 +138,7 @@ $rte-table-span-active-bg-color: rgba($selection-bg, .2) !default;
|
|
|
137
138
|
$rte-table-span-active-border-color: $selection-border !default;
|
|
138
139
|
$rte-table-select-border-color: #0478d7 !default;
|
|
139
140
|
$rte-table-popup-bg: $bg-base-0 !default;
|
|
141
|
+
$rte-table-resize-back-color: $bg-base-0 !default;
|
|
140
142
|
$rte-table-popup-color: $border-fg !default;
|
|
141
143
|
$rte-table-popup-box: 0 3px 8px 0 rgba($bg-base-75, .26) !default;
|
|
142
144
|
$rte-table-border-color: #bdbdbd !default;
|
|
@@ -187,4 +189,26 @@ $rte-big-file-browser-dlg-max-height: 557px !default;
|
|
|
187
189
|
$rte-big-table-dlg-max-height: 309px !default;
|
|
188
190
|
$rte-big-edit-table-dlg-max-height: 400px !default;
|
|
189
191
|
$rte-drop-text-width: 288px !default;
|
|
192
|
+
$rte-drop-text-height: 185px !default;
|
|
190
193
|
$rte-drop-text-mobile-width: 238px !default;
|
|
194
|
+
$rte-tbar-default-bg: $bg-base-0;
|
|
195
|
+
$rte-droparea-line-height: 10;
|
|
196
|
+
$rte-droparea-browsebtn-height: 36px;
|
|
197
|
+
$rte-droparea-browsebtn-padding: 0 18px;
|
|
198
|
+
$rte-droparea-browsebtn-top: -50px;
|
|
199
|
+
$rte-insert-dialog-font-size: 15px;
|
|
200
|
+
$rte-big-insert-dialog-font-size: 15px;
|
|
201
|
+
$rte-table-popup-tablecell-height: 14px;
|
|
202
|
+
$rte-table-popup-tablecell-width: 14px;
|
|
203
|
+
$rte-table-popup-tablecell-margin: 1px;
|
|
204
|
+
$rte-table-popup-row-height : 16px;
|
|
205
|
+
$rte-border-top-left-radius: 0;
|
|
206
|
+
$rte-border-top-right-radius: 0;
|
|
207
|
+
$rte-border-bottom-right-radius: 0;
|
|
208
|
+
$rte-border-bottom-left-radius: 0;
|
|
209
|
+
$rte-big-border-radius: 0;
|
|
210
|
+
$rte-big-table-row-height : 18px;
|
|
211
|
+
$rte-big-tablecell-height : 16px;
|
|
212
|
+
$rte-big-tablecell-width : 16px;
|
|
213
|
+
$rte-toolbar-item-frist-last-child-margin: 0 6px;
|
|
214
|
+
$rte-big-toolbar-item-frist-last-child-margin: 0 6px;
|
|
@@ -6,13 +6,14 @@ $rte-list-btn-flex: column !default;
|
|
|
6
6
|
$rte-list-btn-line-height: 1 !default;
|
|
7
7
|
$rte-split-btn-line-height: 39px !default;
|
|
8
8
|
$rte-big-split-btn-line-height: 47px !default;
|
|
9
|
-
$skin-name: 'highcontrast' !default;
|
|
10
9
|
$rte-border-color: $border-fg !default;
|
|
11
10
|
$rte-full-screen-bg: $bg-base-0 !default;
|
|
12
11
|
$rte-content-bg: $bg-base-0 !default;
|
|
13
12
|
$rte-content-font-color: #fff !default;
|
|
14
13
|
$rte-item-color: $content-font !default;
|
|
15
14
|
$rte-icons-color: $content-font !default;
|
|
15
|
+
$rte-tlbar-expand-active: $content-font !default;
|
|
16
|
+
$rte-hover-icons-color: $content-font !default;
|
|
16
17
|
$rte-table-popup-padding: 10px !default;
|
|
17
18
|
|
|
18
19
|
$rte-big-quick-item-btn-width: 39px !default;
|
|
@@ -137,6 +138,7 @@ $rte-table-span-active-bg-color: rgba($selection-bg, .2) !default;
|
|
|
137
138
|
$rte-table-span-active-border-color: $selection-border !default;
|
|
138
139
|
$rte-table-select-border-color: #0478d7 !default;
|
|
139
140
|
$rte-table-popup-bg: $bg-base-0 !default;
|
|
141
|
+
$rte-table-resize-back-color: $bg-base-0 !default;
|
|
140
142
|
$rte-table-popup-color: $border-fg !default;
|
|
141
143
|
$rte-table-popup-box: 0 3px 8px 0 rgba($bg-base-75, .26) !default;
|
|
142
144
|
$rte-table-border-color: #bdbdbd !default;
|
|
@@ -187,4 +189,26 @@ $rte-big-file-browser-dlg-max-height: 557px !default;
|
|
|
187
189
|
$rte-big-table-dlg-max-height: 309px !default;
|
|
188
190
|
$rte-big-edit-table-dlg-max-height: 400px !default;
|
|
189
191
|
$rte-drop-text-width: 288px !default;
|
|
192
|
+
$rte-drop-text-height: 185px !default;
|
|
190
193
|
$rte-drop-text-mobile-width: 238px !default;
|
|
194
|
+
$rte-tbar-default-bg: $bg-base-0;
|
|
195
|
+
$rte-droparea-line-height: 10;
|
|
196
|
+
$rte-droparea-browsebtn-height: 36px;
|
|
197
|
+
$rte-droparea-browsebtn-padding: 0 18px;
|
|
198
|
+
$rte-droparea-browsebtn-top: -50px;
|
|
199
|
+
$rte-insert-dialog-font-size: 15px;
|
|
200
|
+
$rte-big-insert-dialog-font-size: 15px;
|
|
201
|
+
$rte-table-popup-tablecell-height: 14px;
|
|
202
|
+
$rte-table-popup-tablecell-width: 14px;
|
|
203
|
+
$rte-table-popup-tablecell-margin: 1px;
|
|
204
|
+
$rte-table-popup-row-height : 16px;
|
|
205
|
+
$rte-border-top-left-radius: 0;
|
|
206
|
+
$rte-border-top-right-radius: 0;
|
|
207
|
+
$rte-border-bottom-right-radius: 0;
|
|
208
|
+
$rte-border-bottom-left-radius: 0;
|
|
209
|
+
$rte-big-border-radius: 0;
|
|
210
|
+
$rte-big-table-row-height : 18px;
|
|
211
|
+
$rte-big-tablecell-height : 16px;
|
|
212
|
+
$rte-big-tablecell-width : 16px;
|
|
213
|
+
$rte-toolbar-item-frist-last-child-margin: 0 6px;
|
|
214
|
+
$rte-big-toolbar-item-frist-last-child-margin: 0 6px;
|
|
@@ -223,6 +223,7 @@
|
|
|
223
223
|
}
|
|
224
224
|
|
|
225
225
|
.e-rte-toolbar.e-rte-tb-mobile .e-toolbar-multirow {
|
|
226
|
+
display: inline-block;
|
|
226
227
|
margin-left: 0;
|
|
227
228
|
margin-right: 0;
|
|
228
229
|
overflow-x: auto;
|
|
@@ -944,7 +945,7 @@
|
|
|
944
945
|
.e-videoheader,
|
|
945
946
|
.e-video-url-wrap {
|
|
946
947
|
font-family: $rte-font-family;
|
|
947
|
-
font-size:
|
|
948
|
+
font-size: $rte-insert-dialog-font-size;
|
|
948
949
|
opacity: .87;
|
|
949
950
|
padding-bottom: $rte-insert-dialog-label-padding-bottom;
|
|
950
951
|
padding-top: $rte-insert-dialog-label-padding-top;
|
|
@@ -1002,11 +1003,11 @@
|
|
|
1002
1003
|
.e-dialog .e-aud-uploadwrap.e-droparea .e-browsebtn,
|
|
1003
1004
|
.e-dialog .e-vid-uploadwrap.e-droparea .e-browsebtn {
|
|
1004
1005
|
display: block;
|
|
1005
|
-
height:
|
|
1006
|
+
height: $rte-droparea-browsebtn-height;
|
|
1006
1007
|
margin: 0 auto;
|
|
1007
|
-
padding:
|
|
1008
|
+
padding: $rte-droparea-browsebtn-padding;
|
|
1008
1009
|
position: relative;
|
|
1009
|
-
top: -
|
|
1010
|
+
top: $rte-droparea-browsebtn-top;
|
|
1010
1011
|
@if $skin-name == 'FluentUI' {
|
|
1011
1012
|
outline: none;
|
|
1012
1013
|
}
|
|
@@ -1026,7 +1027,7 @@
|
|
|
1026
1027
|
.e-dialog .e-img-uploadwrap.e-droparea,
|
|
1027
1028
|
.e-dialog .e-aud-uploadwrap.e-droparea,
|
|
1028
1029
|
.e-dialog .e-vid-uploadwrap.e-droparea {
|
|
1029
|
-
line-height:
|
|
1030
|
+
line-height: $rte-droparea-line-height;
|
|
1030
1031
|
min-height: 50px;
|
|
1031
1032
|
position: relative;
|
|
1032
1033
|
}
|
|
@@ -1079,15 +1080,15 @@
|
|
|
1079
1080
|
.e-rte-table-popup.e-popup-open .e-rte-tablecell {
|
|
1080
1081
|
border: $rte-table-span-border;
|
|
1081
1082
|
display: inline-block;
|
|
1082
|
-
height:
|
|
1083
|
-
margin:
|
|
1083
|
+
height: $rte-table-popup-tablecell-height;
|
|
1084
|
+
margin: $rte-table-popup-tablecell-margin;
|
|
1084
1085
|
overflow: hidden;
|
|
1085
1086
|
vertical-align: top;
|
|
1086
|
-
width:
|
|
1087
|
+
width: $rte-table-popup-tablecell-width;
|
|
1087
1088
|
}
|
|
1088
1089
|
|
|
1089
1090
|
.e-rte-table-popup.e-popup-open .e-rte-table-row {
|
|
1090
|
-
height:
|
|
1091
|
+
height: $rte-table-popup-row-height;
|
|
1091
1092
|
}
|
|
1092
1093
|
|
|
1093
1094
|
.e-rte-table-popup.e-popup-open .e-insert-table-btn {
|
|
@@ -1171,6 +1172,7 @@
|
|
|
1171
1172
|
|
|
1172
1173
|
.e-toolbar-items:not(.e-tbar-pos).e-toolbar-multirow {
|
|
1173
1174
|
white-space: nowrap;
|
|
1175
|
+
display: inline-block;
|
|
1174
1176
|
}
|
|
1175
1177
|
|
|
1176
1178
|
&.e-remove-white-space {
|
|
@@ -1194,7 +1196,7 @@
|
|
|
1194
1196
|
}
|
|
1195
1197
|
|
|
1196
1198
|
.e-toolbar-item {
|
|
1197
|
-
margin:
|
|
1199
|
+
margin: $rte-toolbar-item-frist-last-child-margin;
|
|
1198
1200
|
min-height: 42px;
|
|
1199
1201
|
|
|
1200
1202
|
&:first-child,
|
|
@@ -1304,7 +1306,7 @@
|
|
|
1304
1306
|
|
|
1305
1307
|
.e-toolbar-item:first-child,
|
|
1306
1308
|
.e-toolbar-item:last-child {
|
|
1307
|
-
margin:
|
|
1309
|
+
margin: $rte-big-toolbar-item-frist-last-child-margin;
|
|
1308
1310
|
}
|
|
1309
1311
|
|
|
1310
1312
|
.e-toolbar-item .e-tbar-btn.e-btn.e-control {
|
|
@@ -1611,12 +1613,12 @@
|
|
|
1611
1613
|
}
|
|
1612
1614
|
|
|
1613
1615
|
.e-bigger .e-rte-table-popup.e-popup-open .e-rte-tablecell {
|
|
1614
|
-
height:
|
|
1615
|
-
width:
|
|
1616
|
+
height: $rte-big-tablecell-height;
|
|
1617
|
+
width: $rte-big-tablecell-width;
|
|
1616
1618
|
}
|
|
1617
1619
|
|
|
1618
1620
|
.e-bigger .e-rte-table-popup.e-popup-open .e-rte-table-row {
|
|
1619
|
-
height:
|
|
1621
|
+
height: $rte-big-table-row-height;
|
|
1620
1622
|
}
|
|
1621
1623
|
|
|
1622
1624
|
.e-table-rhelper {
|
|
@@ -1729,7 +1731,7 @@
|
|
|
1729
1731
|
|
|
1730
1732
|
.e-linkheader {
|
|
1731
1733
|
font-family: $rte-font-family;
|
|
1732
|
-
font-size:
|
|
1734
|
+
font-size: $rte-big-insert-dialog-font-size;
|
|
1733
1735
|
opacity: .87;
|
|
1734
1736
|
padding-bottom: $rte-insert-dialog-label-padding-bottom;
|
|
1735
1737
|
padding-top: $rte-insert-dialog-label-padding-top;
|
|
@@ -1749,6 +1751,32 @@
|
|
|
1749
1751
|
}
|
|
1750
1752
|
}
|
|
1751
1753
|
|
|
1754
|
+
@if $skin-name == 'Material3' {
|
|
1755
|
+
.e-rte-toolbar .e-rte-table-popup .e-insert-table-btn{
|
|
1756
|
+
border-color: $outline;
|
|
1757
|
+
}
|
|
1758
|
+
.e-dialog .e-dlg-header-content + .e-dlg-content{
|
|
1759
|
+
padding-top: 0;
|
|
1760
|
+
}
|
|
1761
|
+
.e-bigger .e-richtexteditor,
|
|
1762
|
+
.e-richtexteditor.e-bigger {
|
|
1763
|
+
.e-dialog {
|
|
1764
|
+
border-radius: 16px;
|
|
1765
|
+
}
|
|
1766
|
+
}
|
|
1767
|
+
.e-dialog .e-dlg-content{
|
|
1768
|
+
padding: 7px 20px;
|
|
1769
|
+
}
|
|
1770
|
+
.e-toolbar-wrapper .e-toolbar .e-toolbar-item:not(.e-separator),
|
|
1771
|
+
.e-bigger .e-toolbar .e-toolbar-item:not(.e-separator) {
|
|
1772
|
+
padding: 8px 4px;
|
|
1773
|
+
}
|
|
1774
|
+
.e-rte-quick-popup .e-rte-toolbar.e-rte-quick-toolbar .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child,
|
|
1775
|
+
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:last-child {
|
|
1776
|
+
margin: 0;
|
|
1777
|
+
}
|
|
1778
|
+
}
|
|
1779
|
+
|
|
1752
1780
|
// Blazor styles start
|
|
1753
1781
|
.e-rte-upload-popup.e-dialog .e-file-select-wrap {
|
|
1754
1782
|
display: none;
|
|
@@ -1829,5 +1857,9 @@
|
|
|
1829
1857
|
.e-richtexteditor .e-rte-table-popup.e-popup-open.e-dialog .e-rte-tablecell {
|
|
1830
1858
|
margin: 1px;
|
|
1831
1859
|
}
|
|
1860
|
+
.e-transparent.e-rte-elements.e-tbar-btn.e-rte-fontcolor-dropdown,
|
|
1861
|
+
.e-transparent.e-rte-elements.e-tbar-btn.e-rte-backgroundcolor-dropdown {
|
|
1862
|
+
visibility: hidden;
|
|
1863
|
+
}
|
|
1832
1864
|
// Blazor styles end
|
|
1833
1865
|
}
|
|
@@ -7,7 +7,6 @@ $rte-list-btn-flex: column !default;
|
|
|
7
7
|
$rte-list-btn-line-height: 1 !default;
|
|
8
8
|
$rte-split-btn-line-height: 25px !default;
|
|
9
9
|
$rte-big-split-btn-line-height: 35px !default;
|
|
10
|
-
$skin-name: 'material' !default;
|
|
11
10
|
$rte-btn-color: rgba($grey-dark-font, .22) !default;
|
|
12
11
|
$rte-border-color: $grey-700 !default;
|
|
13
12
|
$rte-content-bg: $grey-dark !default;
|
|
@@ -15,6 +14,8 @@ $rte-full-screen-bg: $grey-dark !default;
|
|
|
15
14
|
$rte-content-font-color: $grey-dark-font !default;
|
|
16
15
|
$rte-item-color: $grey-dark-font !default;
|
|
17
16
|
$rte-icons-color: $grey-dark-font !default;
|
|
17
|
+
$rte-tlbar-expand-active: $grey-dark-font !default;
|
|
18
|
+
$rte-hover-icons-color: $grey-dark-font !default;
|
|
18
19
|
$rte-content-padding: 16px !default;
|
|
19
20
|
$rte-table-popup-padding: 10px !default;
|
|
20
21
|
$rte-toolbar-icon-size: 16px !default;
|
|
@@ -142,6 +143,7 @@ $rte-table-span-active-bg-color: rgba($accent, .2) !default;
|
|
|
142
143
|
$rte-table-span-active-border-color: $accent !default;
|
|
143
144
|
$rte-table-select-border-color: #0478d7 !default;
|
|
144
145
|
$rte-table-popup-bg: $grey-800 !default;
|
|
146
|
+
$rte-table-resize-back-color: $grey-800 !default;
|
|
145
147
|
$rte-table-popup-color: $grey-black !default;
|
|
146
148
|
$rte-table-popup-box: 0 3px 8px 0 rgba($grey-black, .26) !default;
|
|
147
149
|
$rte-table-border-color: rgba($grey-white, .5) !default;
|
|
@@ -189,6 +191,29 @@ $rte-big-file-browser-dlg-max-height: 557px !default;
|
|
|
189
191
|
$rte-big-table-dlg-max-height: 312px !default;
|
|
190
192
|
$rte-big-edit-table-dlg-max-height: 385px !default;
|
|
191
193
|
$rte-drop-text-width: 300px !default;
|
|
194
|
+
$rte-drop-text-height: 185px !default;
|
|
192
195
|
$rte-drop-text-mobile-width: 250px !default;
|
|
193
196
|
|
|
197
|
+
$rte-tbar-default-bg: $grey-900;
|
|
198
|
+
$rte-droparea-line-height: 10;
|
|
199
|
+
$rte-droparea-browsebtn-height: 36px;
|
|
200
|
+
$rte-droparea-browsebtn-padding: 0 18px;
|
|
201
|
+
$rte-droparea-browsebtn-top: -50px;
|
|
202
|
+
$rte-insert-dialog-font-size: 15px;
|
|
203
|
+
$rte-big-insert-dialog-font-size: 15px;
|
|
204
|
+
$rte-table-popup-tablecell-height: 14px;
|
|
205
|
+
$rte-table-popup-tablecell-width: 14px;
|
|
206
|
+
$rte-table-popup-tablecell-margin: 1px;
|
|
207
|
+
$rte-table-popup-row-height : 16px;
|
|
208
|
+
$rte-border-top-left-radius: 0;
|
|
209
|
+
$rte-border-top-right-radius: 0;
|
|
210
|
+
$rte-border-bottom-right-radius: 0;
|
|
211
|
+
$rte-border-bottom-left-radius: 0;
|
|
212
|
+
$rte-big-border-radius: 0;
|
|
213
|
+
$rte-big-table-row-height : 18px;
|
|
214
|
+
$rte-big-tablecell-height : 16px;
|
|
215
|
+
$rte-big-tablecell-width : 16px;
|
|
216
|
+
$rte-toolbar-item-frist-last-child-margin: 0 6px;
|
|
217
|
+
$rte-big-toolbar-item-frist-last-child-margin: 0 6px;
|
|
218
|
+
|
|
194
219
|
//enddefult
|
|
@@ -6,7 +6,6 @@ $rte-list-btn-flex: column !default;
|
|
|
6
6
|
$rte-list-btn-line-height: 1 !default;
|
|
7
7
|
$rte-split-btn-line-height: 25px !default;
|
|
8
8
|
$rte-big-split-btn-line-height: 35px !default;
|
|
9
|
-
$skin-name: 'material' !default;
|
|
10
9
|
$rte-btn-color: rgba($grey-black, .87) !default;
|
|
11
10
|
$rte-border-color: rgba($grey-black, .12) !default;
|
|
12
11
|
$rte-content-bg: $grey-white !default;
|
|
@@ -14,6 +13,8 @@ $rte-full-screen-bg: $grey-white !default;
|
|
|
14
13
|
$rte-content-font-color: #333 !default;
|
|
15
14
|
$rte-item-color: $grey-black !default;
|
|
16
15
|
$rte-icons-color: $grey-black !default;
|
|
16
|
+
$rte-tlbar-expand-active: $grey-black !default;
|
|
17
|
+
$rte-hover-icons-color: $grey-black !default;
|
|
17
18
|
$rte-content-padding: 16px !default;
|
|
18
19
|
$rte-table-popup-padding: 10px !default;
|
|
19
20
|
|
|
@@ -139,6 +140,7 @@ $rte-table-span-active-bg-color: rgba($accent, .2) !default;
|
|
|
139
140
|
$rte-table-span-active-border-color: $accent !default;
|
|
140
141
|
$rte-table-select-border-color: #0478d7 !default;
|
|
141
142
|
$rte-table-popup-bg: $grey-white !default;
|
|
143
|
+
$rte-table-resize-back-color: $grey-white !default;
|
|
142
144
|
$rte-table-popup-color: $grey-black !default;
|
|
143
145
|
$rte-table-popup-box: 0 3px 8px 0 rgba($grey-black, .26) !default;
|
|
144
146
|
$rte-table-border-color: #bdbdbd !default;
|
|
@@ -189,4 +191,26 @@ $rte-big-file-browser-dlg-max-height: 557px !default;
|
|
|
189
191
|
$rte-big-table-dlg-max-height: 312px !default;
|
|
190
192
|
$rte-big-edit-table-dlg-max-height: 385px !default;
|
|
191
193
|
$rte-drop-text-width: 300px !default;
|
|
194
|
+
$rte-drop-text-height: 185px !default;
|
|
192
195
|
$rte-drop-text-mobile-width: 250px !default;
|
|
196
|
+
$rte-tbar-default-bg: $grey-50;
|
|
197
|
+
$rte-droparea-line-height: 10;
|
|
198
|
+
$rte-droparea-browsebtn-height: 36px;
|
|
199
|
+
$rte-droparea-browsebtn-padding: 0 18px;
|
|
200
|
+
$rte-droparea-browsebtn-top: -50px;
|
|
201
|
+
$rte-insert-dialog-font-size: 15px;
|
|
202
|
+
$rte-big-insert-dialog-font-size: 15px;
|
|
203
|
+
$rte-table-popup-tablecell-height: 14px;
|
|
204
|
+
$rte-table-popup-tablecell-width: 14px;
|
|
205
|
+
$rte-table-popup-tablecell-margin: 1px;
|
|
206
|
+
$rte-table-popup-row-height : 16px;
|
|
207
|
+
$rte-border-top-left-radius: 0;
|
|
208
|
+
$rte-border-top-right-radius: 0;
|
|
209
|
+
$rte-border-bottom-right-radius: 0;
|
|
210
|
+
$rte-border-bottom-left-radius: 0;
|
|
211
|
+
$rte-big-border-radius: 0;
|
|
212
|
+
$rte-big-table-row-height : 18px;
|
|
213
|
+
$rte-big-tablecell-height : 16px;
|
|
214
|
+
$rte-big-tablecell-width : 16px;
|
|
215
|
+
$rte-toolbar-item-frist-last-child-margin: 0 6px;
|
|
216
|
+
$rte-big-toolbar-item-frist-last-child-margin: 0 6px;
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
$skin-name: 'tailwind' !default;
|
|
2
|
-
|
|
3
1
|
//Layout Variables Start
|
|
4
2
|
$rte-border-size: 1px !default;
|
|
5
3
|
$rte-2px-border-size: 2px !default;
|
|
@@ -29,8 +27,8 @@ $rte-big-quick-drop-btn-icon-size: 16px !default;
|
|
|
29
27
|
$rte-quick-drop-btn-icon-size: 14px !default;
|
|
30
28
|
$rte-big-quick-drop-btn-caret-icon-size: 10px !default;
|
|
31
29
|
$rte-quick-drop-btn-caret-icon-size: 12px !default;
|
|
32
|
-
$rte-big-quick-drop-btn-caret-font-size:
|
|
33
|
-
$rte-quick-drop-btn-caret-font-size:
|
|
30
|
+
$rte-big-quick-drop-btn-caret-font-size: $text-xs !default;
|
|
31
|
+
$rte-quick-drop-btn-caret-font-size: $text-xxs !default;
|
|
34
32
|
$rte-big-tb-items-margin-left: 3px !default;
|
|
35
33
|
$rte-tb-items-margin-left: 7px !default;
|
|
36
34
|
$rte-big-tb-items-padding-left: 3px !default;
|
|
@@ -70,7 +68,7 @@ $rte-big-quick-tbar-item-min-width: 39px !default;
|
|
|
70
68
|
$rte-content-font-size: $text-sm !default;
|
|
71
69
|
$rte-dropdown-caret-icon-size: $text-xs !default;
|
|
72
70
|
$rte-big-dropdown-caret-icon-size: $text-sm !default;
|
|
73
|
-
$font-weight:
|
|
71
|
+
$font-weight: $font-weight-normal !default;
|
|
74
72
|
$rte-table-popup-bdr-radius: 2px !default;
|
|
75
73
|
$rte-resize-handler-width: 15px;
|
|
76
74
|
$rte-resize-handler-height: 15px;
|
|
@@ -84,6 +82,21 @@ $rte-inline-tmp-color-min-width: 55px;
|
|
|
84
82
|
$rte-big-color-list-span-common-padding-left-right: 0;
|
|
85
83
|
$rte-placeholder-padding: 12px !default;
|
|
86
84
|
$rte-default-character-count-opacity: 1;
|
|
85
|
+
$rte-droparea-line-height: 10;
|
|
86
|
+
$rte-droparea-browsebtn-height: 36px;
|
|
87
|
+
$rte-droparea-browsebtn-padding: 0 18px;
|
|
88
|
+
$rte-droparea-browsebtn-top: -50px;
|
|
89
|
+
$rte-insert-dialog-font-size: 15px;
|
|
90
|
+
$rte-big-insert-dialog-font-size: 15px;
|
|
91
|
+
$rte-table-popup-tablecell-height: 14px;
|
|
92
|
+
$rte-table-popup-tablecell-width: 14px;
|
|
93
|
+
$rte-table-popup-tablecell-margin: 1px;
|
|
94
|
+
$rte-table-popup-row-height : 16px;
|
|
95
|
+
$rte-big-table-row-height : 18px;
|
|
96
|
+
$rte-big-tablecell-height : 16px;
|
|
97
|
+
$rte-big-tablecell-width : 16px;
|
|
98
|
+
$rte-toolbar-item-frist-last-child-margin: 0 6px;
|
|
99
|
+
$rte-big-toolbar-item-frist-last-child-margin: 0 6px;
|
|
87
100
|
|
|
88
101
|
//Layout Variables End
|
|
89
102
|
|
|
@@ -94,6 +107,8 @@ $rte-full-screen-bg: $content-bg-color !default;
|
|
|
94
107
|
$rte-content-font-color: $content-text-color !default;
|
|
95
108
|
$rte-item-color: $content-text-color !default;
|
|
96
109
|
$rte-icons-color: $icon-color !default;
|
|
110
|
+
$rte-tlbar-expand-active: $icon-color !default;
|
|
111
|
+
$rte-hover-icons-color: $icon-color !default;
|
|
97
112
|
$rte-img-popup-border: 1px solid $border-light !default;
|
|
98
113
|
$rte-img-popup-box-shadow: $shadow !default;
|
|
99
114
|
$rte-img-popup-color: $border-light !default;
|
|
@@ -162,12 +177,18 @@ $rte-table-span-active-bg-color: $primary-lighter !default;
|
|
|
162
177
|
$rte-table-span-active-border-color: $primary !default;
|
|
163
178
|
$rte-table-select-border-color: $primary !default;
|
|
164
179
|
$rte-table-popup-bg: $content-bg-color !default;
|
|
180
|
+
$rte-table-resize-back-color: $content-bg-color !default;
|
|
165
181
|
$rte-table-popup-color: $border-light !default;
|
|
166
182
|
$rte-table-popup-box: $shadow !default;
|
|
167
183
|
$rte-table-border-color: $border-light !default;
|
|
168
184
|
$rte-table-alternate-color: $content-bg-color-alt1 !default;
|
|
169
185
|
$rte-table-header-bg: $content-bg-color-alt1 !default;
|
|
170
186
|
$rte-toolbar-hor-nav-border-width: 0 0 0 1px !default;
|
|
187
|
+
$rte-border-top-left-radius: 0;
|
|
188
|
+
$rte-border-top-right-radius: 0;
|
|
189
|
+
$rte-border-bottom-right-radius: 0;
|
|
190
|
+
$rte-border-bottom-left-radius: 0;
|
|
191
|
+
$rte-big-border-radius: 0;
|
|
171
192
|
|
|
172
193
|
//Theme Variables End
|
|
173
194
|
|
|
@@ -191,4 +212,6 @@ $rte-big-file-browser-dlg-max-height: 557px !default;
|
|
|
191
212
|
$rte-big-table-dlg-max-height: 283px !default;
|
|
192
213
|
$rte-big-edit-table-dlg-max-height: 388px !default;
|
|
193
214
|
$rte-drop-text-width: 300px !default;
|
|
215
|
+
$rte-drop-text-height: 185px !default;
|
|
194
216
|
$rte-drop-text-mobile-width: 250px !default;
|
|
217
|
+
$rte-tbar-default-bg: $content-bg-color-alt2;
|
|
@@ -157,6 +157,9 @@
|
|
|
157
157
|
.e-toolbar-item .e-tbar-btn .e-icons {
|
|
158
158
|
color: $rte-icons-color;
|
|
159
159
|
}
|
|
160
|
+
.e-toolbar-item .e-tbar-btn:hover .e-icons {
|
|
161
|
+
color: $rte-hover-icons-color;
|
|
162
|
+
}
|
|
160
163
|
|
|
161
164
|
.e-toolbar-item.e-active .e-tbar-btn .e-icons {
|
|
162
165
|
color: $rte-tb-active-font-color;
|
|
@@ -193,13 +196,22 @@
|
|
|
193
196
|
border: 0;
|
|
194
197
|
}
|
|
195
198
|
|
|
199
|
+
.e-toolbar-wrapper {
|
|
200
|
+
background: $rte-tbar-default-bg;
|
|
201
|
+
}
|
|
202
|
+
|
|
196
203
|
img.e-img-focus::selection,
|
|
197
204
|
audio.e-audio-focus::selection,
|
|
198
205
|
.e-video-focus::selection {
|
|
199
206
|
background: transparent;
|
|
200
207
|
color: transparent;
|
|
201
208
|
}
|
|
202
|
-
|
|
209
|
+
@if $skin-name == 'Material3' {
|
|
210
|
+
::selection {
|
|
211
|
+
color: $white;
|
|
212
|
+
background: $primary;
|
|
213
|
+
}
|
|
214
|
+
}
|
|
203
215
|
.e-rte-content,
|
|
204
216
|
.e-source-content {
|
|
205
217
|
background: $rte-content-bg;
|
|
@@ -457,19 +469,24 @@
|
|
|
457
469
|
|
|
458
470
|
.e-dialog .e-img-uploadwrap .e-droptext,
|
|
459
471
|
.e-dialog .e-aud-uploadwrap .e-droptext,
|
|
460
|
-
.e-dialog .e-vid-uploadwrap .e-droptext
|
|
472
|
+
.e-dialog .e-vid-uploadwrap .e-droptext,
|
|
473
|
+
.e-dialog.e-device .e-vid-uploadwrap .e-droptext {
|
|
461
474
|
border: dashed 2px $rte-upload-drag-border-clr;
|
|
462
475
|
border-radius: 4px;
|
|
463
476
|
color: $rte-drop-text-clr;
|
|
464
477
|
display: block;
|
|
465
478
|
font-family: $rte-font-family;
|
|
466
479
|
font-size: 14px;
|
|
467
|
-
height:
|
|
480
|
+
height: $rte-drop-text-height;
|
|
468
481
|
margin: 0 auto;
|
|
469
482
|
text-align: center;
|
|
470
483
|
width: $rte-drop-text-width;
|
|
471
484
|
}
|
|
472
485
|
|
|
486
|
+
.e-dialog .e-vid-uploadwrap .e-droptext {
|
|
487
|
+
height: 108px;
|
|
488
|
+
}
|
|
489
|
+
|
|
473
490
|
.e-dialog.e-device.e-dlg-modal .e-img-uploadwrap .e-droptext,
|
|
474
491
|
.e-dialog.e-device.e-dlg-modal .e-vid-uploadwrap .e-droptext,
|
|
475
492
|
.e-dialog.e-device.e-dlg-modal .e-aud-uploadwrap .e-droptext {
|
|
@@ -577,7 +594,9 @@
|
|
|
577
594
|
}
|
|
578
595
|
|
|
579
596
|
.e-rte-table-popup .e-span-border {
|
|
580
|
-
|
|
597
|
+
@if $skin-name != 'Material3' {
|
|
598
|
+
border: 1px solid $rte-border-color;
|
|
599
|
+
}
|
|
581
600
|
display: block;
|
|
582
601
|
margin-bottom: 8px;
|
|
583
602
|
margin-top: 12px;
|
|
@@ -622,7 +641,7 @@
|
|
|
622
641
|
}
|
|
623
642
|
|
|
624
643
|
span.e-table-box {
|
|
625
|
-
background-color: $rte-table-
|
|
644
|
+
background-color: $rte-table-resize-back-color;
|
|
626
645
|
border: 1px solid $rte-table-border-color;
|
|
627
646
|
}
|
|
628
647
|
|
|
@@ -647,7 +666,9 @@
|
|
|
647
666
|
color: $rte-quick-item-active-font-color;
|
|
648
667
|
}
|
|
649
668
|
}
|
|
650
|
-
|
|
669
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-active .e-icons {
|
|
670
|
+
color: $rte-tlbar-expand-active;
|
|
671
|
+
}
|
|
651
672
|
@if $skin-name == 'tailwind' {
|
|
652
673
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended {
|
|
653
674
|
background: $rte-extended-toolbar-background;
|
|
@@ -688,6 +709,33 @@
|
|
|
688
709
|
}
|
|
689
710
|
}
|
|
690
711
|
|
|
712
|
+
@if $skin-name == 'Material3' {
|
|
713
|
+
.e-bigger .e-richtexteditor.e-rte-tb-expand {
|
|
714
|
+
border-radius: 8px;
|
|
715
|
+
}
|
|
716
|
+
.e-bigger .e-richtexteditor .e-toolbar-wrapper {
|
|
717
|
+
border-top-left-radius: $rte-border-top-left-radius;
|
|
718
|
+
border-top-right-radius: $rte-border-top-right-radius;
|
|
719
|
+
}
|
|
720
|
+
.e-bigger .e-richtexteditor.e-rte-tb-expand .e-rte-toolbar.e-extended-toolbar,
|
|
721
|
+
.e-bigger .e-richtexteditor.e-rte-tb-expand .e-rte-toolbar .e-toolbar-extended {
|
|
722
|
+
border-top-left-radius: $rte-border-top-left-radius;
|
|
723
|
+
border-top-right-radius: $rte-border-top-right-radius;
|
|
724
|
+
}
|
|
725
|
+
.e-bigger .e-toolbar .e-toolbar-items {
|
|
726
|
+
border-top-left-radius: $rte-border-top-left-radius;
|
|
727
|
+
}
|
|
728
|
+
.e-bigger .e-toolbar .e-hor-nav {
|
|
729
|
+
border-top-right-radius: $rte-border-top-right-radius;
|
|
730
|
+
}
|
|
731
|
+
.e-bigger .e-rtl .e-toolbar .e-hor-nav {
|
|
732
|
+
border-top-left-radius: $rte-border-top-left-radius;
|
|
733
|
+
border-top-right-radius: 0;
|
|
734
|
+
}
|
|
735
|
+
.e-bigger .e-rtl .e-toolbar .e-toolbar-items {
|
|
736
|
+
border-top-right-radius: $rte-border-top-right-radius;
|
|
737
|
+
}
|
|
738
|
+
}
|
|
691
739
|
// Blazor styles start
|
|
692
740
|
.e-richtexteditor.e-rte-tb-expand .e-rte-content-border {
|
|
693
741
|
border-bottom: 0;
|