@syncfusion/ej2-image-editor 20.4.49 → 21.1.35
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 -0
- package/dist/ej2-image-editor.umd.min.js +2 -2
- package/dist/ej2-image-editor.umd.min.js.map +1 -1
- package/dist/es6/ej2-image-editor.es2015.js +4119 -1956
- package/dist/es6/ej2-image-editor.es2015.js.map +1 -1
- package/dist/es6/ej2-image-editor.es5.js +4227 -2059
- package/dist/es6/ej2-image-editor.es5.js.map +1 -1
- package/dist/global/ej2-image-editor.min.js +2 -2
- package/dist/global/ej2-image-editor.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +12 -12
- package/src/image-editor/image-editor-model.d.ts +306 -100
- package/src/image-editor/image-editor.d.ts +853 -276
- package/src/image-editor/image-editor.js +4227 -2060
- package/styles/bootstrap-dark.css +10 -5
- package/styles/bootstrap.css +10 -5
- package/styles/bootstrap4.css +10 -5
- package/styles/bootstrap5-dark.css +12 -8
- package/styles/bootstrap5.css +12 -8
- package/styles/fabric-dark.css +10 -5
- package/styles/fabric.css +10 -5
- package/styles/fluent-dark.css +10 -5
- package/styles/fluent.css +10 -5
- package/styles/highcontrast-light.css +10 -5
- package/styles/highcontrast.css +10 -5
- package/styles/image-editor/_layout.scss +7 -11
- package/styles/image-editor/_theme.scss +4 -4
- package/styles/image-editor/bootstrap-dark.css +10 -5
- package/styles/image-editor/bootstrap.css +10 -5
- package/styles/image-editor/bootstrap4.css +10 -5
- package/styles/image-editor/bootstrap5-dark.css +12 -8
- package/styles/image-editor/bootstrap5.css +12 -8
- package/styles/image-editor/fabric-dark.css +10 -5
- package/styles/image-editor/fabric.css +10 -5
- package/styles/image-editor/fluent-dark.css +10 -5
- package/styles/image-editor/fluent.css +10 -5
- package/styles/image-editor/highcontrast-light.css +10 -5
- package/styles/image-editor/highcontrast.css +10 -5
- package/styles/image-editor/material-dark.css +10 -13
- package/styles/image-editor/material.css +10 -8
- package/styles/image-editor/tailwind-dark.css +10 -5
- package/styles/image-editor/tailwind.css +10 -5
- package/styles/material-dark.css +10 -13
- package/styles/material.css +10 -8
- package/styles/tailwind-dark.css +10 -5
- package/styles/tailwind.css +10 -5
- package/styles/image-editor/_material3-definition.scss +0 -11
|
@@ -123,6 +123,11 @@
|
|
|
123
123
|
content: "\e970";
|
|
124
124
|
}
|
|
125
125
|
|
|
126
|
+
.e-ie-toolbar-upload-div.e-hide,
|
|
127
|
+
.e-ie-toolbar-upload-btn.e-hide {
|
|
128
|
+
display: none;
|
|
129
|
+
}
|
|
130
|
+
|
|
126
131
|
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
127
132
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
128
133
|
}
|
|
@@ -228,7 +233,7 @@
|
|
|
228
233
|
.e-image-editor .e-toolbar-area + .e-canvas-wrapper {
|
|
229
234
|
border-top: 1px solid #acacac;
|
|
230
235
|
}
|
|
231
|
-
.e-image-editor .e-canvas-wrapper .e-textarea {
|
|
236
|
+
.e-image-editor .e-toolbar-area + .e-canvas-wrapper .e-textarea {
|
|
232
237
|
line-height: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
233
238
|
}
|
|
234
239
|
.e-image-editor .e-bottom-toolbar {
|
|
@@ -280,24 +285,24 @@
|
|
|
280
285
|
background: inherit;
|
|
281
286
|
border: none;
|
|
282
287
|
margin-top: 2px;
|
|
283
|
-
background
|
|
288
|
+
background: #131313;
|
|
284
289
|
color: #f0f0f0;
|
|
285
290
|
}
|
|
286
291
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-caret-hide {
|
|
287
292
|
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
288
293
|
}
|
|
289
294
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
|
|
290
|
-
background
|
|
295
|
+
background: #313131;
|
|
291
296
|
box-shadow: none;
|
|
292
297
|
color: #f0f0f0;
|
|
293
298
|
}
|
|
294
299
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
|
|
295
|
-
background
|
|
300
|
+
background: #2a2a2a;
|
|
296
301
|
box-shadow: none;
|
|
297
302
|
color: #fff;
|
|
298
303
|
}
|
|
299
304
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
|
|
300
|
-
background
|
|
305
|
+
background: #2a2a2a;
|
|
301
306
|
box-shadow: none;
|
|
302
307
|
color: #fff;
|
|
303
308
|
}
|
package/styles/bootstrap.css
CHANGED
|
@@ -123,6 +123,11 @@
|
|
|
123
123
|
content: "\e970";
|
|
124
124
|
}
|
|
125
125
|
|
|
126
|
+
.e-ie-toolbar-upload-div.e-hide,
|
|
127
|
+
.e-ie-toolbar-upload-btn.e-hide {
|
|
128
|
+
display: none;
|
|
129
|
+
}
|
|
130
|
+
|
|
126
131
|
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
127
132
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
128
133
|
}
|
|
@@ -228,7 +233,7 @@
|
|
|
228
233
|
.e-image-editor .e-toolbar-area + .e-canvas-wrapper {
|
|
229
234
|
border-top: 1px solid #ccc;
|
|
230
235
|
}
|
|
231
|
-
.e-image-editor .e-canvas-wrapper .e-textarea {
|
|
236
|
+
.e-image-editor .e-toolbar-area + .e-canvas-wrapper .e-textarea {
|
|
232
237
|
line-height: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
233
238
|
}
|
|
234
239
|
.e-image-editor .e-bottom-toolbar {
|
|
@@ -280,24 +285,24 @@
|
|
|
280
285
|
background: inherit;
|
|
281
286
|
border: none;
|
|
282
287
|
margin-top: 2px;
|
|
283
|
-
background
|
|
288
|
+
background: #f8f8f8;
|
|
284
289
|
color: #333;
|
|
285
290
|
}
|
|
286
291
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-caret-hide {
|
|
287
292
|
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
288
293
|
}
|
|
289
294
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
|
|
290
|
-
background
|
|
295
|
+
background: #e6e6e6;
|
|
291
296
|
box-shadow: none;
|
|
292
297
|
color: #333;
|
|
293
298
|
}
|
|
294
299
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
|
|
295
|
-
background
|
|
300
|
+
background: #e6e6e6;
|
|
296
301
|
box-shadow: none;
|
|
297
302
|
color: #333;
|
|
298
303
|
}
|
|
299
304
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
|
|
300
|
-
background
|
|
305
|
+
background: #e6e6e6;
|
|
301
306
|
box-shadow: none;
|
|
302
307
|
color: #333;
|
|
303
308
|
}
|
package/styles/bootstrap4.css
CHANGED
|
@@ -123,6 +123,11 @@
|
|
|
123
123
|
content: "\e95f";
|
|
124
124
|
}
|
|
125
125
|
|
|
126
|
+
.e-ie-toolbar-upload-div.e-hide,
|
|
127
|
+
.e-ie-toolbar-upload-btn.e-hide {
|
|
128
|
+
display: none;
|
|
129
|
+
}
|
|
130
|
+
|
|
126
131
|
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
127
132
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
128
133
|
}
|
|
@@ -226,7 +231,7 @@
|
|
|
226
231
|
.e-image-editor .e-toolbar-area + .e-canvas-wrapper {
|
|
227
232
|
border-top: 1px solid #dee2e6;
|
|
228
233
|
}
|
|
229
|
-
.e-image-editor .e-canvas-wrapper .e-textarea {
|
|
234
|
+
.e-image-editor .e-toolbar-area + .e-canvas-wrapper .e-textarea {
|
|
230
235
|
line-height: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
231
236
|
}
|
|
232
237
|
.e-image-editor .e-bottom-toolbar {
|
|
@@ -275,24 +280,24 @@
|
|
|
275
280
|
background: inherit;
|
|
276
281
|
border: none;
|
|
277
282
|
margin-top: 2px;
|
|
278
|
-
background
|
|
283
|
+
background: #f8f9fa;
|
|
279
284
|
color: #495057;
|
|
280
285
|
}
|
|
281
286
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-caret-hide {
|
|
282
287
|
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
283
288
|
}
|
|
284
289
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
|
|
285
|
-
background
|
|
290
|
+
background: #5a6268;
|
|
286
291
|
box-shadow: none;
|
|
287
292
|
color: #fff;
|
|
288
293
|
}
|
|
289
294
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
|
|
290
|
-
background
|
|
295
|
+
background: #6c757d;
|
|
291
296
|
box-shadow: none;
|
|
292
297
|
color: #fff;
|
|
293
298
|
}
|
|
294
299
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
|
|
295
|
-
background
|
|
300
|
+
background: #545b62;
|
|
296
301
|
box-shadow: none;
|
|
297
302
|
color: #fff;
|
|
298
303
|
}
|
|
@@ -134,6 +134,11 @@
|
|
|
134
134
|
content: "\e82e";
|
|
135
135
|
}
|
|
136
136
|
|
|
137
|
+
.e-ie-toolbar-upload-div.e-hide,
|
|
138
|
+
.e-ie-toolbar-upload-btn.e-hide {
|
|
139
|
+
display: none;
|
|
140
|
+
}
|
|
141
|
+
|
|
137
142
|
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
138
143
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
139
144
|
}
|
|
@@ -155,6 +160,7 @@
|
|
|
155
160
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
156
161
|
font-size: 20px;
|
|
157
162
|
padding-top: 4px;
|
|
163
|
+
padding-bottom: 4px;
|
|
158
164
|
}
|
|
159
165
|
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
160
166
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
@@ -203,6 +209,7 @@
|
|
|
203
209
|
.e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
204
210
|
font-size: 18px;
|
|
205
211
|
padding-top: 4px;
|
|
212
|
+
padding-bottom: 4px;
|
|
206
213
|
}
|
|
207
214
|
.e-image-editor .e-toolbar .e-toolbar-items .e-upload {
|
|
208
215
|
border: none;
|
|
@@ -210,9 +217,6 @@
|
|
|
210
217
|
.e-image-editor .e-toolbar .e-toolbar-items .e-file-select-wrap {
|
|
211
218
|
padding: 0;
|
|
212
219
|
}
|
|
213
|
-
.e-image-editor .e-toolbar .e-toolbar-items .e-file-select-wrap .e-btn-icon {
|
|
214
|
-
margin-top: -2px !important; /* stylelint-disable-line declaration-no-important */
|
|
215
|
-
}
|
|
216
220
|
.e-image-editor .e-toolbar .e-toolbar-items .e-image-upload .e-file-select, .e-image-editor .e-toolbar .e-toolbar-items .e-image-upload .e-file-drop, .e-image-editor .e-toolbar .e-toolbar-items .e-image-upload .e-upload-files {
|
|
217
221
|
display: none;
|
|
218
222
|
}
|
|
@@ -245,7 +249,7 @@
|
|
|
245
249
|
.e-image-editor .e-toolbar-area + .e-canvas-wrapper {
|
|
246
250
|
border-top: 1px solid #343a40;
|
|
247
251
|
}
|
|
248
|
-
.e-image-editor .e-canvas-wrapper .e-textarea {
|
|
252
|
+
.e-image-editor .e-toolbar-area + .e-canvas-wrapper .e-textarea {
|
|
249
253
|
line-height: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
250
254
|
}
|
|
251
255
|
.e-image-editor .e-bottom-toolbar {
|
|
@@ -297,24 +301,24 @@
|
|
|
297
301
|
background: inherit;
|
|
298
302
|
border: none;
|
|
299
303
|
margin-top: -1px;
|
|
300
|
-
background
|
|
304
|
+
background: #282d31;
|
|
301
305
|
color: #adb5bd;
|
|
302
306
|
}
|
|
303
307
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-caret-hide {
|
|
304
308
|
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
305
309
|
}
|
|
306
310
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
|
|
307
|
-
background
|
|
311
|
+
background: #5c636a;
|
|
308
312
|
box-shadow: none;
|
|
309
313
|
color: #fff;
|
|
310
314
|
}
|
|
311
315
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
|
|
312
|
-
background
|
|
316
|
+
background: #5c636a;
|
|
313
317
|
box-shadow: none;
|
|
314
318
|
color: #fff;
|
|
315
319
|
}
|
|
316
320
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
|
|
317
|
-
background
|
|
321
|
+
background: #565e64;
|
|
318
322
|
box-shadow: none;
|
|
319
323
|
color: #fff;
|
|
320
324
|
}
|
package/styles/bootstrap5.css
CHANGED
|
@@ -134,6 +134,11 @@
|
|
|
134
134
|
content: "\e82e";
|
|
135
135
|
}
|
|
136
136
|
|
|
137
|
+
.e-ie-toolbar-upload-div.e-hide,
|
|
138
|
+
.e-ie-toolbar-upload-btn.e-hide {
|
|
139
|
+
display: none;
|
|
140
|
+
}
|
|
141
|
+
|
|
137
142
|
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
138
143
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
139
144
|
}
|
|
@@ -155,6 +160,7 @@
|
|
|
155
160
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
156
161
|
font-size: 20px;
|
|
157
162
|
padding-top: 4px;
|
|
163
|
+
padding-bottom: 4px;
|
|
158
164
|
}
|
|
159
165
|
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
160
166
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
@@ -203,6 +209,7 @@
|
|
|
203
209
|
.e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
204
210
|
font-size: 18px;
|
|
205
211
|
padding-top: 4px;
|
|
212
|
+
padding-bottom: 4px;
|
|
206
213
|
}
|
|
207
214
|
.e-image-editor .e-toolbar .e-toolbar-items .e-upload {
|
|
208
215
|
border: none;
|
|
@@ -210,9 +217,6 @@
|
|
|
210
217
|
.e-image-editor .e-toolbar .e-toolbar-items .e-file-select-wrap {
|
|
211
218
|
padding: 0;
|
|
212
219
|
}
|
|
213
|
-
.e-image-editor .e-toolbar .e-toolbar-items .e-file-select-wrap .e-btn-icon {
|
|
214
|
-
margin-top: -2px !important; /* stylelint-disable-line declaration-no-important */
|
|
215
|
-
}
|
|
216
220
|
.e-image-editor .e-toolbar .e-toolbar-items .e-image-upload .e-file-select, .e-image-editor .e-toolbar .e-toolbar-items .e-image-upload .e-file-drop, .e-image-editor .e-toolbar .e-toolbar-items .e-image-upload .e-upload-files {
|
|
217
221
|
display: none;
|
|
218
222
|
}
|
|
@@ -245,7 +249,7 @@
|
|
|
245
249
|
.e-image-editor .e-toolbar-area + .e-canvas-wrapper {
|
|
246
250
|
border-top: 1px solid #e9ecef;
|
|
247
251
|
}
|
|
248
|
-
.e-image-editor .e-canvas-wrapper .e-textarea {
|
|
252
|
+
.e-image-editor .e-toolbar-area + .e-canvas-wrapper .e-textarea {
|
|
249
253
|
line-height: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
250
254
|
}
|
|
251
255
|
.e-image-editor .e-bottom-toolbar {
|
|
@@ -297,24 +301,24 @@
|
|
|
297
301
|
background: inherit;
|
|
298
302
|
border: none;
|
|
299
303
|
margin-top: -1px;
|
|
300
|
-
background
|
|
304
|
+
background: #f8f9fa;
|
|
301
305
|
color: #6c757d;
|
|
302
306
|
}
|
|
303
307
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-caret-hide {
|
|
304
308
|
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
305
309
|
}
|
|
306
310
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
|
|
307
|
-
background
|
|
311
|
+
background: #5c636a;
|
|
308
312
|
box-shadow: none;
|
|
309
313
|
color: #fff;
|
|
310
314
|
}
|
|
311
315
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
|
|
312
|
-
background
|
|
316
|
+
background: #5c636a;
|
|
313
317
|
box-shadow: none;
|
|
314
318
|
color: #fff;
|
|
315
319
|
}
|
|
316
320
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
|
|
317
|
-
background
|
|
321
|
+
background: #565e64;
|
|
318
322
|
box-shadow: none;
|
|
319
323
|
color: #fff;
|
|
320
324
|
}
|
package/styles/fabric-dark.css
CHANGED
|
@@ -123,6 +123,11 @@
|
|
|
123
123
|
content: "\e952";
|
|
124
124
|
}
|
|
125
125
|
|
|
126
|
+
.e-ie-toolbar-upload-div.e-hide,
|
|
127
|
+
.e-ie-toolbar-upload-btn.e-hide {
|
|
128
|
+
display: none;
|
|
129
|
+
}
|
|
130
|
+
|
|
126
131
|
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
127
132
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
128
133
|
}
|
|
@@ -228,7 +233,7 @@
|
|
|
228
233
|
.e-image-editor .e-toolbar-area + .e-canvas-wrapper {
|
|
229
234
|
border-top: 1px solid #414040;
|
|
230
235
|
}
|
|
231
|
-
.e-image-editor .e-canvas-wrapper .e-textarea {
|
|
236
|
+
.e-image-editor .e-toolbar-area + .e-canvas-wrapper .e-textarea {
|
|
232
237
|
line-height: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
233
238
|
}
|
|
234
239
|
.e-image-editor .e-bottom-toolbar {
|
|
@@ -280,24 +285,24 @@
|
|
|
280
285
|
background: inherit;
|
|
281
286
|
border: none;
|
|
282
287
|
margin-top: 0;
|
|
283
|
-
background
|
|
288
|
+
background: #333232;
|
|
284
289
|
color: #dadada;
|
|
285
290
|
}
|
|
286
291
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-caret-hide {
|
|
287
292
|
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
288
293
|
}
|
|
289
294
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
|
|
290
|
-
background
|
|
295
|
+
background: #514f4f;
|
|
291
296
|
box-shadow: none;
|
|
292
297
|
color: #fff;
|
|
293
298
|
}
|
|
294
299
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
|
|
295
|
-
background
|
|
300
|
+
background: #414040;
|
|
296
301
|
box-shadow: none;
|
|
297
302
|
color: #fff;
|
|
298
303
|
}
|
|
299
304
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
|
|
300
|
-
background
|
|
305
|
+
background: #6f6c6c;
|
|
301
306
|
box-shadow: none;
|
|
302
307
|
color: #fff;
|
|
303
308
|
}
|
package/styles/fabric.css
CHANGED
|
@@ -123,6 +123,11 @@
|
|
|
123
123
|
content: "\e952";
|
|
124
124
|
}
|
|
125
125
|
|
|
126
|
+
.e-ie-toolbar-upload-div.e-hide,
|
|
127
|
+
.e-ie-toolbar-upload-btn.e-hide {
|
|
128
|
+
display: none;
|
|
129
|
+
}
|
|
130
|
+
|
|
126
131
|
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
127
132
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
128
133
|
}
|
|
@@ -228,7 +233,7 @@
|
|
|
228
233
|
.e-image-editor .e-toolbar-area + .e-canvas-wrapper {
|
|
229
234
|
border-top: 1px solid #eaeaea;
|
|
230
235
|
}
|
|
231
|
-
.e-image-editor .e-canvas-wrapper .e-textarea {
|
|
236
|
+
.e-image-editor .e-toolbar-area + .e-canvas-wrapper .e-textarea {
|
|
232
237
|
line-height: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
233
238
|
}
|
|
234
239
|
.e-image-editor .e-bottom-toolbar {
|
|
@@ -280,24 +285,24 @@
|
|
|
280
285
|
background: inherit;
|
|
281
286
|
border: none;
|
|
282
287
|
margin-top: 0;
|
|
283
|
-
background
|
|
288
|
+
background: #fff;
|
|
284
289
|
color: #333;
|
|
285
290
|
}
|
|
286
291
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-caret-hide {
|
|
287
292
|
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
288
293
|
}
|
|
289
294
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
|
|
290
|
-
background
|
|
295
|
+
background: #eaeaea;
|
|
291
296
|
box-shadow: none;
|
|
292
297
|
color: #000;
|
|
293
298
|
}
|
|
294
299
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
|
|
295
|
-
background
|
|
300
|
+
background: #f4f4f4;
|
|
296
301
|
box-shadow: none;
|
|
297
302
|
color: #333;
|
|
298
303
|
}
|
|
299
304
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
|
|
300
|
-
background
|
|
305
|
+
background: #c8c8c8;
|
|
301
306
|
box-shadow: none;
|
|
302
307
|
color: #000;
|
|
303
308
|
}
|
package/styles/fluent-dark.css
CHANGED
|
@@ -132,6 +132,11 @@
|
|
|
132
132
|
content: "\e82e";
|
|
133
133
|
}
|
|
134
134
|
|
|
135
|
+
.e-ie-toolbar-upload-div.e-hide,
|
|
136
|
+
.e-ie-toolbar-upload-btn.e-hide {
|
|
137
|
+
display: none;
|
|
138
|
+
}
|
|
139
|
+
|
|
135
140
|
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
136
141
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
137
142
|
}
|
|
@@ -235,7 +240,7 @@
|
|
|
235
240
|
.e-image-editor .e-toolbar-area + .e-canvas-wrapper {
|
|
236
241
|
border-top: 1px solid #292827;
|
|
237
242
|
}
|
|
238
|
-
.e-image-editor .e-canvas-wrapper .e-textarea {
|
|
243
|
+
.e-image-editor .e-toolbar-area + .e-canvas-wrapper .e-textarea {
|
|
239
244
|
line-height: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
240
245
|
}
|
|
241
246
|
.e-image-editor .e-bottom-toolbar {
|
|
@@ -287,24 +292,24 @@
|
|
|
287
292
|
background: inherit;
|
|
288
293
|
border: none;
|
|
289
294
|
margin-top: 2px;
|
|
290
|
-
background
|
|
295
|
+
background: #252423;
|
|
291
296
|
color: #a19f9d;
|
|
292
297
|
}
|
|
293
298
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-caret-hide {
|
|
294
299
|
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
295
300
|
}
|
|
296
301
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
|
|
297
|
-
background
|
|
302
|
+
background: #252423;
|
|
298
303
|
box-shadow: none;
|
|
299
304
|
color: #fff;
|
|
300
305
|
}
|
|
301
306
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
|
|
302
|
-
background
|
|
307
|
+
background: #252423;
|
|
303
308
|
box-shadow: none;
|
|
304
309
|
color: #fff;
|
|
305
310
|
}
|
|
306
311
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
|
|
307
|
-
background
|
|
312
|
+
background: #292827;
|
|
308
313
|
box-shadow: none;
|
|
309
314
|
color: #fff;
|
|
310
315
|
}
|
package/styles/fluent.css
CHANGED
|
@@ -132,6 +132,11 @@
|
|
|
132
132
|
content: "\e82e";
|
|
133
133
|
}
|
|
134
134
|
|
|
135
|
+
.e-ie-toolbar-upload-div.e-hide,
|
|
136
|
+
.e-ie-toolbar-upload-btn.e-hide {
|
|
137
|
+
display: none;
|
|
138
|
+
}
|
|
139
|
+
|
|
135
140
|
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
136
141
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
137
142
|
}
|
|
@@ -235,7 +240,7 @@
|
|
|
235
240
|
.e-image-editor .e-toolbar-area + .e-canvas-wrapper {
|
|
236
241
|
border-top: 1px solid #edebe9;
|
|
237
242
|
}
|
|
238
|
-
.e-image-editor .e-canvas-wrapper .e-textarea {
|
|
243
|
+
.e-image-editor .e-toolbar-area + .e-canvas-wrapper .e-textarea {
|
|
239
244
|
line-height: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
240
245
|
}
|
|
241
246
|
.e-image-editor .e-bottom-toolbar {
|
|
@@ -287,24 +292,24 @@
|
|
|
287
292
|
background: inherit;
|
|
288
293
|
border: none;
|
|
289
294
|
margin-top: 2px;
|
|
290
|
-
background
|
|
295
|
+
background: #f3f2f1;
|
|
291
296
|
color: #605e5c;
|
|
292
297
|
}
|
|
293
298
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-caret-hide {
|
|
294
299
|
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
295
300
|
}
|
|
296
301
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
|
|
297
|
-
background
|
|
302
|
+
background: #f3f2f1;
|
|
298
303
|
box-shadow: none;
|
|
299
304
|
color: #323130;
|
|
300
305
|
}
|
|
301
306
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
|
|
302
|
-
background
|
|
307
|
+
background: #f3f2f1;
|
|
303
308
|
box-shadow: none;
|
|
304
309
|
color: #323130;
|
|
305
310
|
}
|
|
306
311
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
|
|
307
|
-
background
|
|
312
|
+
background: #edebe9;
|
|
308
313
|
box-shadow: none;
|
|
309
314
|
color: #323130;
|
|
310
315
|
}
|
|
@@ -123,6 +123,11 @@
|
|
|
123
123
|
content: "\e952";
|
|
124
124
|
}
|
|
125
125
|
|
|
126
|
+
.e-ie-toolbar-upload-div.e-hide,
|
|
127
|
+
.e-ie-toolbar-upload-btn.e-hide {
|
|
128
|
+
display: none;
|
|
129
|
+
}
|
|
130
|
+
|
|
126
131
|
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
127
132
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
128
133
|
}
|
|
@@ -226,7 +231,7 @@
|
|
|
226
231
|
.e-image-editor .e-toolbar-area + .e-canvas-wrapper {
|
|
227
232
|
border-top: 1px solid #000;
|
|
228
233
|
}
|
|
229
|
-
.e-image-editor .e-canvas-wrapper .e-textarea {
|
|
234
|
+
.e-image-editor .e-toolbar-area + .e-canvas-wrapper .e-textarea {
|
|
230
235
|
line-height: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
231
236
|
}
|
|
232
237
|
.e-image-editor .e-bottom-toolbar {
|
|
@@ -278,24 +283,24 @@
|
|
|
278
283
|
background: inherit;
|
|
279
284
|
border: none;
|
|
280
285
|
margin-top: 0;
|
|
281
|
-
background
|
|
286
|
+
background: #fff;
|
|
282
287
|
color: #000;
|
|
283
288
|
}
|
|
284
289
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-caret-hide {
|
|
285
290
|
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
286
291
|
}
|
|
287
292
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
|
|
288
|
-
background
|
|
293
|
+
background: #ecf;
|
|
289
294
|
box-shadow: none;
|
|
290
295
|
color: #000;
|
|
291
296
|
}
|
|
292
297
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
|
|
293
|
-
background
|
|
298
|
+
background: #fff;
|
|
294
299
|
box-shadow: none;
|
|
295
300
|
color: #000;
|
|
296
301
|
}
|
|
297
302
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
|
|
298
|
-
background
|
|
303
|
+
background: #400074;
|
|
299
304
|
box-shadow: none;
|
|
300
305
|
color: #fff;
|
|
301
306
|
}
|
package/styles/highcontrast.css
CHANGED
|
@@ -123,6 +123,11 @@
|
|
|
123
123
|
content: "\e952";
|
|
124
124
|
}
|
|
125
125
|
|
|
126
|
+
.e-ie-toolbar-upload-div.e-hide,
|
|
127
|
+
.e-ie-toolbar-upload-btn.e-hide {
|
|
128
|
+
display: none;
|
|
129
|
+
}
|
|
130
|
+
|
|
126
131
|
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
127
132
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
128
133
|
}
|
|
@@ -226,7 +231,7 @@
|
|
|
226
231
|
.e-image-editor .e-toolbar-area + .e-canvas-wrapper {
|
|
227
232
|
border-top: 1px solid #fff;
|
|
228
233
|
}
|
|
229
|
-
.e-image-editor .e-canvas-wrapper .e-textarea {
|
|
234
|
+
.e-image-editor .e-toolbar-area + .e-canvas-wrapper .e-textarea {
|
|
230
235
|
line-height: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
231
236
|
}
|
|
232
237
|
.e-image-editor .e-bottom-toolbar {
|
|
@@ -278,24 +283,24 @@
|
|
|
278
283
|
background: inherit;
|
|
279
284
|
border: none;
|
|
280
285
|
margin-top: 0;
|
|
281
|
-
background
|
|
286
|
+
background: #000;
|
|
282
287
|
color: #fff;
|
|
283
288
|
}
|
|
284
289
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-caret-hide {
|
|
285
290
|
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
286
291
|
}
|
|
287
292
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
|
|
288
|
-
background
|
|
293
|
+
background: #685708;
|
|
289
294
|
box-shadow: none;
|
|
290
295
|
color: #fff;
|
|
291
296
|
}
|
|
292
297
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
|
|
293
|
-
background
|
|
298
|
+
background: #000;
|
|
294
299
|
box-shadow: none;
|
|
295
300
|
color: #fff;
|
|
296
301
|
}
|
|
297
302
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
|
|
298
|
-
background
|
|
303
|
+
background: #ffd939;
|
|
299
304
|
box-shadow: none;
|
|
300
305
|
color: #000;
|
|
301
306
|
}
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
@include export-module('image-editor-layout') {
|
|
2
2
|
|
|
3
|
+
.e-ie-toolbar-upload-div.e-hide,
|
|
4
|
+
.e-ie-toolbar-upload-btn.e-hide {
|
|
5
|
+
display: none;
|
|
6
|
+
}
|
|
7
|
+
|
|
3
8
|
.e-device.e-image-editor {
|
|
4
9
|
& .e-img-font-style.e-template{
|
|
5
10
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -40,6 +45,7 @@
|
|
|
40
45
|
font-size: $image-editor-bigger-tbar-btn-fontsize;
|
|
41
46
|
@if $skin-name == 'bootstrap5' or $skin-name == 'bootstrap5-dark' {
|
|
42
47
|
padding-top: 4px;
|
|
48
|
+
padding-bottom: 4px;
|
|
43
49
|
}
|
|
44
50
|
}
|
|
45
51
|
}
|
|
@@ -113,6 +119,7 @@
|
|
|
113
119
|
font-size: $image-editor-tbar-btn-fontsize;
|
|
114
120
|
@if $skin-name == 'bootstrap5' or $skin-name == 'bootstrap5-dark' {
|
|
115
121
|
padding-top: 4px;
|
|
122
|
+
padding-bottom: 4px;
|
|
116
123
|
}
|
|
117
124
|
}
|
|
118
125
|
}
|
|
@@ -124,12 +131,6 @@
|
|
|
124
131
|
|
|
125
132
|
& .e-file-select-wrap {
|
|
126
133
|
padding: 0;
|
|
127
|
-
|
|
128
|
-
& .e-btn-icon {
|
|
129
|
-
@if $skin-name == 'bootstrap5' or $skin-name == 'bootstrap5-dark' {
|
|
130
|
-
margin-top: -2px !important; /* stylelint-disable-line declaration-no-important */
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
134
|
}
|
|
134
135
|
|
|
135
136
|
& .e-image-upload {
|
|
@@ -143,9 +144,6 @@
|
|
|
143
144
|
}
|
|
144
145
|
|
|
145
146
|
& .e-icons.e-upload-icon {
|
|
146
|
-
@if $skin-name == 'material' {
|
|
147
|
-
margin-top: 7px;
|
|
148
|
-
}
|
|
149
147
|
@if $skin-name == 'bootstrap5' or $skin-name == 'bootstrap5-dark' {
|
|
150
148
|
padding-top: 6px;
|
|
151
149
|
}
|
|
@@ -201,9 +199,7 @@
|
|
|
201
199
|
|
|
202
200
|
& .e-toolbar-area + .e-canvas-wrapper {
|
|
203
201
|
border-top: $image-editor-border;
|
|
204
|
-
}
|
|
205
202
|
|
|
206
|
-
& .e-canvas-wrapper {
|
|
207
203
|
& .e-textarea {
|
|
208
204
|
line-height: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
209
205
|
}
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
border: none;
|
|
38
38
|
margin-top: $image-editor-ddbtn-margin-top;
|
|
39
39
|
@if $skin-name == 'bootstrap4' or $skin-name == 'bootstrap5' $skin-name == 'bootstrap5-dark' {
|
|
40
|
-
background
|
|
40
|
+
background: $tbar-default-bg;
|
|
41
41
|
color: $tbar-default-icon-color;
|
|
42
42
|
}
|
|
43
43
|
|
|
@@ -46,19 +46,19 @@
|
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
&:hover {
|
|
49
|
-
background
|
|
49
|
+
background: $btn-hover-bgcolor;
|
|
50
50
|
box-shadow: none;
|
|
51
51
|
color: $btn-hover-color;
|
|
52
52
|
}
|
|
53
53
|
|
|
54
54
|
&:focus {
|
|
55
|
-
background
|
|
55
|
+
background: $btn-focus-bgcolor;
|
|
56
56
|
box-shadow: none;
|
|
57
57
|
color: $btn-focus-color;
|
|
58
58
|
}
|
|
59
59
|
|
|
60
60
|
&:active {
|
|
61
|
-
background
|
|
61
|
+
background: $btn-active-bgcolor;
|
|
62
62
|
box-shadow: none;
|
|
63
63
|
color: $btn-active-color;
|
|
64
64
|
}
|