@syncfusion/ej2-image-editor 23.2.7 → 24.1.43
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 +6 -54
- 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 +7227 -4367
- package/dist/es6/ej2-image-editor.es2015.js.map +1 -1
- package/dist/es6/ej2-image-editor.es5.js +7295 -4422
- 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/action/crop.d.ts +6 -0
- package/src/image-editor/action/crop.js +347 -188
- package/src/image-editor/action/draw.d.ts +35 -2
- package/src/image-editor/action/draw.js +1691 -890
- package/src/image-editor/action/export.js +90 -29
- package/src/image-editor/action/filter.d.ts +3 -1
- package/src/image-editor/action/filter.js +74 -94
- package/src/image-editor/action/freehand-draw.d.ts +4 -0
- package/src/image-editor/action/freehand-draw.js +248 -147
- package/src/image-editor/action/selection.d.ts +6 -1
- package/src/image-editor/action/selection.js +1133 -1091
- package/src/image-editor/action/shape.d.ts +7 -0
- package/src/image-editor/action/shape.js +923 -550
- package/src/image-editor/action/transform.d.ts +2 -0
- package/src/image-editor/action/transform.js +518 -346
- package/src/image-editor/action/undo-redo.d.ts +2 -0
- package/src/image-editor/action/undo-redo.js +137 -36
- package/src/image-editor/base/enum.d.ts +2 -1
- package/src/image-editor/base/enum.js +1 -0
- package/src/image-editor/base/image-editor-model.d.ts +37 -2
- package/src/image-editor/base/image-editor.d.ts +124 -3
- package/src/image-editor/base/image-editor.js +675 -172
- package/src/image-editor/base/interface.d.ts +69 -15
- package/src/image-editor/renderer/toolbar.d.ts +10 -0
- package/src/image-editor/renderer/toolbar.js +1415 -835
- package/styles/bootstrap-dark.css +113 -8
- package/styles/bootstrap.css +112 -7
- package/styles/bootstrap4.css +113 -8
- package/styles/bootstrap5-dark.css +113 -8
- package/styles/bootstrap5.css +113 -8
- package/styles/fabric-dark.css +114 -9
- package/styles/fabric.css +113 -8
- package/styles/fluent-dark.css +118 -9
- package/styles/fluent.css +118 -9
- package/styles/highcontrast-light.css +112 -7
- package/styles/highcontrast.css +116 -7
- package/styles/image-editor/_bootstrap-dark-definition.scss +3 -0
- package/styles/image-editor/_bootstrap-definition.scss +3 -0
- package/styles/image-editor/_bootstrap4-definition.scss +3 -0
- package/styles/image-editor/_bootstrap5-definition.scss +3 -0
- package/styles/image-editor/_fabric-dark-definition.scss +3 -0
- package/styles/image-editor/_fabric-definition.scss +3 -0
- package/styles/image-editor/_fluent-definition.scss +3 -0
- package/styles/image-editor/_fusionnew-definition.scss +3 -0
- package/styles/image-editor/_highcontrast-definition.scss +3 -0
- package/styles/image-editor/_highcontrast-light-definition.scss +3 -0
- package/styles/image-editor/_layout.scss +138 -4
- package/styles/image-editor/_material-dark-definition.scss +3 -0
- package/styles/image-editor/_material-definition.scss +3 -0
- package/styles/image-editor/_material3-definition.scss +3 -0
- package/styles/image-editor/_tailwind-definition.scss +3 -0
- package/styles/image-editor/_theme.scss +2 -4
- package/styles/image-editor/bootstrap-dark.css +113 -8
- package/styles/image-editor/bootstrap.css +112 -7
- package/styles/image-editor/bootstrap4.css +113 -8
- package/styles/image-editor/bootstrap5-dark.css +113 -8
- package/styles/image-editor/bootstrap5.css +113 -8
- package/styles/image-editor/fabric-dark.css +114 -9
- package/styles/image-editor/fabric.css +113 -8
- package/styles/image-editor/fluent-dark.css +118 -9
- package/styles/image-editor/fluent.css +118 -9
- package/styles/image-editor/highcontrast-light.css +112 -7
- package/styles/image-editor/highcontrast.css +116 -7
- package/styles/image-editor/icons/_bootstrap-dark.scss +60 -0
- package/styles/image-editor/icons/_bootstrap.scss +60 -0
- package/styles/image-editor/icons/_bootstrap4.scss +60 -0
- package/styles/image-editor/icons/_bootstrap5.scss +60 -0
- package/styles/image-editor/icons/_fabric-dark.scss +60 -0
- package/styles/image-editor/icons/_fabric.scss +60 -0
- package/styles/image-editor/icons/_fluent.scss +66 -0
- package/styles/image-editor/icons/_highcontrast-light.scss +60 -0
- package/styles/image-editor/icons/_highcontrast.scss +60 -0
- package/styles/image-editor/icons/_material-dark.scss +60 -0
- package/styles/image-editor/icons/_material.scss +60 -0
- package/styles/image-editor/icons/_material3.scss +60 -0
- package/styles/image-editor/icons/_tailwind.scss +60 -0
- package/styles/image-editor/material-dark.css +113 -8
- package/styles/image-editor/material.css +113 -8
- package/styles/image-editor/material3-dark.css +126 -9
- package/styles/image-editor/material3.css +126 -9
- package/styles/image-editor/tailwind-dark.css +114 -9
- package/styles/image-editor/tailwind.css +114 -9
- package/styles/material-dark.css +113 -8
- package/styles/material.css +113 -8
- package/styles/material3-dark.css +126 -9
- package/styles/material3.css +126 -9
- package/styles/tailwind-dark.css +114 -9
- package/styles/tailwind.css +114 -9
|
@@ -91,6 +91,21 @@
|
|
|
91
91
|
.e-image-editor .e-custom-e::before {
|
|
92
92
|
content: "\e960";
|
|
93
93
|
}
|
|
94
|
+
.e-image-editor .e-custom-f::before {
|
|
95
|
+
content: "\e9a3";
|
|
96
|
+
}
|
|
97
|
+
.e-image-editor .e-custom-g::before {
|
|
98
|
+
content: "\e9a4";
|
|
99
|
+
}
|
|
100
|
+
.e-image-editor .e-custom-h::before {
|
|
101
|
+
content: "\e9a5";
|
|
102
|
+
}
|
|
103
|
+
.e-image-editor .e-custom-i::before {
|
|
104
|
+
content: "\e9a6";
|
|
105
|
+
}
|
|
106
|
+
.e-image-editor .e-custom-j::before {
|
|
107
|
+
content: "\e9a7";
|
|
108
|
+
}
|
|
94
109
|
.e-image-editor .e-horizontal-flip::before {
|
|
95
110
|
content: "\e951";
|
|
96
111
|
}
|
|
@@ -152,6 +167,21 @@
|
|
|
152
167
|
.e-dropdown-popup.e-image-popup .e-custom-e::before {
|
|
153
168
|
content: "\e960";
|
|
154
169
|
}
|
|
170
|
+
.e-dropdown-popup.e-image-popup .e-custom-f::before {
|
|
171
|
+
content: "\e9a3";
|
|
172
|
+
}
|
|
173
|
+
.e-dropdown-popup.e-image-popup .e-custom-g::before {
|
|
174
|
+
content: "\e9a4";
|
|
175
|
+
}
|
|
176
|
+
.e-dropdown-popup.e-image-popup .e-custom-h::before {
|
|
177
|
+
content: "\e9a5";
|
|
178
|
+
}
|
|
179
|
+
.e-dropdown-popup.e-image-popup .e-custom-i::before {
|
|
180
|
+
content: "\e9a6";
|
|
181
|
+
}
|
|
182
|
+
.e-dropdown-popup.e-image-popup .e-custom-j::before {
|
|
183
|
+
content: "\e9a7";
|
|
184
|
+
}
|
|
155
185
|
.e-dropdown-popup.e-image-popup .e-rectangle::before {
|
|
156
186
|
content: "\e670";
|
|
157
187
|
}
|
|
@@ -198,10 +228,42 @@
|
|
|
198
228
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
199
229
|
}
|
|
200
230
|
.e-device.e-image-editor .e-slider-container {
|
|
201
|
-
margin-left: calc(50% -
|
|
231
|
+
margin-left: calc(50% - 70px) !important; /* stylelint-disable-line declaration-no-important */
|
|
202
232
|
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
203
233
|
}
|
|
234
|
+
.e-device.e-image-editor .e-straighten-slider {
|
|
235
|
+
margin-left: calc(50% - 70px) !important; /* stylelint-disable-line declaration-no-important */
|
|
236
|
+
}
|
|
237
|
+
.e-device.e-image-editor .e-ie-straighten-value-span {
|
|
238
|
+
margin-left: 15px !important; /* stylelint-disable-line declaration-no-important */
|
|
239
|
+
}
|
|
240
|
+
.e-device.e-image-editor .e-hscroll .e-scroll-nav.e-scroll-right-nav {
|
|
241
|
+
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
242
|
+
}
|
|
243
|
+
.e-device.e-image-editor .e-hscroll.e-scroll-device {
|
|
244
|
+
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
245
|
+
}
|
|
246
|
+
.e-device.e-image-editor .e-scroll-right-overlay {
|
|
247
|
+
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
248
|
+
}
|
|
249
|
+
.e-device.e-image-editor .e-contextual-toolbar-wrapper {
|
|
250
|
+
border-top: 1px solid #000;
|
|
251
|
+
border-bottom: none !important; /* stylelint-disable-line declaration-no-important */
|
|
252
|
+
}
|
|
253
|
+
.e-device.e-image-editor .e-toolbar {
|
|
254
|
+
border-bottom: 1px solid #000;
|
|
255
|
+
}
|
|
256
|
+
.e-device.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar {
|
|
257
|
+
border-bottom: none !important; /* stylelint-disable-line declaration-no-important */
|
|
258
|
+
}
|
|
259
|
+
.e-device.e-image-editor .e-bottom-toolbar .e-toolbar, .e-device.e-image-editor .e-bottom-toolbar-area .e-toolbar {
|
|
260
|
+
border-bottom: none;
|
|
261
|
+
}
|
|
204
262
|
|
|
263
|
+
.e-bigger .e-image-editor .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle,
|
|
264
|
+
.e-image-editor.e-bigger .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle {
|
|
265
|
+
top: calc(50% - 8px) !important; /* stylelint-disable-line declaration-no-important */
|
|
266
|
+
}
|
|
205
267
|
.e-bigger .e-image-editor .e-toolbar,
|
|
206
268
|
.e-image-editor.e-bigger .e-toolbar {
|
|
207
269
|
height: 48px !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -270,6 +332,11 @@
|
|
|
270
332
|
border: 1px solid #000;
|
|
271
333
|
position: relative;
|
|
272
334
|
display: block;
|
|
335
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
336
|
+
}
|
|
337
|
+
.e-image-editor .no-spin ::-webkit-inner-spin-button, .e-image-editor .no-spin ::-webkit-outer-spin-button {
|
|
338
|
+
-webkit-appearance: none;
|
|
339
|
+
margin: 0;
|
|
273
340
|
}
|
|
274
341
|
.e-image-editor .e-ie-drop-area {
|
|
275
342
|
height: calc(100% - 18px);
|
|
@@ -306,6 +373,7 @@
|
|
|
306
373
|
}
|
|
307
374
|
.e-image-editor .e-toolbar {
|
|
308
375
|
border: none;
|
|
376
|
+
border-bottom: 1px solid #000;
|
|
309
377
|
height: 38px !important; /* stylelint-disable-line declaration-no-important */
|
|
310
378
|
min-height: 38px !important; /* stylelint-disable-line declaration-no-important */
|
|
311
379
|
}
|
|
@@ -361,20 +429,19 @@
|
|
|
361
429
|
.e-image-editor .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
|
|
362
430
|
line-height: 1;
|
|
363
431
|
}
|
|
364
|
-
.e-image-editor .e-toolbar-area + .e-canvas-wrapper {
|
|
365
|
-
border-top: 1px solid #000;
|
|
366
|
-
}
|
|
367
432
|
.e-image-editor .e-toolbar-area + .e-canvas-wrapper .e-textarea {
|
|
368
433
|
line-height: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
369
434
|
}
|
|
370
|
-
.e-image-editor .e-bottom-toolbar {
|
|
435
|
+
.e-image-editor .e-bottom-toolbar, .e-image-editor .e-bottom-toolbar-area {
|
|
371
436
|
border-top: 1px solid #000;
|
|
372
437
|
}
|
|
373
438
|
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
439
|
+
border-bottom: 1px solid #000;
|
|
374
440
|
width: 100%;
|
|
375
441
|
z-index: 1;
|
|
376
442
|
}
|
|
377
443
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar {
|
|
444
|
+
border-bottom: none !important; /* stylelint-disable-line declaration-no-important */
|
|
378
445
|
height: 130px !important; /* stylelint-disable-line declaration-no-important */
|
|
379
446
|
}
|
|
380
447
|
.e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-toolbar {
|
|
@@ -405,6 +472,10 @@
|
|
|
405
472
|
margin: 4px;
|
|
406
473
|
text-align: center;
|
|
407
474
|
}
|
|
475
|
+
.e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-dropdown-btn {
|
|
476
|
+
margin: 0 auto;
|
|
477
|
+
width: max-content;
|
|
478
|
+
}
|
|
408
479
|
.e-image-editor .e-contextual-toolbar-wrapper.e-hide {
|
|
409
480
|
display: none;
|
|
410
481
|
}
|
|
@@ -422,14 +493,48 @@
|
|
|
422
493
|
margin-left: calc(50% - 137px);
|
|
423
494
|
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
424
495
|
}
|
|
496
|
+
.e-ie-straighten-value-span,
|
|
497
|
+
.e-ie-straighten-span {
|
|
498
|
+
font-size: 14px;
|
|
499
|
+
padding-left: 10px !important; /* stylelint-disable-line declaration-no-important */
|
|
500
|
+
padding-right: 10px !important; /* stylelint-disable-line declaration-no-important */
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
.e-straighten .e-control-wrapper.e-slider-container.e-horizontal {
|
|
504
|
+
height: auto;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
.e-straighten .e-control-wrapper.e-slider-container.e-horizontal .e-slider {
|
|
508
|
+
top: calc(50% - 20px) !important; /* stylelint-disable-line declaration-no-important */
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
.e-straighten .e-control-wrapper.e-slider-container.e-horizontal .e-slider-track,
|
|
512
|
+
.e-straighten .e-control-wrapper.e-slider-container.e-horizontal .e-range {
|
|
513
|
+
top: calc(50% - 2px) !important; /* stylelint-disable-line declaration-no-important */
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
.e-straighten .e-control-wrapper.e-slider-container .e-slider .e-handle {
|
|
517
|
+
top: calc(50% - 6px) !important; /* stylelint-disable-line declaration-no-important */
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
.e-bigger .e-straighten .e-control-wrapper.e-slider-container .e-slider .e-handle {
|
|
521
|
+
top: calc(50% - 8px) !important; /* stylelint-disable-line declaration-no-important */
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
.e-dropdown-popup.e-ie-crop-ddb-popup ul {
|
|
525
|
+
height: 250px;
|
|
526
|
+
overflow-y: scroll;
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
.e-dropdown-popup.e-ie-ddb-popup {
|
|
530
|
+
background: none !important; /* stylelint-disable-line declaration-no-important */
|
|
531
|
+
}
|
|
425
532
|
|
|
426
533
|
.e-image-editor {
|
|
427
534
|
background: #fff;
|
|
428
535
|
}
|
|
429
536
|
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
430
537
|
background: #fff;
|
|
431
|
-
border-top: 1px solid #000;
|
|
432
|
-
border-bottom: 1px solid #000;
|
|
433
538
|
}
|
|
434
539
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item:hover .filterwrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filterwrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item:hover .filter-wrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filter-wrapper {
|
|
435
540
|
border-color: #400074;
|
package/styles/highcontrast.css
CHANGED
|
@@ -91,6 +91,21 @@
|
|
|
91
91
|
.e-image-editor .e-custom-e::before {
|
|
92
92
|
content: "\e960";
|
|
93
93
|
}
|
|
94
|
+
.e-image-editor .e-custom-f::before {
|
|
95
|
+
content: "\e9a3";
|
|
96
|
+
}
|
|
97
|
+
.e-image-editor .e-custom-g::before {
|
|
98
|
+
content: "\e9a4";
|
|
99
|
+
}
|
|
100
|
+
.e-image-editor .e-custom-h::before {
|
|
101
|
+
content: "\e9a5";
|
|
102
|
+
}
|
|
103
|
+
.e-image-editor .e-custom-i::before {
|
|
104
|
+
content: "\e9a6";
|
|
105
|
+
}
|
|
106
|
+
.e-image-editor .e-custom-j::before {
|
|
107
|
+
content: "\e9a7";
|
|
108
|
+
}
|
|
94
109
|
.e-image-editor .e-horizontal-flip::before {
|
|
95
110
|
content: "\e951";
|
|
96
111
|
}
|
|
@@ -152,6 +167,21 @@
|
|
|
152
167
|
.e-dropdown-popup.e-image-popup .e-custom-e::before {
|
|
153
168
|
content: "\e960";
|
|
154
169
|
}
|
|
170
|
+
.e-dropdown-popup.e-image-popup .e-custom-f::before {
|
|
171
|
+
content: "\e9a3";
|
|
172
|
+
}
|
|
173
|
+
.e-dropdown-popup.e-image-popup .e-custom-g::before {
|
|
174
|
+
content: "\e9a4";
|
|
175
|
+
}
|
|
176
|
+
.e-dropdown-popup.e-image-popup .e-custom-h::before {
|
|
177
|
+
content: "\e9a5";
|
|
178
|
+
}
|
|
179
|
+
.e-dropdown-popup.e-image-popup .e-custom-i::before {
|
|
180
|
+
content: "\e9a6";
|
|
181
|
+
}
|
|
182
|
+
.e-dropdown-popup.e-image-popup .e-custom-j::before {
|
|
183
|
+
content: "\e9a7";
|
|
184
|
+
}
|
|
155
185
|
.e-dropdown-popup.e-image-popup .e-rectangle::before {
|
|
156
186
|
content: "\e670";
|
|
157
187
|
}
|
|
@@ -198,10 +228,42 @@
|
|
|
198
228
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
199
229
|
}
|
|
200
230
|
.e-device.e-image-editor .e-slider-container {
|
|
201
|
-
margin-left: calc(50% -
|
|
231
|
+
margin-left: calc(50% - 70px) !important; /* stylelint-disable-line declaration-no-important */
|
|
202
232
|
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
203
233
|
}
|
|
234
|
+
.e-device.e-image-editor .e-straighten-slider {
|
|
235
|
+
margin-left: calc(50% - 70px) !important; /* stylelint-disable-line declaration-no-important */
|
|
236
|
+
}
|
|
237
|
+
.e-device.e-image-editor .e-ie-straighten-value-span {
|
|
238
|
+
margin-left: 15px !important; /* stylelint-disable-line declaration-no-important */
|
|
239
|
+
}
|
|
240
|
+
.e-device.e-image-editor .e-hscroll .e-scroll-nav.e-scroll-right-nav {
|
|
241
|
+
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
242
|
+
}
|
|
243
|
+
.e-device.e-image-editor .e-hscroll.e-scroll-device {
|
|
244
|
+
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
245
|
+
}
|
|
246
|
+
.e-device.e-image-editor .e-scroll-right-overlay {
|
|
247
|
+
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
248
|
+
}
|
|
249
|
+
.e-device.e-image-editor .e-contextual-toolbar-wrapper {
|
|
250
|
+
border-top: 1px solid #fff;
|
|
251
|
+
border-bottom: none !important; /* stylelint-disable-line declaration-no-important */
|
|
252
|
+
}
|
|
253
|
+
.e-device.e-image-editor .e-toolbar {
|
|
254
|
+
border-bottom: 1px solid #fff;
|
|
255
|
+
}
|
|
256
|
+
.e-device.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar {
|
|
257
|
+
border-bottom: none !important; /* stylelint-disable-line declaration-no-important */
|
|
258
|
+
}
|
|
259
|
+
.e-device.e-image-editor .e-bottom-toolbar .e-toolbar, .e-device.e-image-editor .e-bottom-toolbar-area .e-toolbar {
|
|
260
|
+
border-bottom: none;
|
|
261
|
+
}
|
|
204
262
|
|
|
263
|
+
.e-bigger .e-image-editor .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle,
|
|
264
|
+
.e-image-editor.e-bigger .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle {
|
|
265
|
+
top: calc(50% - 8px) !important; /* stylelint-disable-line declaration-no-important */
|
|
266
|
+
}
|
|
205
267
|
.e-bigger .e-image-editor .e-toolbar,
|
|
206
268
|
.e-image-editor.e-bigger .e-toolbar {
|
|
207
269
|
height: 48px !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -270,6 +332,11 @@
|
|
|
270
332
|
border: 1px solid #fff;
|
|
271
333
|
position: relative;
|
|
272
334
|
display: block;
|
|
335
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
336
|
+
}
|
|
337
|
+
.e-image-editor .no-spin ::-webkit-inner-spin-button, .e-image-editor .no-spin ::-webkit-outer-spin-button {
|
|
338
|
+
-webkit-appearance: none;
|
|
339
|
+
margin: 0;
|
|
273
340
|
}
|
|
274
341
|
.e-image-editor .e-ie-drop-area {
|
|
275
342
|
height: calc(100% - 18px);
|
|
@@ -277,6 +344,7 @@
|
|
|
277
344
|
border: 2px dashed #fff;
|
|
278
345
|
border-radius: 10px;
|
|
279
346
|
margin: 10px;
|
|
347
|
+
color: #fff;
|
|
280
348
|
}
|
|
281
349
|
.e-image-editor .e-ie-drop-area .e-upload {
|
|
282
350
|
display: none;
|
|
@@ -293,6 +361,9 @@
|
|
|
293
361
|
left: calc(50% - 160px);
|
|
294
362
|
font-size: 14px;
|
|
295
363
|
}
|
|
364
|
+
.e-image-editor .e-ie-drop-area .e-ie-drop-content > a {
|
|
365
|
+
color: #fff;
|
|
366
|
+
}
|
|
296
367
|
.e-image-editor .e-ie-drop-area .e-ie-drop-info {
|
|
297
368
|
top: calc(50% + 40px);
|
|
298
369
|
left: calc(50% - 100px);
|
|
@@ -306,6 +377,7 @@
|
|
|
306
377
|
}
|
|
307
378
|
.e-image-editor .e-toolbar {
|
|
308
379
|
border: none;
|
|
380
|
+
border-bottom: 1px solid #fff;
|
|
309
381
|
height: 38px !important; /* stylelint-disable-line declaration-no-important */
|
|
310
382
|
min-height: 38px !important; /* stylelint-disable-line declaration-no-important */
|
|
311
383
|
}
|
|
@@ -361,20 +433,19 @@
|
|
|
361
433
|
.e-image-editor .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
|
|
362
434
|
line-height: 1;
|
|
363
435
|
}
|
|
364
|
-
.e-image-editor .e-toolbar-area + .e-canvas-wrapper {
|
|
365
|
-
border-top: 1px solid #fff;
|
|
366
|
-
}
|
|
367
436
|
.e-image-editor .e-toolbar-area + .e-canvas-wrapper .e-textarea {
|
|
368
437
|
line-height: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
369
438
|
}
|
|
370
|
-
.e-image-editor .e-bottom-toolbar {
|
|
439
|
+
.e-image-editor .e-bottom-toolbar, .e-image-editor .e-bottom-toolbar-area {
|
|
371
440
|
border-top: 1px solid #fff;
|
|
372
441
|
}
|
|
373
442
|
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
443
|
+
border-bottom: 1px solid #fff;
|
|
374
444
|
width: 100%;
|
|
375
445
|
z-index: 1;
|
|
376
446
|
}
|
|
377
447
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar {
|
|
448
|
+
border-bottom: none !important; /* stylelint-disable-line declaration-no-important */
|
|
378
449
|
height: 130px !important; /* stylelint-disable-line declaration-no-important */
|
|
379
450
|
}
|
|
380
451
|
.e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-toolbar {
|
|
@@ -405,6 +476,10 @@
|
|
|
405
476
|
margin: 4px;
|
|
406
477
|
text-align: center;
|
|
407
478
|
}
|
|
479
|
+
.e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-dropdown-btn {
|
|
480
|
+
margin: 0 auto;
|
|
481
|
+
width: max-content;
|
|
482
|
+
}
|
|
408
483
|
.e-image-editor .e-contextual-toolbar-wrapper.e-hide {
|
|
409
484
|
display: none;
|
|
410
485
|
}
|
|
@@ -422,14 +497,48 @@
|
|
|
422
497
|
margin-left: calc(50% - 137px);
|
|
423
498
|
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
424
499
|
}
|
|
500
|
+
.e-ie-straighten-value-span,
|
|
501
|
+
.e-ie-straighten-span {
|
|
502
|
+
font-size: 14px;
|
|
503
|
+
padding-left: 10px !important; /* stylelint-disable-line declaration-no-important */
|
|
504
|
+
padding-right: 10px !important; /* stylelint-disable-line declaration-no-important */
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
.e-straighten .e-control-wrapper.e-slider-container.e-horizontal {
|
|
508
|
+
height: auto;
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
.e-straighten .e-control-wrapper.e-slider-container.e-horizontal .e-slider {
|
|
512
|
+
top: calc(50% - 20px) !important; /* stylelint-disable-line declaration-no-important */
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
.e-straighten .e-control-wrapper.e-slider-container.e-horizontal .e-slider-track,
|
|
516
|
+
.e-straighten .e-control-wrapper.e-slider-container.e-horizontal .e-range {
|
|
517
|
+
top: calc(50% - 2px) !important; /* stylelint-disable-line declaration-no-important */
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
.e-straighten .e-control-wrapper.e-slider-container .e-slider .e-handle {
|
|
521
|
+
top: calc(50% - 6px) !important; /* stylelint-disable-line declaration-no-important */
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
.e-bigger .e-straighten .e-control-wrapper.e-slider-container .e-slider .e-handle {
|
|
525
|
+
top: calc(50% - 8px) !important; /* stylelint-disable-line declaration-no-important */
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
.e-dropdown-popup.e-ie-crop-ddb-popup ul {
|
|
529
|
+
height: 250px;
|
|
530
|
+
overflow-y: scroll;
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
.e-dropdown-popup.e-ie-ddb-popup {
|
|
534
|
+
background: none !important; /* stylelint-disable-line declaration-no-important */
|
|
535
|
+
}
|
|
425
536
|
|
|
426
537
|
.e-image-editor {
|
|
427
538
|
background: #000;
|
|
428
539
|
}
|
|
429
540
|
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
430
541
|
background: #000;
|
|
431
|
-
border-top: 1px solid #fff;
|
|
432
|
-
border-bottom: 1px solid #fff;
|
|
433
542
|
}
|
|
434
543
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item:hover .filterwrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filterwrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item:hover .filter-wrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filter-wrapper {
|
|
435
544
|
border-color: #ffd939;
|
|
@@ -14,3 +14,6 @@ $image-editor-dropdown-btn-preview-top: -2px !default;
|
|
|
14
14
|
$image-editor-dropdown-btn-preview-left: 0 !default;
|
|
15
15
|
$image-editor-bigger-dropdown-btn-preview-top: -1px !default;
|
|
16
16
|
$image-editor-bigger-dropdown-btn-preview-left: 0 !default;
|
|
17
|
+
$image-editor-slider-handler: calc(50% - 5px) !default;
|
|
18
|
+
$image-editor-bigger-slider-handler: calc(50% - 7px) !default;
|
|
19
|
+
$image-editor-device-slider-handler: calc(50% - 7px) !default;
|
|
@@ -14,3 +14,6 @@ $image-editor-dropdown-btn-preview-top: -2px !default;
|
|
|
14
14
|
$image-editor-dropdown-btn-preview-left: 0 !default;
|
|
15
15
|
$image-editor-bigger-dropdown-btn-preview-top: -1px !default;
|
|
16
16
|
$image-editor-bigger-dropdown-btn-preview-left: 0 !default;
|
|
17
|
+
$image-editor-slider-handler: calc(50% - 5px) !default;
|
|
18
|
+
$image-editor-bigger-slider-handler: calc(50% - 7px) !default;
|
|
19
|
+
$image-editor-device-slider-handler: calc(50% - 7px) !default;
|
|
@@ -14,3 +14,6 @@ $image-editor-dropdown-btn-preview-top: -2px !default;
|
|
|
14
14
|
$image-editor-dropdown-btn-preview-left: 0 !default;
|
|
15
15
|
$image-editor-bigger-dropdown-btn-preview-top: -1px !default;
|
|
16
16
|
$image-editor-bigger-dropdown-btn-preview-left: 0 !default;
|
|
17
|
+
$image-editor-slider-handler: calc(50% - 6px) !default;
|
|
18
|
+
$image-editor-bigger-slider-handler: calc(50% - 7px) !default;
|
|
19
|
+
$image-editor-device-slider-handler: calc(50% - 7px) !default;
|
|
@@ -14,3 +14,6 @@ $image-editor-dropdown-btn-preview-top: -4px !default;
|
|
|
14
14
|
$image-editor-dropdown-btn-preview-left: -4px !default;
|
|
15
15
|
$image-editor-bigger-dropdown-btn-preview-top: -4px !default;
|
|
16
16
|
$image-editor-bigger-dropdown-btn-preview-left: -4px !default;
|
|
17
|
+
$image-editor-slider-handler: calc(50% - 5px) !default;
|
|
18
|
+
$image-editor-bigger-slider-handler: calc(50% - 6px) !default;
|
|
19
|
+
$image-editor-device-slider-handler: calc(50% - 8px) !default;
|
|
@@ -14,3 +14,6 @@ $image-editor-dropdown-btn-preview-top: -4px !default;
|
|
|
14
14
|
$image-editor-dropdown-btn-preview-left: -1px !default;
|
|
15
15
|
$image-editor-bigger-dropdown-btn-preview-top: -4px !default;
|
|
16
16
|
$image-editor-bigger-dropdown-btn-preview-left: -1px !default;
|
|
17
|
+
$image-editor-slider-handler: calc(50% - 8px) !default;
|
|
18
|
+
$image-editor-bigger-slider-handler: calc(50% - 9px) !default;
|
|
19
|
+
$image-editor-device-slider-handler: calc(50% - 9px) !default;
|
|
@@ -14,3 +14,6 @@ $image-editor-dropdown-btn-preview-top: -4px !default;
|
|
|
14
14
|
$image-editor-dropdown-btn-preview-left: -1px !default;
|
|
15
15
|
$image-editor-bigger-dropdown-btn-preview-top: -4px !default;
|
|
16
16
|
$image-editor-bigger-dropdown-btn-preview-left: -1px !default;
|
|
17
|
+
$image-editor-slider-handler: calc(50% - 8px) !default;
|
|
18
|
+
$image-editor-bigger-slider-handler: calc(50% - 9px) !default;
|
|
19
|
+
$image-editor-device-slider-handler: calc(50% - 9px) !default;
|
|
@@ -14,3 +14,6 @@ $image-editor-dropdown-btn-preview-top: -4px !default;
|
|
|
14
14
|
$image-editor-dropdown-btn-preview-left: -4px !default;
|
|
15
15
|
$image-editor-bigger-dropdown-btn-preview-top: -4px !default;
|
|
16
16
|
$image-editor-bigger-dropdown-btn-preview-left: -4px !default;
|
|
17
|
+
$image-editor-slider-handler: calc(50% - 8px) !default;
|
|
18
|
+
$image-editor-bigger-slider-handler: calc(50% - 8px) !default;
|
|
19
|
+
$image-editor-device-slider-handler: calc(50% - 8px) !default;
|
|
@@ -14,3 +14,6 @@ $image-editor-dropdown-btn-preview-top: -2px !default;
|
|
|
14
14
|
$image-editor-dropdown-btn-preview-left: -9px !default;
|
|
15
15
|
$image-editor-bigger-dropdown-btn-preview-top: -1px !default;
|
|
16
16
|
$image-editor-bigger-dropdown-btn-preview-left: -7px !default;
|
|
17
|
+
$image-editor-slider-handler: calc(50% - 6px) !default;
|
|
18
|
+
$image-editor-bigger-slider-handler: calc(50% - 6px) !default;
|
|
19
|
+
$image-editor-device-slider-handler: calc(50% - 6px) !default;
|
|
@@ -14,3 +14,6 @@ $image-editor-dropdown-btn-preview-top: -4px !default;
|
|
|
14
14
|
$image-editor-dropdown-btn-preview-left: -1px !default;
|
|
15
15
|
$image-editor-bigger-dropdown-btn-preview-top: -4px !default;
|
|
16
16
|
$image-editor-bigger-dropdown-btn-preview-left: -1px !default;
|
|
17
|
+
$image-editor-slider-handler: calc(50% - 6px) !default;
|
|
18
|
+
$image-editor-bigger-slider-handler: calc(50% - 8px) !default;
|
|
19
|
+
$image-editor-device-slider-handler: calc(50% - 8px) !default;
|
|
@@ -14,3 +14,6 @@ $image-editor-dropdown-btn-preview-top: -4px !default;
|
|
|
14
14
|
$image-editor-dropdown-btn-preview-left: -1px !default;
|
|
15
15
|
$image-editor-bigger-dropdown-btn-preview-top: -4px !default;
|
|
16
16
|
$image-editor-bigger-dropdown-btn-preview-left: -1px !default;
|
|
17
|
+
$image-editor-slider-handler: calc(50% - 6px) !default;
|
|
18
|
+
$image-editor-bigger-slider-handler: calc(50% - 8px) !default;
|
|
19
|
+
$image-editor-device-slider-handler: calc(50% - 8px) !default;
|