@syncfusion/ej2-richtexteditor 19.4.56 → 20.1.50
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 +9 -67
- 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 +121 -40
- package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es5.js +119 -38
- 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/editor-manager/base/constant.d.ts +6 -0
- package/src/editor-manager/base/constant.js +6 -0
- package/src/editor-manager/plugin/clearformat.js +3 -2
- package/src/editor-manager/plugin/inserthtml.js +8 -4
- package/src/editor-manager/plugin/lists.js +18 -6
- package/src/editor-manager/plugin/ms-word-clean-up.js +6 -0
- package/src/editor-manager/plugin/table.js +6 -5
- package/src/editor-manager/plugin/undo.js +1 -1
- package/src/rich-text-editor/actions/count.js +2 -2
- package/src/rich-text-editor/actions/dropdown-buttons.js +1 -1
- package/src/rich-text-editor/actions/html-editor.js +3 -2
- package/src/rich-text-editor/actions/paste-clean-up.d.ts +1 -0
- package/src/rich-text-editor/actions/paste-clean-up.js +11 -1
- 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/rich-text-editor.js +4 -3
- package/src/rich-text-editor/renderer/image-module.js +21 -5
- package/src/rich-text-editor/renderer/table-module.js +20 -5
- package/src/selection/selection.js +3 -0
- package/styles/bootstrap-dark.css +6 -3
- package/styles/bootstrap.css +6 -3
- package/styles/bootstrap4.css +2 -2
- package/styles/bootstrap5-dark.css +30 -6
- package/styles/bootstrap5.css +31 -7
- package/styles/fabric-dark.css +2 -2
- package/styles/fabric.css +2 -2
- package/styles/fluent-dark.css +3001 -0
- package/styles/fluent-dark.scss +1 -0
- package/styles/fluent.css +3001 -0
- package/styles/fluent.scss +1 -0
- package/styles/highcontrast-light.css +2 -2
- package/styles/highcontrast.css +2 -2
- package/styles/material-dark.css +2 -2
- package/styles/material.css +2 -2
- package/styles/rich-text-editor/_bootstrap-dark-definition.scss +19 -0
- package/styles/rich-text-editor/_bootstrap-definition.scss +19 -0
- package/styles/rich-text-editor/_bootstrap4-definition.scss +19 -0
- package/styles/rich-text-editor/_bootstrap5-definition.scss +24 -3
- package/styles/rich-text-editor/_fabric-dark-definition.scss +19 -0
- package/styles/rich-text-editor/_fabric-definition.scss +19 -0
- package/styles/rich-text-editor/_fluent-dark-definition.scss +1 -0
- package/styles/rich-text-editor/_fluent-definition.scss +42 -19
- package/styles/rich-text-editor/_highcontrast-definition.scss +19 -0
- package/styles/rich-text-editor/_highcontrast-light-definition.scss +19 -0
- package/styles/rich-text-editor/_layout.scss +96 -6
- package/styles/rich-text-editor/_material-dark-definition.scss +18 -1
- package/styles/rich-text-editor/_material-definition.scss +19 -0
- package/styles/rich-text-editor/_tailwind-definition.scss +26 -6
- package/styles/rich-text-editor/_theme.scss +17 -2
- package/styles/rich-text-editor/bootstrap-dark.css +6 -3
- package/styles/rich-text-editor/bootstrap.css +6 -3
- package/styles/rich-text-editor/bootstrap4.css +2 -2
- package/styles/rich-text-editor/bootstrap5-dark.css +30 -6
- package/styles/rich-text-editor/bootstrap5.css +31 -7
- package/styles/rich-text-editor/fabric-dark.css +2 -2
- package/styles/rich-text-editor/fabric.css +2 -2
- package/styles/rich-text-editor/fluent-dark.css +3001 -0
- package/styles/rich-text-editor/fluent-dark.scss +4 -0
- package/styles/rich-text-editor/fluent.css +3001 -0
- package/styles/rich-text-editor/fluent.scss +4 -0
- package/styles/rich-text-editor/highcontrast-light.css +2 -2
- package/styles/rich-text-editor/highcontrast.css +2 -2
- package/styles/rich-text-editor/icons/_fluent-dark.scss +1 -0
- package/styles/rich-text-editor/icons/_fluent.scss +74 -74
- package/styles/rich-text-editor/icons/_tailwind.scss +73 -74
- package/styles/rich-text-editor/material-dark.css +2 -2
- package/styles/rich-text-editor/material.css +2 -2
- package/styles/rich-text-editor/tailwind-dark.css +104 -85
- package/styles/rich-text-editor/tailwind.css +105 -86
- package/styles/tailwind-dark.css +104 -85
- package/styles/tailwind.css +105 -86
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'rich-text-editor/fluent.scss';
|
|
@@ -745,6 +745,7 @@
|
|
|
745
745
|
line-height: 15px;
|
|
746
746
|
opacity: 00.54;
|
|
747
747
|
overflow: hidden;
|
|
748
|
+
padding: 16px;
|
|
748
749
|
position: absolute;
|
|
749
750
|
text-align: start;
|
|
750
751
|
top: 0;
|
|
@@ -909,10 +910,9 @@
|
|
|
909
910
|
.e-richtexteditor .e-rte-character-count {
|
|
910
911
|
bottom: 0;
|
|
911
912
|
color: #fff;
|
|
912
|
-
font-family: 'Times New Roman', Georgia, Serif;
|
|
913
913
|
font-size: 14px;
|
|
914
914
|
margin-right: 30px;
|
|
915
|
-
opacity:
|
|
915
|
+
opacity: 0.54;
|
|
916
916
|
padding-bottom: 2px;
|
|
917
917
|
position: absolute;
|
|
918
918
|
right: 0;
|
package/styles/highcontrast.css
CHANGED
|
@@ -745,6 +745,7 @@
|
|
|
745
745
|
line-height: 15px;
|
|
746
746
|
opacity: 00.54;
|
|
747
747
|
overflow: hidden;
|
|
748
|
+
padding: 16px;
|
|
748
749
|
position: absolute;
|
|
749
750
|
text-align: start;
|
|
750
751
|
top: 0;
|
|
@@ -909,10 +910,9 @@
|
|
|
909
910
|
.e-richtexteditor .e-rte-character-count {
|
|
910
911
|
bottom: 0;
|
|
911
912
|
color: #fff;
|
|
912
|
-
font-family: 'Times New Roman', Georgia, Serif;
|
|
913
913
|
font-size: 14px;
|
|
914
914
|
margin-right: 30px;
|
|
915
|
-
opacity:
|
|
915
|
+
opacity: 0.54;
|
|
916
916
|
padding-bottom: 2px;
|
|
917
917
|
position: absolute;
|
|
918
918
|
right: 0;
|
package/styles/material-dark.css
CHANGED
|
@@ -746,6 +746,7 @@
|
|
|
746
746
|
line-height: 16px;
|
|
747
747
|
opacity: 00.54;
|
|
748
748
|
overflow: hidden;
|
|
749
|
+
padding: 16px;
|
|
749
750
|
position: absolute;
|
|
750
751
|
text-align: start;
|
|
751
752
|
top: 0;
|
|
@@ -910,10 +911,9 @@
|
|
|
910
911
|
.e-richtexteditor .e-rte-character-count {
|
|
911
912
|
bottom: 0;
|
|
912
913
|
color: #fff;
|
|
913
|
-
font-family: 'Times New Roman', Georgia, Serif;
|
|
914
914
|
font-size: 14px;
|
|
915
915
|
margin-right: 30px;
|
|
916
|
-
opacity:
|
|
916
|
+
opacity: 0.54;
|
|
917
917
|
padding-bottom: 2px;
|
|
918
918
|
position: absolute;
|
|
919
919
|
right: 0;
|
package/styles/material.css
CHANGED
|
@@ -746,6 +746,7 @@
|
|
|
746
746
|
line-height: 16px;
|
|
747
747
|
opacity: 00.54;
|
|
748
748
|
overflow: hidden;
|
|
749
|
+
padding: 16px;
|
|
749
750
|
position: absolute;
|
|
750
751
|
text-align: start;
|
|
751
752
|
top: 0;
|
|
@@ -910,10 +911,9 @@
|
|
|
910
911
|
.e-richtexteditor .e-rte-character-count {
|
|
911
912
|
bottom: 0;
|
|
912
913
|
color: #000;
|
|
913
|
-
font-family: 'Times New Roman', Georgia, Serif;
|
|
914
914
|
font-size: 14px;
|
|
915
915
|
margin-right: 30px;
|
|
916
|
-
opacity:
|
|
916
|
+
opacity: 0.54;
|
|
917
917
|
padding-bottom: 2px;
|
|
918
918
|
position: absolute;
|
|
919
919
|
right: 0;
|
|
@@ -167,6 +167,25 @@ $rte-resize-handler-height: 15px;
|
|
|
167
167
|
$rte-resize-handler-position: 0;
|
|
168
168
|
|
|
169
169
|
$rte-big-color-list-span-common-padding-left-right: 0;
|
|
170
|
+
$rte-default-character-count-opacity: .54;
|
|
171
|
+
$rte-placeholder-padding: 16px !default;
|
|
172
|
+
|
|
173
|
+
$rte-img-dlg-min-height: 427px !default;
|
|
174
|
+
$rte-big-img-dlg-min-height: 458px !default;
|
|
175
|
+
$rte-link-dlg-min-height: 379px !default;
|
|
176
|
+
$rte-big-link-dlg-min-height: 412px !default;
|
|
177
|
+
$rte-table-dlg-min-height: 287px !default;
|
|
178
|
+
$rte-big-table-dlg-min-height: 330px !default;
|
|
179
|
+
$rte-img-alt-dlg-min-height: 183px !default;
|
|
180
|
+
$rte-big-img-alt-dlg-min-height: 214px !default;
|
|
181
|
+
$rte-img-link-dlg-min-height: 223px !default;
|
|
182
|
+
$rte-big-img-link-dlg-min-height: 256px !default;
|
|
183
|
+
$rte-img-size-dlg-min-height: 274px !default;
|
|
184
|
+
$rte-big-img-size-dlg-min-height: 317px !default;
|
|
185
|
+
$rte-edit-table-dlg-min-height: 365px !default;
|
|
186
|
+
$rte-big-edit-table-dlg-min-height: 414px !default;
|
|
187
|
+
$rte-file-browser-dlg-min-height: 625px !default;
|
|
188
|
+
$rte-big-file-browser-dlg-min-height: 656px !default;
|
|
170
189
|
//enddefault
|
|
171
190
|
|
|
172
191
|
@include export-module('richtexteditor-bootstrap') {
|
|
@@ -164,8 +164,27 @@ $rte-inline-tmp-color-min-width: 57px;
|
|
|
164
164
|
$rte-resize-handler-width: 15px;
|
|
165
165
|
$rte-resize-handler-height: 15px;
|
|
166
166
|
$rte-resize-handler-position: 0;
|
|
167
|
+
$rte-default-character-count-opacity: .54;
|
|
167
168
|
|
|
168
169
|
$rte-big-color-list-span-common-padding-left-right: 0;
|
|
170
|
+
$rte-placeholder-padding: 16px !default;
|
|
171
|
+
|
|
172
|
+
$rte-img-dlg-min-height: 427px !default;
|
|
173
|
+
$rte-big-img-dlg-min-height: 458px !default;
|
|
174
|
+
$rte-link-dlg-min-height: 379px !default;
|
|
175
|
+
$rte-big-link-dlg-min-height: 412px !default;
|
|
176
|
+
$rte-table-dlg-min-height: 287px !default;
|
|
177
|
+
$rte-big-table-dlg-min-height: 330px !default;
|
|
178
|
+
$rte-img-alt-dlg-min-height: 183px !default;
|
|
179
|
+
$rte-big-img-alt-dlg-min-height: 214px !default;
|
|
180
|
+
$rte-img-link-dlg-min-height: 223px !default;
|
|
181
|
+
$rte-big-img-link-dlg-min-height: 256px !default;
|
|
182
|
+
$rte-img-size-dlg-min-height: 274px !default;
|
|
183
|
+
$rte-big-img-size-dlg-min-height: 317px !default;
|
|
184
|
+
$rte-edit-table-dlg-min-height: 365px !default;
|
|
185
|
+
$rte-big-edit-table-dlg-min-height: 414px !default;
|
|
186
|
+
$rte-file-browser-dlg-min-height: 625px !default;
|
|
187
|
+
$rte-big-file-browser-dlg-min-height: 656px !default;
|
|
169
188
|
|
|
170
189
|
@include export-module('richtexteditor-bootstrap') {
|
|
171
190
|
.e-richtexteditor {
|
|
@@ -160,8 +160,27 @@ $rte-big-inline-tmp-size-min-width: 63px;
|
|
|
160
160
|
$rte-inline-tmp-size-min-width: 71px;
|
|
161
161
|
$rte-big-inline-tmp-color-min-width: 56px;
|
|
162
162
|
$rte-inline-tmp-color-min-width: 60px;
|
|
163
|
+
$rte-default-character-count-opacity: 1;
|
|
163
164
|
|
|
164
165
|
$rte-big-color-list-span-common-padding-left-right: 1px;
|
|
166
|
+
$rte-placeholder-padding: 16px !default;
|
|
167
|
+
|
|
168
|
+
$rte-img-dlg-min-height: 405px !default;
|
|
169
|
+
$rte-big-img-dlg-min-height: 429px !default;
|
|
170
|
+
$rte-link-dlg-min-height: 354px !default;
|
|
171
|
+
$rte-big-link-dlg-min-height: 389px !default;
|
|
172
|
+
$rte-table-dlg-min-height: 265px !default;
|
|
173
|
+
$rte-big-table-dlg-min-height: 302px !default;
|
|
174
|
+
$rte-img-alt-dlg-min-height: 170px !default;
|
|
175
|
+
$rte-big-img-alt-dlg-min-height: 192px !default;
|
|
176
|
+
$rte-img-link-dlg-min-height: 205px !default;
|
|
177
|
+
$rte-big-img-link-dlg-min-height: 231px !default;
|
|
178
|
+
$rte-img-size-dlg-min-height: 259px !default;
|
|
179
|
+
$rte-big-img-size-dlg-min-height: 301px !default;
|
|
180
|
+
$rte-edit-table-dlg-min-height: 334px !default;
|
|
181
|
+
$rte-big-edit-table-dlg-min-height: 378px !default;
|
|
182
|
+
$rte-file-browser-dlg-min-height: 615px !default;
|
|
183
|
+
$rte-big-file-browser-dlg-min-height: 615px !default;
|
|
165
184
|
|
|
166
185
|
@include export-module('richtexteditor-bootstrap4') {
|
|
167
186
|
.e-richtexteditor {
|
|
@@ -80,6 +80,7 @@ $rte-inline-tmp-size-min-width: 66px;
|
|
|
80
80
|
$rte-big-inline-tmp-color-min-width: 50px;
|
|
81
81
|
$rte-inline-tmp-color-min-width: 55px;
|
|
82
82
|
$rte-big-color-list-span-common-padding-left-right: 0;
|
|
83
|
+
$rte-default-character-count-opacity: 1;
|
|
83
84
|
//Layout Variables End
|
|
84
85
|
|
|
85
86
|
//Theme Variables Start
|
|
@@ -89,12 +90,12 @@ $rte-content-bg: $content-bg-color !default;
|
|
|
89
90
|
$rte-full-screen-bg: $content-bg-color !default;
|
|
90
91
|
$rte-content-font-color: $content-text-color !default;
|
|
91
92
|
$rte-item-color: $content-text-color !default;
|
|
92
|
-
$rte-icons-color: $
|
|
93
|
+
$rte-icons-color: $icon-color !default;
|
|
93
94
|
$rte-img-popup-border: 1px solid $border-light !default;
|
|
94
95
|
$rte-img-popup-box-shadow: $shadow !default;
|
|
95
96
|
$rte-img-popup-color: $border-light !default;
|
|
96
97
|
$rte-quick-item-active-bg: $secondary-bg-color-pressed !default;
|
|
97
|
-
$rte-quick-item-active-font-color: $
|
|
98
|
+
$rte-quick-item-active-font-color: $secondary-text-color-hover !default;
|
|
98
99
|
$rte-quick-item-border: 0 !default;
|
|
99
100
|
$rte-quick-item-hover-border-color: $secondary-border-color-hover !default;
|
|
100
101
|
$rte-quick-item-active-border-color: $secondary-border-color-pressed !default;
|
|
@@ -135,7 +136,7 @@ $rte-link-valid-color: $danger !default;
|
|
|
135
136
|
$rte-upload-drag-border-clr: $border-dark !default;
|
|
136
137
|
$rte-img-header-clr: $content-text-color !default;
|
|
137
138
|
$rte-drop-text-clr: $content-text-color-alt2 !default;
|
|
138
|
-
$rte-default-character-count-color: $
|
|
139
|
+
$rte-default-character-count-color: $placeholder-text-color !default;
|
|
139
140
|
$rte-warning-character-count-color: $warning !default;
|
|
140
141
|
$rte-error-character-count-color: $danger !default;
|
|
141
142
|
$rte-img-border: dashed 2px $primary !default;
|
|
@@ -166,3 +167,23 @@ $rte-table-header-bg: $content-bg-color-alt1 !default;
|
|
|
166
167
|
|
|
167
168
|
$rte-tb-hover-font-color: $secondary-text-color-hover;
|
|
168
169
|
$transparent: $transparent;
|
|
170
|
+
$rte-placeholder-padding: 16px !default;
|
|
171
|
+
|
|
172
|
+
$rte-img-dlg-min-height: 390px !default;
|
|
173
|
+
$rte-big-img-dlg-min-height: 425px !default;
|
|
174
|
+
$rte-link-dlg-min-height: 339px !default;
|
|
175
|
+
$rte-big-link-dlg-min-height: 385px !default;
|
|
176
|
+
$rte-table-dlg-min-height: 253px !default;
|
|
177
|
+
$rte-big-table-dlg-min-height: 299px !default;
|
|
178
|
+
$rte-img-alt-dlg-min-height: 159px !default;
|
|
179
|
+
$rte-big-img-alt-dlg-min-height: 193px !default;
|
|
180
|
+
$rte-img-link-dlg-min-height: 192px !default;
|
|
181
|
+
$rte-big-img-link-dlg-min-height: 229px !default;
|
|
182
|
+
$rte-img-size-dlg-min-height: 247px !default;
|
|
183
|
+
$rte-big-img-size-dlg-min-height: 299px !default;
|
|
184
|
+
$rte-edit-table-dlg-min-height: 321px !default;
|
|
185
|
+
$rte-big-edit-table-dlg-min-height: 373px !default;
|
|
186
|
+
$rte-file-browser-dlg-min-height: 586px !default;
|
|
187
|
+
$rte-big-file-browser-dlg-min-height: 641px !default;
|
|
188
|
+
$toolbar-expand-icon-min-height: 40px !default;
|
|
189
|
+
$rte-align-caret-icon-min-width: 24px !default;
|
|
@@ -163,6 +163,25 @@ $rte-inline-tmp-color-min-width: 50px;
|
|
|
163
163
|
$rte-resize-handler-width: 15px;
|
|
164
164
|
$rte-resize-handler-height: 15px;
|
|
165
165
|
$rte-resize-handler-position: 0;
|
|
166
|
+
$rte-default-character-count-opacity: .6;
|
|
166
167
|
|
|
167
168
|
$rte-big-color-list-span-common-padding-left-right: 0;
|
|
169
|
+
$rte-placeholder-padding: 16px !default;
|
|
170
|
+
|
|
171
|
+
$rte-img-dlg-min-height: 430px !default;
|
|
172
|
+
$rte-big-img-dlg-min-height: 456px !default;
|
|
173
|
+
$rte-link-dlg-min-height: 389px !default;
|
|
174
|
+
$rte-big-link-dlg-min-height: 415px !default;
|
|
175
|
+
$rte-table-dlg-min-height: 335px !default;
|
|
176
|
+
$rte-big-table-dlg-min-height: 302px !default;
|
|
177
|
+
$rte-img-alt-dlg-min-height: 183px !default;
|
|
178
|
+
$rte-big-img-alt-dlg-min-height: 209px !default;
|
|
179
|
+
$rte-img-link-dlg-min-height: 226px !default;
|
|
180
|
+
$rte-big-img-link-dlg-min-height: 252px !default;
|
|
181
|
+
$rte-img-size-dlg-min-height: 279px !default;
|
|
182
|
+
$rte-big-img-size-dlg-min-height: 321px !default;
|
|
183
|
+
$rte-edit-table-dlg-min-height: 373px !default;
|
|
184
|
+
$rte-big-edit-table-dlg-min-height: 423px !default;
|
|
185
|
+
$rte-file-browser-dlg-min-height: 630px !default;
|
|
186
|
+
$rte-big-file-browser-dlg-min-height: 630px !default;
|
|
168
187
|
//enddefault
|
|
@@ -163,5 +163,24 @@ $rte-inline-tmp-color-min-width: 50px;
|
|
|
163
163
|
$rte-resize-handler-width: 15px;
|
|
164
164
|
$rte-resize-handler-height: 15px;
|
|
165
165
|
$rte-resize-handler-position: 0;
|
|
166
|
+
$rte-default-character-count-opacity: .54;
|
|
166
167
|
|
|
167
168
|
$rte-big-color-list-span-common-padding-left-right: 0;
|
|
169
|
+
$rte-placeholder-padding: 16px !default;
|
|
170
|
+
|
|
171
|
+
$rte-img-dlg-min-height: 430px !default;
|
|
172
|
+
$rte-big-img-dlg-min-height: 456px !default;
|
|
173
|
+
$rte-link-dlg-min-height: 389px !default;
|
|
174
|
+
$rte-big-link-dlg-min-height: 415px !default;
|
|
175
|
+
$rte-table-dlg-min-height: 293px !default;
|
|
176
|
+
$rte-big-table-dlg-min-height: 302px !default;
|
|
177
|
+
$rte-img-alt-dlg-min-height: 183px !default;
|
|
178
|
+
$rte-big-img-alt-dlg-min-height: 209px !default;
|
|
179
|
+
$rte-img-link-dlg-min-height: 226px !default;
|
|
180
|
+
$rte-big-img-link-dlg-min-height: 252px !default;
|
|
181
|
+
$rte-img-size-dlg-min-height: 279px !default;
|
|
182
|
+
$rte-big-img-size-dlg-min-height: 321px !default;
|
|
183
|
+
$rte-edit-table-dlg-min-height: 373px !default;
|
|
184
|
+
$rte-big-edit-table-dlg-min-height: 423px !default;
|
|
185
|
+
$rte-file-browser-dlg-min-height: 630px !default;
|
|
186
|
+
$rte-big-file-browser-dlg-min-height: 630px !default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './fluent-definition.scss';
|
|
@@ -5,13 +5,15 @@ $rte-2px-border-size: 2px !default;
|
|
|
5
5
|
$rte-border-type: solid !default;
|
|
6
6
|
$rte-list-btn-flex: column !default;
|
|
7
7
|
$rte-list-btn-line-height: 1 !default;
|
|
8
|
-
$rte-split-btn-line-height:
|
|
9
|
-
$rte-big-split-btn-line-height:
|
|
10
|
-
$rte-big-quick-item-btn-width:
|
|
11
|
-
$rte-quick-item-btn-width:
|
|
12
|
-
$rte-big-quick-item-btn-height:
|
|
13
|
-
$rte-quick-item-btn-height:
|
|
8
|
+
$rte-split-btn-line-height: 22px !default;
|
|
9
|
+
$rte-big-split-btn-line-height: 30px !default;
|
|
10
|
+
$rte-big-quick-item-btn-width: 48px !default;
|
|
11
|
+
$rte-quick-item-btn-width: 36px !default;
|
|
12
|
+
$rte-big-quick-item-btn-height: 48px !default;
|
|
13
|
+
$rte-quick-item-btn-height: 36px !default;
|
|
14
14
|
$rte-big-quick-item-padding: 0 !default;
|
|
15
|
+
$rte-quick-item-padding-left: 7px !default;
|
|
16
|
+
$rte-quick-item-padding-right: 7px !default;
|
|
15
17
|
$rte-quick-item-padding: 0 !default;
|
|
16
18
|
$rte-quick-item-icon-min-width: 20px !default;
|
|
17
19
|
$rte-big-quick-item-line-height: $leading-normal !default;
|
|
@@ -51,11 +53,13 @@ $rte-big-drop-btn-padding-left: 10px !default;
|
|
|
51
53
|
$rte-big-drop-btn-padding-right: 6px !default;
|
|
52
54
|
$rte-big-drop-btn-action-padding-left: 10px !default;
|
|
53
55
|
$rte-big-drop-btn-action-padding-right: 6px !default;
|
|
54
|
-
$rte-colorpicker-parent-padding:
|
|
55
|
-
$rte-colorpicker-parent-padding-hover:
|
|
56
|
-
$rte-colorpicker-parent-padding-
|
|
56
|
+
$rte-colorpicker-parent-padding: 7px !default;
|
|
57
|
+
$rte-colorpicker-parent-padding-hover: 7px !default;
|
|
58
|
+
$rte-colorpicker-parent-padding-top: 7px !default;
|
|
59
|
+
$rte-colorpicker-parent-padding-hover-top: 7px !default;
|
|
60
|
+
$rte-colorpicker-parent-padding-active-hover: 7px !default;
|
|
57
61
|
$rte-font-icon-width: 30px !default;
|
|
58
|
-
$rte-font-arrow-width:
|
|
62
|
+
$rte-font-arrow-width: 12px !default;
|
|
59
63
|
$rte-font-arrow-touch-width: 20px !default;
|
|
60
64
|
$rte-font-icon-line-height: $leading-tight !default;
|
|
61
65
|
$rte-placeholder-line-height: $leading-normal !default;
|
|
@@ -63,8 +67,8 @@ $rte-big-active-tb-item-btn-padding: 0 6px !default;
|
|
|
63
67
|
$rte-table-popup-padding: 10px !default;
|
|
64
68
|
$rte-insert-dialog-label-padding-top: 12px !default;
|
|
65
69
|
$rte-insert-dialog-label-padding-bottom: 12px !default;
|
|
66
|
-
$rte-big-quick-tbar-item-min-height:
|
|
67
|
-
$rte-big-quick-tbar-item-min-width:
|
|
70
|
+
$rte-big-quick-tbar-item-min-height: 48px !default;
|
|
71
|
+
$rte-big-quick-tbar-item-min-width: 48px !default;
|
|
68
72
|
$rte-content-font-size: $text-sm !default;
|
|
69
73
|
$rte-dropdown-caret-icon-size: $text-xs !default;
|
|
70
74
|
$rte-big-dropdown-caret-icon-size: $text-sm !default;
|
|
@@ -74,12 +78,13 @@ $rte-resize-handler-width: 15px;
|
|
|
74
78
|
$rte-resize-handler-height: 15px;
|
|
75
79
|
$rte-resize-handler-position: 0;
|
|
76
80
|
$rte-big-inline-tmp-min-width: 48px;
|
|
77
|
-
$rte-inline-tmp-min-width:
|
|
81
|
+
$rte-inline-tmp-min-width: 36px;
|
|
78
82
|
$rte-big-inline-tmp-size-min-width: 59px;
|
|
79
83
|
$rte-inline-tmp-size-min-width: 66px;
|
|
80
84
|
$rte-big-inline-tmp-color-min-width: 50px;
|
|
81
|
-
$rte-inline-tmp-color-min-width:
|
|
82
|
-
$rte-big-color-list-span-common-padding-left-right:
|
|
85
|
+
$rte-inline-tmp-color-min-width: 36px;
|
|
86
|
+
$rte-big-color-list-span-common-padding-left-right: 7px;
|
|
87
|
+
$rte-default-character-count-opacity: .8;
|
|
83
88
|
//Layout Variables End
|
|
84
89
|
|
|
85
90
|
//Theme Variables Start
|
|
@@ -110,20 +115,20 @@ $rte-quick-pop-item-focus-bg: $content-bg-color-alt4 !default;
|
|
|
110
115
|
$rte-quick-tb-btn-hover: $content-bg-color-alt4 !default;
|
|
111
116
|
$rte-tb-item-active-bg: $content-bg-color-alt5 !default;
|
|
112
117
|
$rte-tb-active-font-color: $icon-color !default;
|
|
113
|
-
$rte-tb-item-active-border:
|
|
118
|
+
$rte-tb-item-active-border: 0 solid $secondary-border-color-pressed !default;
|
|
114
119
|
$rte-expand-tb-border-bottom: $rte-border-size $rte-border-type $border-light !default;
|
|
115
120
|
$rte-color-picker-active-bg: inherit !default;
|
|
116
121
|
$rte-drop-btn-active-bg: $secondary-bg-color-pressed !default;
|
|
117
122
|
$rte-drop-btn-active-color: $icon-color !default;
|
|
118
123
|
$rte-drop-btn-active-border-color: $secondary-border-color-pressed !default;
|
|
119
124
|
$rte-split-btn-active-hover-font-color: $icon-color !default;
|
|
120
|
-
$rte-split-btn-color: $
|
|
125
|
+
$rte-split-btn-color: $icon-color !default;
|
|
121
126
|
$rte-split-btn-active-color: $icon-color !default;
|
|
122
127
|
$rte-split-btn-hover-bg: $content-bg-color-alt3 !default;
|
|
123
128
|
$rte-split-btn-active-bg: $content-bg-color-alt5 !default;
|
|
124
129
|
$rte-split-btn-span-hover-bg: $content-bg-color-alt3 !default;
|
|
125
130
|
$rte-split-btn-span-focus-bg: $content-bg-color-alt3 !default;
|
|
126
|
-
$rte-split-btn-span-active-bg: $content-bg-color-
|
|
131
|
+
$rte-split-btn-span-active-bg: $content-bg-color-alt3 !default;
|
|
127
132
|
$rte-split-btn-bar-bg: $content-bg-color !default;
|
|
128
133
|
$rte-split-btn-active-bar-bg: $content-bg-color !default;
|
|
129
134
|
$rte-split-btn-bar-size: 0 !default;
|
|
@@ -135,7 +140,7 @@ $rte-link-valid-color: $danger !default;
|
|
|
135
140
|
$rte-upload-drag-border-clr: $border-dark !default;
|
|
136
141
|
$rte-img-header-clr: $content-text-color !default;
|
|
137
142
|
$rte-drop-text-clr: $content-text-color-alt2 !default;
|
|
138
|
-
$rte-default-character-count-color: $
|
|
143
|
+
$rte-default-character-count-color: $placeholder-text-color !default;
|
|
139
144
|
$rte-warning-character-count-color: $warning !default;
|
|
140
145
|
$rte-error-character-count-color: $danger !default;
|
|
141
146
|
$rte-img-border: dashed 2px $primary !default;
|
|
@@ -166,3 +171,21 @@ $rte-table-header-bg: $content-bg-color-alt1 !default;
|
|
|
166
171
|
|
|
167
172
|
$rte-tb-hover-font-color: $secondary-text-color-hover;
|
|
168
173
|
$transparent: $transparent;
|
|
174
|
+
$rte-placeholder-padding: 24px !default;
|
|
175
|
+
|
|
176
|
+
$rte-img-dlg-min-height: 410px !default;
|
|
177
|
+
$rte-big-img-dlg-min-height: 434px !default;
|
|
178
|
+
$rte-link-dlg-min-height: 360px !default;
|
|
179
|
+
$rte-big-link-dlg-min-height: 397px !default;
|
|
180
|
+
$rte-table-dlg-min-height: 273px !default;
|
|
181
|
+
$rte-big-table-dlg-min-height: 312px !default;
|
|
182
|
+
$rte-img-alt-dlg-min-height: 179px !default;
|
|
183
|
+
$rte-big-img-alt-dlg-min-height: 202px !default;
|
|
184
|
+
$rte-img-link-dlg-min-height: 213px !default;
|
|
185
|
+
$rte-big-img-link-dlg-min-height: 241px !default;
|
|
186
|
+
$rte-img-size-dlg-min-height: 267px !default;
|
|
187
|
+
$rte-big-img-size-dlg-min-height: 312px !default;
|
|
188
|
+
$rte-edit-table-dlg-min-height: 341px !default;
|
|
189
|
+
$rte-big-edit-table-dlg-min-height: 388px !default;
|
|
190
|
+
$rte-file-browser-dlg-min-height: 586px !default;
|
|
191
|
+
$rte-big-file-browser-dlg-min-height: 586px !default;
|
|
@@ -163,5 +163,24 @@ $rte-inline-tmp-color-min-width: 54px;
|
|
|
163
163
|
$rte-resize-handler-width: 15px;
|
|
164
164
|
$rte-resize-handler-height: 15px;
|
|
165
165
|
$rte-resize-handler-position: 0;
|
|
166
|
+
$rte-default-character-count-opacity: .54;
|
|
166
167
|
|
|
167
168
|
$rte-big-color-list-span-common-padding-left-right: 0;
|
|
169
|
+
$rte-placeholder-padding: 16px !default;
|
|
170
|
+
|
|
171
|
+
$rte-img-dlg-min-height: 433px !default;
|
|
172
|
+
$rte-big-img-dlg-min-height: 433px !default;
|
|
173
|
+
$rte-link-dlg-min-height: 391px !default;
|
|
174
|
+
$rte-big-link-dlg-min-height: 392px !default;
|
|
175
|
+
$rte-table-dlg-min-height: 295px !default;
|
|
176
|
+
$rte-big-table-dlg-min-height: 312px !default;
|
|
177
|
+
$rte-img-alt-dlg-min-height: 185px !default;
|
|
178
|
+
$rte-big-img-alt-dlg-min-height: 186px !default;
|
|
179
|
+
$rte-img-link-dlg-min-height: 228px !default;
|
|
180
|
+
$rte-big-img-link-dlg-min-height: 229px !default;
|
|
181
|
+
$rte-img-size-dlg-min-height: 281px !default;
|
|
182
|
+
$rte-big-img-size-dlg-min-height: 298px !default;
|
|
183
|
+
$rte-edit-table-dlg-min-height: 375px !default;
|
|
184
|
+
$rte-big-edit-table-dlg-min-height: 400px !default;
|
|
185
|
+
$rte-file-browser-dlg-min-height: 632px !default;
|
|
186
|
+
$rte-big-file-browser-dlg-min-height: 632px !default;
|
|
@@ -163,5 +163,24 @@ $rte-inline-tmp-color-min-width: 54px;
|
|
|
163
163
|
$rte-resize-handler-width: 15px;
|
|
164
164
|
$rte-resize-handler-height: 15px;
|
|
165
165
|
$rte-resize-handler-position: 0;
|
|
166
|
+
$rte-default-character-count-opacity: .54;
|
|
166
167
|
|
|
167
168
|
$rte-big-color-list-span-common-padding-left-right: 0;
|
|
169
|
+
$rte-placeholder-padding: 16px !default;
|
|
170
|
+
|
|
171
|
+
$rte-img-dlg-min-height: 433px !default;
|
|
172
|
+
$rte-big-img-dlg-min-height: 433px !default;
|
|
173
|
+
$rte-link-dlg-min-height: 391px !default;
|
|
174
|
+
$rte-big-link-dlg-min-height: 392px !default;
|
|
175
|
+
$rte-table-dlg-min-height: 295px !default;
|
|
176
|
+
$rte-big-table-dlg-min-height: 312px !default;
|
|
177
|
+
$rte-img-alt-dlg-min-height: 185px !default;
|
|
178
|
+
$rte-big-img-alt-dlg-min-height: 186px !default;
|
|
179
|
+
$rte-img-link-dlg-min-height: 228px !default;
|
|
180
|
+
$rte-big-img-link-dlg-min-height: 229px !default;
|
|
181
|
+
$rte-img-size-dlg-min-height: 281px !default;
|
|
182
|
+
$rte-big-img-size-dlg-min-height: 298px !default;
|
|
183
|
+
$rte-edit-table-dlg-min-height: 375px !default;
|
|
184
|
+
$rte-big-edit-table-dlg-min-height: 400px !default;
|
|
185
|
+
$rte-file-browser-dlg-min-height: 632px !default;
|
|
186
|
+
$rte-big-file-browser-dlg-min-height: 632px !default;
|
|
@@ -57,6 +57,15 @@
|
|
|
57
57
|
|
|
58
58
|
.e-toolbar-item.e-active .e-tbar-btn.e-btn {
|
|
59
59
|
padding: $rte-big-active-tb-item-btn-padding;
|
|
60
|
+
@if $skin-name == 'FluentUI' {
|
|
61
|
+
border-radius: 0;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
@if $skin-name == 'bootstrap5' {
|
|
67
|
+
.e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn.e-btn {
|
|
68
|
+
padding: 0 8px;
|
|
60
69
|
}
|
|
61
70
|
}
|
|
62
71
|
}
|
|
@@ -127,6 +136,12 @@
|
|
|
127
136
|
|
|
128
137
|
.e-rte-toolbar {
|
|
129
138
|
|
|
139
|
+
@if $skin-name == 'bootstrap5' {
|
|
140
|
+
&.e-toolbar .e-hor-nav {
|
|
141
|
+
min-height: $toolbar-expand-icon-min-height;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
|
|
130
145
|
.e-toolbar-items:not(.e-tbar-pos):not(.e-toolbar-multirow) .e-toolbar-item:first-child {
|
|
131
146
|
margin-left: $rte-tb-items-margin-left;
|
|
132
147
|
}
|
|
@@ -242,10 +257,19 @@
|
|
|
242
257
|
|
|
243
258
|
&.e-active .e-tbar-btn.e-btn {
|
|
244
259
|
padding: $rte-active-tb-item-btn-padding;
|
|
260
|
+
@if $skin-name == 'FluentUI' {
|
|
261
|
+
border-radius: 0;
|
|
262
|
+
}
|
|
245
263
|
}
|
|
246
264
|
}
|
|
247
265
|
}
|
|
248
266
|
|
|
267
|
+
@if $skin-name == 'bootstrap5' {
|
|
268
|
+
.e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn.e-btn {
|
|
269
|
+
padding: 0 4px;
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
|
|
249
273
|
&.e-control[class*='e-toolbar'] {
|
|
250
274
|
box-sizing: border-box;
|
|
251
275
|
}
|
|
@@ -291,6 +315,7 @@
|
|
|
291
315
|
line-height: $rte-placeholder-line-height;
|
|
292
316
|
opacity: 00.54;
|
|
293
317
|
overflow: hidden;
|
|
318
|
+
padding: $rte-placeholder-padding;
|
|
294
319
|
position: absolute;
|
|
295
320
|
text-align: start;
|
|
296
321
|
top: 0;
|
|
@@ -431,10 +456,9 @@
|
|
|
431
456
|
.e-rte-character-count {
|
|
432
457
|
bottom: 0;
|
|
433
458
|
color: $rte-default-character-count-color;
|
|
434
|
-
font-family: 'Times New Roman', Georgia, Serif;
|
|
435
459
|
font-size: 14px;
|
|
436
460
|
margin-right: 30px;
|
|
437
|
-
opacity:
|
|
461
|
+
opacity: $rte-default-character-count-opacity;
|
|
438
462
|
padding-bottom: 2px;
|
|
439
463
|
position: absolute;
|
|
440
464
|
right: 0;
|
|
@@ -900,6 +924,9 @@
|
|
|
900
924
|
padding: 0 18px;
|
|
901
925
|
position: relative;
|
|
902
926
|
top: -50px;
|
|
927
|
+
@if $skin-name == 'FluentUI' {
|
|
928
|
+
outline: none;
|
|
929
|
+
}
|
|
903
930
|
}
|
|
904
931
|
|
|
905
932
|
.e-dialog.e-device.e-dlg-modal .e-img-uploadwrap.e-droparea .e-browsebtn {
|
|
@@ -1092,6 +1119,10 @@
|
|
|
1092
1119
|
min-height: $rte-quick-item-btn-height;
|
|
1093
1120
|
min-width: $rte-quick-item-btn-width;
|
|
1094
1121
|
padding: $rte-quick-item-padding;
|
|
1122
|
+
@if $skin-name == 'FluentUI' {
|
|
1123
|
+
padding-left: $rte-quick-item-padding-left;
|
|
1124
|
+
padding-right: $rte-quick-item-padding-right;
|
|
1125
|
+
}
|
|
1095
1126
|
}
|
|
1096
1127
|
}
|
|
1097
1128
|
|
|
@@ -1168,6 +1199,10 @@
|
|
|
1168
1199
|
min-height: $rte-big-quick-item-btn-height;
|
|
1169
1200
|
min-width: $rte-big-quick-item-btn-width;
|
|
1170
1201
|
padding: $rte-big-quick-item-padding;
|
|
1202
|
+
@if $skin-name == 'FluentUI' {
|
|
1203
|
+
padding-left: $rte-quick-item-padding-left;
|
|
1204
|
+
padding-right: $rte-quick-item-padding-right;
|
|
1205
|
+
}
|
|
1171
1206
|
}
|
|
1172
1207
|
|
|
1173
1208
|
.e-toolbar-item:first-child,
|
|
@@ -1245,6 +1280,19 @@
|
|
|
1245
1280
|
}
|
|
1246
1281
|
}
|
|
1247
1282
|
|
|
1283
|
+
.e-rte-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item {
|
|
1284
|
+
button.e-rte-fontcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control,
|
|
1285
|
+
button.e-rte-backgroundcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control,
|
|
1286
|
+
button.e-rte-numberformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control,
|
|
1287
|
+
button.e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control {
|
|
1288
|
+
@if $skin-name == 'FluentUI' {
|
|
1289
|
+
.e-btn-icon.e-icons.e-caret {
|
|
1290
|
+
padding-top: 4px;
|
|
1291
|
+
}
|
|
1292
|
+
}
|
|
1293
|
+
}
|
|
1294
|
+
}
|
|
1295
|
+
|
|
1248
1296
|
.e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item,
|
|
1249
1297
|
.e-rte-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item,
|
|
1250
1298
|
.e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item,
|
|
@@ -1257,6 +1305,9 @@
|
|
|
1257
1305
|
display: flex;
|
|
1258
1306
|
padding-left: $rte-colorpicker-parent-padding;
|
|
1259
1307
|
padding-right: $rte-colorpicker-parent-padding;
|
|
1308
|
+
@if $skin-name == 'FluentUI' {
|
|
1309
|
+
padding-top: $rte-colorpicker-parent-padding-top;
|
|
1310
|
+
}
|
|
1260
1311
|
|
|
1261
1312
|
&:hover,
|
|
1262
1313
|
&:active,
|
|
@@ -1264,6 +1315,9 @@
|
|
|
1264
1315
|
&.e-active:hover {
|
|
1265
1316
|
padding-left: $rte-colorpicker-parent-padding-hover;
|
|
1266
1317
|
padding-right: $rte-colorpicker-parent-padding-hover;
|
|
1318
|
+
@if $skin-name == 'FluentUI' {
|
|
1319
|
+
padding-top: $rte-colorpicker-parent-padding-hover-top;
|
|
1320
|
+
}
|
|
1267
1321
|
}
|
|
1268
1322
|
|
|
1269
1323
|
.e-rte-color-content,
|
|
@@ -1316,6 +1370,11 @@
|
|
|
1316
1370
|
padding-right: 0;
|
|
1317
1371
|
}
|
|
1318
1372
|
}
|
|
1373
|
+
@if $skin-name == 'FluentUI' {
|
|
1374
|
+
.e-icons.e-btn-icon.e-caret {
|
|
1375
|
+
padding-bottom: 4px;
|
|
1376
|
+
}
|
|
1377
|
+
}
|
|
1319
1378
|
}
|
|
1320
1379
|
|
|
1321
1380
|
button.e-rte-fontcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control,
|
|
@@ -1326,7 +1385,7 @@
|
|
|
1326
1385
|
.e-rte-color-content,
|
|
1327
1386
|
.e-rte-list-primary-content {
|
|
1328
1387
|
line-height: $rte-split-btn-line-height;
|
|
1329
|
-
|
|
1388
|
+
}
|
|
1330
1389
|
}
|
|
1331
1390
|
|
|
1332
1391
|
.e-dropdown-btn .e-btn-icon.e-caret {
|
|
@@ -1338,6 +1397,18 @@
|
|
|
1338
1397
|
}
|
|
1339
1398
|
}
|
|
1340
1399
|
}
|
|
1400
|
+
@if $skin-name == 'bootstrap5' {
|
|
1401
|
+
.e-dropdown-btn.e-alignment-tbar-btn .e-btn-icon.e-caret {
|
|
1402
|
+
min-width: $rte-align-caret-icon-min-width;
|
|
1403
|
+
}
|
|
1404
|
+
}
|
|
1405
|
+
|
|
1406
|
+
@if $skin-name == 'FluentUI' {
|
|
1407
|
+
.e-dropdown-btn:focus,
|
|
1408
|
+
.e-dropdown-btn.e-btn:focus {
|
|
1409
|
+
box-shadow: none;
|
|
1410
|
+
}
|
|
1411
|
+
}
|
|
1341
1412
|
}
|
|
1342
1413
|
|
|
1343
1414
|
.e-rte-inline-dropdown .e-rte-color-content .e-rte-elements {
|
|
@@ -1348,6 +1419,19 @@
|
|
|
1348
1419
|
}
|
|
1349
1420
|
|
|
1350
1421
|
.e-bigger {
|
|
1422
|
+
.e-rte-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item {
|
|
1423
|
+
button.e-rte-fontcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control,
|
|
1424
|
+
button.e-rte-backgroundcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control,
|
|
1425
|
+
button.e-rte-numberformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control,
|
|
1426
|
+
button.e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control {
|
|
1427
|
+
@if $skin-name == 'FluentUI' {
|
|
1428
|
+
.e-btn-icon.e-icons.e-caret {
|
|
1429
|
+
padding-top: 4px;
|
|
1430
|
+
}
|
|
1431
|
+
}
|
|
1432
|
+
}
|
|
1433
|
+
}
|
|
1434
|
+
|
|
1351
1435
|
.e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item,
|
|
1352
1436
|
.e-rte-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item,
|
|
1353
1437
|
.e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item,
|
|
@@ -1387,7 +1471,7 @@
|
|
|
1387
1471
|
.e-rte-list-primary-content {
|
|
1388
1472
|
line-height: $rte-big-split-btn-line-height;
|
|
1389
1473
|
}
|
|
1390
|
-
|
|
1474
|
+
}
|
|
1391
1475
|
|
|
1392
1476
|
.e-dropdown-btn .e-caret {
|
|
1393
1477
|
font-size: $rte-big-dropdown-caret-icon-size;
|
|
@@ -1527,6 +1611,9 @@
|
|
|
1527
1611
|
padding: 0 18px;
|
|
1528
1612
|
position: relative;
|
|
1529
1613
|
top: -50px;
|
|
1614
|
+
@if $skin-name == 'FluentUI' {
|
|
1615
|
+
outline: none;
|
|
1616
|
+
}
|
|
1530
1617
|
}
|
|
1531
1618
|
|
|
1532
1619
|
.e-upload {
|
|
@@ -1625,8 +1712,11 @@
|
|
|
1625
1712
|
}
|
|
1626
1713
|
}
|
|
1627
1714
|
|
|
1628
|
-
@if $skin-name == 'bootstrap' or $skin-name == 'bootstrap-dark' {
|
|
1629
|
-
.e-rte-quick-toolbar.e-
|
|
1715
|
+
@if $skin-name == 'bootstrap' or $skin-name == 'bootstrap-dark' or $skin-name == 'FluentUI' {
|
|
1716
|
+
.e-rte-quick-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-rte-backgroundcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control,
|
|
1717
|
+
.e-rte-quick-toolbar.e-rte-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-rte-backgroundcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control:hover,
|
|
1718
|
+
.e-rte-quick-toolbar.e-rte-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-rte-backgroundcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control:active,
|
|
1719
|
+
.e-rte-quick-toolbar.e-rte-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-rte-backgroundcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control.e-active {
|
|
1630
1720
|
padding-left: 0;
|
|
1631
1721
|
padding-right: 0;
|
|
1632
1722
|
}
|