@syncfusion/ej2-image-editor 23.2.7 → 24.1.41
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 +3 -59
- 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 +7146 -4325
- package/dist/es6/ej2-image-editor.es2015.js.map +1 -1
- package/dist/es6/ej2-image-editor.es5.js +7215 -4381
- 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 +1682 -881
- 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 +921 -550
- package/src/image-editor/action/transform.d.ts +2 -0
- package/src/image-editor/action/transform.js +514 -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 +672 -171
- 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 +1371 -822
- 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: "\e96b";
|
|
93
93
|
}
|
|
94
|
+
.e-image-editor .e-custom-f::before {
|
|
95
|
+
content: "\e999";
|
|
96
|
+
}
|
|
97
|
+
.e-image-editor .e-custom-g::before {
|
|
98
|
+
content: "\e99a";
|
|
99
|
+
}
|
|
100
|
+
.e-image-editor .e-custom-h::before {
|
|
101
|
+
content: "\e99b";
|
|
102
|
+
}
|
|
103
|
+
.e-image-editor .e-custom-i::before {
|
|
104
|
+
content: "\e99c";
|
|
105
|
+
}
|
|
106
|
+
.e-image-editor .e-custom-j::before {
|
|
107
|
+
content: "\e99d";
|
|
108
|
+
}
|
|
94
109
|
.e-image-editor .e-horizontal-flip::before {
|
|
95
110
|
content: "\e95c";
|
|
96
111
|
}
|
|
@@ -152,6 +167,21 @@
|
|
|
152
167
|
.e-dropdown-popup.e-image-popup .e-custom-e::before {
|
|
153
168
|
content: "\e96b";
|
|
154
169
|
}
|
|
170
|
+
.e-dropdown-popup.e-image-popup .e-custom-f::before {
|
|
171
|
+
content: "\e999";
|
|
172
|
+
}
|
|
173
|
+
.e-dropdown-popup.e-image-popup .e-custom-g::before {
|
|
174
|
+
content: "\e99a";
|
|
175
|
+
}
|
|
176
|
+
.e-dropdown-popup.e-image-popup .e-custom-h::before {
|
|
177
|
+
content: "\e99b";
|
|
178
|
+
}
|
|
179
|
+
.e-dropdown-popup.e-image-popup .e-custom-i::before {
|
|
180
|
+
content: "\e99c";
|
|
181
|
+
}
|
|
182
|
+
.e-dropdown-popup.e-image-popup .e-custom-j::before {
|
|
183
|
+
content: "\e99d";
|
|
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 #dee2e6;
|
|
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 #dee2e6;
|
|
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% - 7px) !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: 56px !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -270,6 +332,11 @@
|
|
|
270
332
|
border: 1px solid #dee2e6;
|
|
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 #dee2e6;
|
|
309
377
|
height: 40px !important; /* stylelint-disable-line declaration-no-important */
|
|
310
378
|
min-height: 40px !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 #dee2e6;
|
|
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 #dee2e6;
|
|
372
437
|
}
|
|
373
438
|
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
439
|
+
border-bottom: 1px solid #dee2e6;
|
|
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% - 7px) !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: #e9ecef;
|
|
428
535
|
}
|
|
429
536
|
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
430
537
|
background: #f8f9fa;
|
|
431
|
-
border-top: 1px solid #dee2e6;
|
|
432
|
-
border-bottom: 1px solid #dee2e6;
|
|
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: #545b62;
|
|
@@ -448,7 +553,7 @@
|
|
|
448
553
|
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
449
554
|
}
|
|
450
555
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
|
|
451
|
-
background: #
|
|
556
|
+
background: #6c757d;
|
|
452
557
|
box-shadow: none;
|
|
453
558
|
color: #fff;
|
|
454
559
|
}
|
|
@@ -99,6 +99,21 @@
|
|
|
99
99
|
.e-image-editor .e-custom-e::before {
|
|
100
100
|
content: "\e8af";
|
|
101
101
|
}
|
|
102
|
+
.e-image-editor .e-custom-f::before {
|
|
103
|
+
content: "\e8dd";
|
|
104
|
+
}
|
|
105
|
+
.e-image-editor .e-custom-g::before {
|
|
106
|
+
content: "\e8de";
|
|
107
|
+
}
|
|
108
|
+
.e-image-editor .e-custom-h::before {
|
|
109
|
+
content: "\e8df";
|
|
110
|
+
}
|
|
111
|
+
.e-image-editor .e-custom-i::before {
|
|
112
|
+
content: "\e8e0";
|
|
113
|
+
}
|
|
114
|
+
.e-image-editor .e-custom-j::before {
|
|
115
|
+
content: "\e8e1";
|
|
116
|
+
}
|
|
102
117
|
.e-image-editor .e-horizontal-flip::before {
|
|
103
118
|
content: "\e8a3";
|
|
104
119
|
}
|
|
@@ -160,6 +175,21 @@
|
|
|
160
175
|
.e-dropdown-popup.e-image-popup .e-custom-e::before {
|
|
161
176
|
content: "\e8af";
|
|
162
177
|
}
|
|
178
|
+
.e-dropdown-popup.e-image-popup .e-custom-f::before {
|
|
179
|
+
content: "\e8dd";
|
|
180
|
+
}
|
|
181
|
+
.e-dropdown-popup.e-image-popup .e-custom-g::before {
|
|
182
|
+
content: "\e8de";
|
|
183
|
+
}
|
|
184
|
+
.e-dropdown-popup.e-image-popup .e-custom-h::before {
|
|
185
|
+
content: "\e8df";
|
|
186
|
+
}
|
|
187
|
+
.e-dropdown-popup.e-image-popup .e-custom-i::before {
|
|
188
|
+
content: "\e8e0";
|
|
189
|
+
}
|
|
190
|
+
.e-dropdown-popup.e-image-popup .e-custom-j::before {
|
|
191
|
+
content: "\e8e1";
|
|
192
|
+
}
|
|
163
193
|
.e-dropdown-popup.e-image-popup .e-rectangle::before {
|
|
164
194
|
content: "\e723";
|
|
165
195
|
}
|
|
@@ -209,10 +239,42 @@
|
|
|
209
239
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
210
240
|
}
|
|
211
241
|
.e-device.e-image-editor .e-slider-container {
|
|
212
|
-
margin-left: calc(50% -
|
|
242
|
+
margin-left: calc(50% - 70px) !important; /* stylelint-disable-line declaration-no-important */
|
|
213
243
|
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
214
244
|
}
|
|
245
|
+
.e-device.e-image-editor .e-straighten-slider {
|
|
246
|
+
margin-left: calc(50% - 70px) !important; /* stylelint-disable-line declaration-no-important */
|
|
247
|
+
}
|
|
248
|
+
.e-device.e-image-editor .e-ie-straighten-value-span {
|
|
249
|
+
margin-left: 15px !important; /* stylelint-disable-line declaration-no-important */
|
|
250
|
+
}
|
|
251
|
+
.e-device.e-image-editor .e-hscroll .e-scroll-nav.e-scroll-right-nav {
|
|
252
|
+
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
253
|
+
}
|
|
254
|
+
.e-device.e-image-editor .e-hscroll.e-scroll-device {
|
|
255
|
+
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
256
|
+
}
|
|
257
|
+
.e-device.e-image-editor .e-scroll-right-overlay {
|
|
258
|
+
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
259
|
+
}
|
|
260
|
+
.e-device.e-image-editor .e-contextual-toolbar-wrapper {
|
|
261
|
+
border-top: 1px solid #343a40;
|
|
262
|
+
border-bottom: none !important; /* stylelint-disable-line declaration-no-important */
|
|
263
|
+
}
|
|
264
|
+
.e-device.e-image-editor .e-toolbar {
|
|
265
|
+
border-bottom: 1px solid #343a40;
|
|
266
|
+
}
|
|
267
|
+
.e-device.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar {
|
|
268
|
+
border-bottom: none !important; /* stylelint-disable-line declaration-no-important */
|
|
269
|
+
}
|
|
270
|
+
.e-device.e-image-editor .e-bottom-toolbar .e-toolbar, .e-device.e-image-editor .e-bottom-toolbar-area .e-toolbar {
|
|
271
|
+
border-bottom: none;
|
|
272
|
+
}
|
|
215
273
|
|
|
274
|
+
.e-bigger .e-image-editor .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle,
|
|
275
|
+
.e-image-editor.e-bigger .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle {
|
|
276
|
+
top: calc(50% - 8px) !important; /* stylelint-disable-line declaration-no-important */
|
|
277
|
+
}
|
|
216
278
|
.e-bigger .e-image-editor .e-toolbar,
|
|
217
279
|
.e-image-editor.e-bigger .e-toolbar {
|
|
218
280
|
height: 46px !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -283,6 +345,11 @@
|
|
|
283
345
|
border: 1px solid #343a40;
|
|
284
346
|
position: relative;
|
|
285
347
|
display: block;
|
|
348
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
349
|
+
}
|
|
350
|
+
.e-image-editor .no-spin ::-webkit-inner-spin-button, .e-image-editor .no-spin ::-webkit-outer-spin-button {
|
|
351
|
+
-webkit-appearance: none;
|
|
352
|
+
margin: 0;
|
|
286
353
|
}
|
|
287
354
|
.e-image-editor .e-ie-drop-area {
|
|
288
355
|
height: calc(100% - 18px);
|
|
@@ -319,6 +386,7 @@
|
|
|
319
386
|
}
|
|
320
387
|
.e-image-editor .e-toolbar {
|
|
321
388
|
border: none;
|
|
389
|
+
border-bottom: 1px solid #343a40;
|
|
322
390
|
height: 40px !important; /* stylelint-disable-line declaration-no-important */
|
|
323
391
|
min-height: 40px !important; /* stylelint-disable-line declaration-no-important */
|
|
324
392
|
}
|
|
@@ -379,20 +447,19 @@
|
|
|
379
447
|
.e-image-editor .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
|
|
380
448
|
line-height: 1;
|
|
381
449
|
}
|
|
382
|
-
.e-image-editor .e-toolbar-area + .e-canvas-wrapper {
|
|
383
|
-
border-top: 1px solid #343a40;
|
|
384
|
-
}
|
|
385
450
|
.e-image-editor .e-toolbar-area + .e-canvas-wrapper .e-textarea {
|
|
386
451
|
line-height: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
387
452
|
}
|
|
388
|
-
.e-image-editor .e-bottom-toolbar {
|
|
453
|
+
.e-image-editor .e-bottom-toolbar, .e-image-editor .e-bottom-toolbar-area {
|
|
389
454
|
border-top: 1px solid #343a40;
|
|
390
455
|
}
|
|
391
456
|
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
457
|
+
border-bottom: 1px solid #343a40;
|
|
392
458
|
width: 100%;
|
|
393
459
|
z-index: 1;
|
|
394
460
|
}
|
|
395
461
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar {
|
|
462
|
+
border-bottom: none !important; /* stylelint-disable-line declaration-no-important */
|
|
396
463
|
height: 130px !important; /* stylelint-disable-line declaration-no-important */
|
|
397
464
|
}
|
|
398
465
|
.e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-toolbar {
|
|
@@ -423,6 +490,10 @@
|
|
|
423
490
|
margin: 4px;
|
|
424
491
|
text-align: center;
|
|
425
492
|
}
|
|
493
|
+
.e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-dropdown-btn {
|
|
494
|
+
margin: 0 auto;
|
|
495
|
+
width: max-content;
|
|
496
|
+
}
|
|
426
497
|
.e-image-editor .e-contextual-toolbar-wrapper.e-hide {
|
|
427
498
|
display: none;
|
|
428
499
|
}
|
|
@@ -440,14 +511,48 @@
|
|
|
440
511
|
margin-left: calc(50% - 137px);
|
|
441
512
|
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
442
513
|
}
|
|
514
|
+
.e-ie-straighten-value-span,
|
|
515
|
+
.e-ie-straighten-span {
|
|
516
|
+
font-size: 14px;
|
|
517
|
+
padding-left: 10px !important; /* stylelint-disable-line declaration-no-important */
|
|
518
|
+
padding-right: 10px !important; /* stylelint-disable-line declaration-no-important */
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
.e-straighten .e-control-wrapper.e-slider-container.e-horizontal {
|
|
522
|
+
height: auto;
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
.e-straighten .e-control-wrapper.e-slider-container.e-horizontal .e-slider {
|
|
526
|
+
top: calc(50% - 20px) !important; /* stylelint-disable-line declaration-no-important */
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
.e-straighten .e-control-wrapper.e-slider-container.e-horizontal .e-slider-track,
|
|
530
|
+
.e-straighten .e-control-wrapper.e-slider-container.e-horizontal .e-range {
|
|
531
|
+
top: calc(50% - 2px) !important; /* stylelint-disable-line declaration-no-important */
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
.e-straighten .e-control-wrapper.e-slider-container .e-slider .e-handle {
|
|
535
|
+
top: calc(50% - 5px) !important; /* stylelint-disable-line declaration-no-important */
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
.e-bigger .e-straighten .e-control-wrapper.e-slider-container .e-slider .e-handle {
|
|
539
|
+
top: calc(50% - 6px) !important; /* stylelint-disable-line declaration-no-important */
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
.e-dropdown-popup.e-ie-crop-ddb-popup ul {
|
|
543
|
+
height: 250px;
|
|
544
|
+
overflow-y: scroll;
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
.e-dropdown-popup.e-ie-ddb-popup {
|
|
548
|
+
background: none !important; /* stylelint-disable-line declaration-no-important */
|
|
549
|
+
}
|
|
443
550
|
|
|
444
551
|
.e-image-editor {
|
|
445
552
|
background: #444c54;
|
|
446
553
|
}
|
|
447
554
|
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
448
555
|
background: #282d31;
|
|
449
|
-
border-top: 1px solid #343a40;
|
|
450
|
-
border-bottom: 1px solid #343a40;
|
|
451
556
|
}
|
|
452
557
|
.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 {
|
|
453
558
|
border-color: #565e64;
|
|
@@ -471,7 +576,7 @@
|
|
|
471
576
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
|
|
472
577
|
background: #5c636a;
|
|
473
578
|
box-shadow: none;
|
|
474
|
-
color: #
|
|
579
|
+
color: #adb5bd;
|
|
475
580
|
}
|
|
476
581
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
|
|
477
582
|
background: #5c636a;
|
|
@@ -99,6 +99,21 @@
|
|
|
99
99
|
.e-image-editor .e-custom-e::before {
|
|
100
100
|
content: "\e8af";
|
|
101
101
|
}
|
|
102
|
+
.e-image-editor .e-custom-f::before {
|
|
103
|
+
content: "\e8dd";
|
|
104
|
+
}
|
|
105
|
+
.e-image-editor .e-custom-g::before {
|
|
106
|
+
content: "\e8de";
|
|
107
|
+
}
|
|
108
|
+
.e-image-editor .e-custom-h::before {
|
|
109
|
+
content: "\e8df";
|
|
110
|
+
}
|
|
111
|
+
.e-image-editor .e-custom-i::before {
|
|
112
|
+
content: "\e8e0";
|
|
113
|
+
}
|
|
114
|
+
.e-image-editor .e-custom-j::before {
|
|
115
|
+
content: "\e8e1";
|
|
116
|
+
}
|
|
102
117
|
.e-image-editor .e-horizontal-flip::before {
|
|
103
118
|
content: "\e8a3";
|
|
104
119
|
}
|
|
@@ -160,6 +175,21 @@
|
|
|
160
175
|
.e-dropdown-popup.e-image-popup .e-custom-e::before {
|
|
161
176
|
content: "\e8af";
|
|
162
177
|
}
|
|
178
|
+
.e-dropdown-popup.e-image-popup .e-custom-f::before {
|
|
179
|
+
content: "\e8dd";
|
|
180
|
+
}
|
|
181
|
+
.e-dropdown-popup.e-image-popup .e-custom-g::before {
|
|
182
|
+
content: "\e8de";
|
|
183
|
+
}
|
|
184
|
+
.e-dropdown-popup.e-image-popup .e-custom-h::before {
|
|
185
|
+
content: "\e8df";
|
|
186
|
+
}
|
|
187
|
+
.e-dropdown-popup.e-image-popup .e-custom-i::before {
|
|
188
|
+
content: "\e8e0";
|
|
189
|
+
}
|
|
190
|
+
.e-dropdown-popup.e-image-popup .e-custom-j::before {
|
|
191
|
+
content: "\e8e1";
|
|
192
|
+
}
|
|
163
193
|
.e-dropdown-popup.e-image-popup .e-rectangle::before {
|
|
164
194
|
content: "\e723";
|
|
165
195
|
}
|
|
@@ -209,10 +239,42 @@
|
|
|
209
239
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
210
240
|
}
|
|
211
241
|
.e-device.e-image-editor .e-slider-container {
|
|
212
|
-
margin-left: calc(50% -
|
|
242
|
+
margin-left: calc(50% - 70px) !important; /* stylelint-disable-line declaration-no-important */
|
|
213
243
|
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
214
244
|
}
|
|
245
|
+
.e-device.e-image-editor .e-straighten-slider {
|
|
246
|
+
margin-left: calc(50% - 70px) !important; /* stylelint-disable-line declaration-no-important */
|
|
247
|
+
}
|
|
248
|
+
.e-device.e-image-editor .e-ie-straighten-value-span {
|
|
249
|
+
margin-left: 15px !important; /* stylelint-disable-line declaration-no-important */
|
|
250
|
+
}
|
|
251
|
+
.e-device.e-image-editor .e-hscroll .e-scroll-nav.e-scroll-right-nav {
|
|
252
|
+
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
253
|
+
}
|
|
254
|
+
.e-device.e-image-editor .e-hscroll.e-scroll-device {
|
|
255
|
+
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
256
|
+
}
|
|
257
|
+
.e-device.e-image-editor .e-scroll-right-overlay {
|
|
258
|
+
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
259
|
+
}
|
|
260
|
+
.e-device.e-image-editor .e-contextual-toolbar-wrapper {
|
|
261
|
+
border-top: 1px solid #e9ecef;
|
|
262
|
+
border-bottom: none !important; /* stylelint-disable-line declaration-no-important */
|
|
263
|
+
}
|
|
264
|
+
.e-device.e-image-editor .e-toolbar {
|
|
265
|
+
border-bottom: 1px solid #e9ecef;
|
|
266
|
+
}
|
|
267
|
+
.e-device.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar {
|
|
268
|
+
border-bottom: none !important; /* stylelint-disable-line declaration-no-important */
|
|
269
|
+
}
|
|
270
|
+
.e-device.e-image-editor .e-bottom-toolbar .e-toolbar, .e-device.e-image-editor .e-bottom-toolbar-area .e-toolbar {
|
|
271
|
+
border-bottom: none;
|
|
272
|
+
}
|
|
215
273
|
|
|
274
|
+
.e-bigger .e-image-editor .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle,
|
|
275
|
+
.e-image-editor.e-bigger .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle {
|
|
276
|
+
top: calc(50% - 8px) !important; /* stylelint-disable-line declaration-no-important */
|
|
277
|
+
}
|
|
216
278
|
.e-bigger .e-image-editor .e-toolbar,
|
|
217
279
|
.e-image-editor.e-bigger .e-toolbar {
|
|
218
280
|
height: 46px !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -283,6 +345,11 @@
|
|
|
283
345
|
border: 1px solid #e9ecef;
|
|
284
346
|
position: relative;
|
|
285
347
|
display: block;
|
|
348
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
349
|
+
}
|
|
350
|
+
.e-image-editor .no-spin ::-webkit-inner-spin-button, .e-image-editor .no-spin ::-webkit-outer-spin-button {
|
|
351
|
+
-webkit-appearance: none;
|
|
352
|
+
margin: 0;
|
|
286
353
|
}
|
|
287
354
|
.e-image-editor .e-ie-drop-area {
|
|
288
355
|
height: calc(100% - 18px);
|
|
@@ -319,6 +386,7 @@
|
|
|
319
386
|
}
|
|
320
387
|
.e-image-editor .e-toolbar {
|
|
321
388
|
border: none;
|
|
389
|
+
border-bottom: 1px solid #e9ecef;
|
|
322
390
|
height: 40px !important; /* stylelint-disable-line declaration-no-important */
|
|
323
391
|
min-height: 40px !important; /* stylelint-disable-line declaration-no-important */
|
|
324
392
|
}
|
|
@@ -379,20 +447,19 @@
|
|
|
379
447
|
.e-image-editor .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
|
|
380
448
|
line-height: 1;
|
|
381
449
|
}
|
|
382
|
-
.e-image-editor .e-toolbar-area + .e-canvas-wrapper {
|
|
383
|
-
border-top: 1px solid #e9ecef;
|
|
384
|
-
}
|
|
385
450
|
.e-image-editor .e-toolbar-area + .e-canvas-wrapper .e-textarea {
|
|
386
451
|
line-height: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
387
452
|
}
|
|
388
|
-
.e-image-editor .e-bottom-toolbar {
|
|
453
|
+
.e-image-editor .e-bottom-toolbar, .e-image-editor .e-bottom-toolbar-area {
|
|
389
454
|
border-top: 1px solid #e9ecef;
|
|
390
455
|
}
|
|
391
456
|
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
457
|
+
border-bottom: 1px solid #e9ecef;
|
|
392
458
|
width: 100%;
|
|
393
459
|
z-index: 1;
|
|
394
460
|
}
|
|
395
461
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar {
|
|
462
|
+
border-bottom: none !important; /* stylelint-disable-line declaration-no-important */
|
|
396
463
|
height: 130px !important; /* stylelint-disable-line declaration-no-important */
|
|
397
464
|
}
|
|
398
465
|
.e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-toolbar {
|
|
@@ -423,6 +490,10 @@
|
|
|
423
490
|
margin: 4px;
|
|
424
491
|
text-align: center;
|
|
425
492
|
}
|
|
493
|
+
.e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-dropdown-btn {
|
|
494
|
+
margin: 0 auto;
|
|
495
|
+
width: max-content;
|
|
496
|
+
}
|
|
426
497
|
.e-image-editor .e-contextual-toolbar-wrapper.e-hide {
|
|
427
498
|
display: none;
|
|
428
499
|
}
|
|
@@ -440,14 +511,48 @@
|
|
|
440
511
|
margin-left: calc(50% - 137px);
|
|
441
512
|
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
442
513
|
}
|
|
514
|
+
.e-ie-straighten-value-span,
|
|
515
|
+
.e-ie-straighten-span {
|
|
516
|
+
font-size: 14px;
|
|
517
|
+
padding-left: 10px !important; /* stylelint-disable-line declaration-no-important */
|
|
518
|
+
padding-right: 10px !important; /* stylelint-disable-line declaration-no-important */
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
.e-straighten .e-control-wrapper.e-slider-container.e-horizontal {
|
|
522
|
+
height: auto;
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
.e-straighten .e-control-wrapper.e-slider-container.e-horizontal .e-slider {
|
|
526
|
+
top: calc(50% - 20px) !important; /* stylelint-disable-line declaration-no-important */
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
.e-straighten .e-control-wrapper.e-slider-container.e-horizontal .e-slider-track,
|
|
530
|
+
.e-straighten .e-control-wrapper.e-slider-container.e-horizontal .e-range {
|
|
531
|
+
top: calc(50% - 2px) !important; /* stylelint-disable-line declaration-no-important */
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
.e-straighten .e-control-wrapper.e-slider-container .e-slider .e-handle {
|
|
535
|
+
top: calc(50% - 5px) !important; /* stylelint-disable-line declaration-no-important */
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
.e-bigger .e-straighten .e-control-wrapper.e-slider-container .e-slider .e-handle {
|
|
539
|
+
top: calc(50% - 6px) !important; /* stylelint-disable-line declaration-no-important */
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
.e-dropdown-popup.e-ie-crop-ddb-popup ul {
|
|
543
|
+
height: 250px;
|
|
544
|
+
overflow-y: scroll;
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
.e-dropdown-popup.e-ie-ddb-popup {
|
|
548
|
+
background: none !important; /* stylelint-disable-line declaration-no-important */
|
|
549
|
+
}
|
|
443
550
|
|
|
444
551
|
.e-image-editor {
|
|
445
552
|
background: #dee2e6;
|
|
446
553
|
}
|
|
447
554
|
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
448
555
|
background: #f8f9fa;
|
|
449
|
-
border-top: 1px solid #e9ecef;
|
|
450
|
-
border-bottom: 1px solid #e9ecef;
|
|
451
556
|
}
|
|
452
557
|
.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 {
|
|
453
558
|
border-color: #565e64;
|
|
@@ -471,7 +576,7 @@
|
|
|
471
576
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
|
|
472
577
|
background: #5c636a;
|
|
473
578
|
box-shadow: none;
|
|
474
|
-
color: #
|
|
579
|
+
color: #6c757d;
|
|
475
580
|
}
|
|
476
581
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
|
|
477
582
|
background: #5c636a;
|