@syncfusion/ej2-image-editor 23.2.6 → 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 -51
- 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 +7151 -4321
- package/dist/es6/ej2-image-editor.es2015.js.map +1 -1
- package/dist/es6/ej2-image-editor.es5.js +7269 -4426
- 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 +259 -149
- 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
|
@@ -94,6 +94,21 @@
|
|
|
94
94
|
.e-image-editor .e-custom-e::before {
|
|
95
95
|
content: "\e8af";
|
|
96
96
|
}
|
|
97
|
+
.e-image-editor .e-custom-f::before {
|
|
98
|
+
content: "\e8dd";
|
|
99
|
+
}
|
|
100
|
+
.e-image-editor .e-custom-g::before {
|
|
101
|
+
content: "\e8de";
|
|
102
|
+
}
|
|
103
|
+
.e-image-editor .e-custom-h::before {
|
|
104
|
+
content: "\e8df";
|
|
105
|
+
}
|
|
106
|
+
.e-image-editor .e-custom-i::before {
|
|
107
|
+
content: "\e8e0";
|
|
108
|
+
}
|
|
109
|
+
.e-image-editor .e-custom-j::before {
|
|
110
|
+
content: "\e8e1";
|
|
111
|
+
}
|
|
97
112
|
.e-image-editor .e-horizontal-flip::before {
|
|
98
113
|
content: "\e8a3";
|
|
99
114
|
}
|
|
@@ -155,6 +170,21 @@
|
|
|
155
170
|
.e-dropdown-popup.e-image-popup .e-custom-e::before {
|
|
156
171
|
content: "\e8af";
|
|
157
172
|
}
|
|
173
|
+
.e-dropdown-popup.e-image-popup .e-custom-f::before {
|
|
174
|
+
content: "\e8dd";
|
|
175
|
+
}
|
|
176
|
+
.e-dropdown-popup.e-image-popup .e-custom-g::before {
|
|
177
|
+
content: "\e8de";
|
|
178
|
+
}
|
|
179
|
+
.e-dropdown-popup.e-image-popup .e-custom-h::before {
|
|
180
|
+
content: "\e8df";
|
|
181
|
+
}
|
|
182
|
+
.e-dropdown-popup.e-image-popup .e-custom-i::before {
|
|
183
|
+
content: "\e8e0";
|
|
184
|
+
}
|
|
185
|
+
.e-dropdown-popup.e-image-popup .e-custom-j::before {
|
|
186
|
+
content: "\e8e1";
|
|
187
|
+
}
|
|
158
188
|
.e-dropdown-popup.e-image-popup .e-rectangle::before {
|
|
159
189
|
content: "\e723";
|
|
160
190
|
}
|
|
@@ -204,10 +234,42 @@
|
|
|
204
234
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
205
235
|
}
|
|
206
236
|
.e-device.e-image-editor .e-slider-container {
|
|
207
|
-
margin-left: calc(50% -
|
|
237
|
+
margin-left: calc(50% - 70px) !important; /* stylelint-disable-line declaration-no-important */
|
|
208
238
|
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
209
239
|
}
|
|
240
|
+
.e-device.e-image-editor .e-straighten-slider {
|
|
241
|
+
margin-left: calc(50% - 70px) !important; /* stylelint-disable-line declaration-no-important */
|
|
242
|
+
}
|
|
243
|
+
.e-device.e-image-editor .e-ie-straighten-value-span {
|
|
244
|
+
margin-left: 15px !important; /* stylelint-disable-line declaration-no-important */
|
|
245
|
+
}
|
|
246
|
+
.e-device.e-image-editor .e-hscroll .e-scroll-nav.e-scroll-right-nav {
|
|
247
|
+
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
248
|
+
}
|
|
249
|
+
.e-device.e-image-editor .e-hscroll.e-scroll-device {
|
|
250
|
+
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
251
|
+
}
|
|
252
|
+
.e-device.e-image-editor .e-scroll-right-overlay {
|
|
253
|
+
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
254
|
+
}
|
|
255
|
+
.e-device.e-image-editor .e-contextual-toolbar-wrapper {
|
|
256
|
+
border-top: 1px solid #e5e7eb;
|
|
257
|
+
border-bottom: none !important; /* stylelint-disable-line declaration-no-important */
|
|
258
|
+
}
|
|
259
|
+
.e-device.e-image-editor .e-toolbar {
|
|
260
|
+
border-bottom: 1px solid #e5e7eb;
|
|
261
|
+
}
|
|
262
|
+
.e-device.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar {
|
|
263
|
+
border-bottom: none !important; /* stylelint-disable-line declaration-no-important */
|
|
264
|
+
}
|
|
265
|
+
.e-device.e-image-editor .e-bottom-toolbar .e-toolbar, .e-device.e-image-editor .e-bottom-toolbar-area .e-toolbar {
|
|
266
|
+
border-bottom: none;
|
|
267
|
+
}
|
|
210
268
|
|
|
269
|
+
.e-bigger .e-image-editor .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle,
|
|
270
|
+
.e-image-editor.e-bigger .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle {
|
|
271
|
+
top: calc(50% - 9px) !important; /* stylelint-disable-line declaration-no-important */
|
|
272
|
+
}
|
|
211
273
|
.e-bigger .e-image-editor .e-toolbar,
|
|
212
274
|
.e-image-editor.e-bigger .e-toolbar {
|
|
213
275
|
height: 48px !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -276,6 +338,11 @@
|
|
|
276
338
|
border: 1px solid #e5e7eb;
|
|
277
339
|
position: relative;
|
|
278
340
|
display: block;
|
|
341
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
342
|
+
}
|
|
343
|
+
.e-image-editor .no-spin ::-webkit-inner-spin-button, .e-image-editor .no-spin ::-webkit-outer-spin-button {
|
|
344
|
+
-webkit-appearance: none;
|
|
345
|
+
margin: 0;
|
|
279
346
|
}
|
|
280
347
|
.e-image-editor .e-ie-drop-area {
|
|
281
348
|
height: calc(100% - 18px);
|
|
@@ -312,6 +379,7 @@
|
|
|
312
379
|
}
|
|
313
380
|
.e-image-editor .e-toolbar {
|
|
314
381
|
border: none;
|
|
382
|
+
border-bottom: 1px solid #e5e7eb;
|
|
315
383
|
height: 38px !important; /* stylelint-disable-line declaration-no-important */
|
|
316
384
|
min-height: 38px !important; /* stylelint-disable-line declaration-no-important */
|
|
317
385
|
}
|
|
@@ -367,20 +435,19 @@
|
|
|
367
435
|
.e-image-editor .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
|
|
368
436
|
line-height: 1;
|
|
369
437
|
}
|
|
370
|
-
.e-image-editor .e-toolbar-area + .e-canvas-wrapper {
|
|
371
|
-
border-top: 1px solid #e5e7eb;
|
|
372
|
-
}
|
|
373
438
|
.e-image-editor .e-toolbar-area + .e-canvas-wrapper .e-textarea {
|
|
374
439
|
line-height: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
375
440
|
}
|
|
376
|
-
.e-image-editor .e-bottom-toolbar {
|
|
441
|
+
.e-image-editor .e-bottom-toolbar, .e-image-editor .e-bottom-toolbar-area {
|
|
377
442
|
border-top: 1px solid #e5e7eb;
|
|
378
443
|
}
|
|
379
444
|
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
445
|
+
border-bottom: 1px solid #e5e7eb;
|
|
380
446
|
width: 100%;
|
|
381
447
|
z-index: 1;
|
|
382
448
|
}
|
|
383
449
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar {
|
|
450
|
+
border-bottom: none !important; /* stylelint-disable-line declaration-no-important */
|
|
384
451
|
height: 130px !important; /* stylelint-disable-line declaration-no-important */
|
|
385
452
|
}
|
|
386
453
|
.e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-toolbar {
|
|
@@ -411,6 +478,10 @@
|
|
|
411
478
|
margin: 4px;
|
|
412
479
|
text-align: center;
|
|
413
480
|
}
|
|
481
|
+
.e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-dropdown-btn {
|
|
482
|
+
margin: 0 auto;
|
|
483
|
+
width: max-content;
|
|
484
|
+
}
|
|
414
485
|
.e-image-editor .e-contextual-toolbar-wrapper.e-hide {
|
|
415
486
|
display: none;
|
|
416
487
|
}
|
|
@@ -428,14 +499,48 @@
|
|
|
428
499
|
margin-left: calc(50% - 137px);
|
|
429
500
|
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
430
501
|
}
|
|
502
|
+
.e-ie-straighten-value-span,
|
|
503
|
+
.e-ie-straighten-span {
|
|
504
|
+
font-size: 14px;
|
|
505
|
+
padding-left: 10px !important; /* stylelint-disable-line declaration-no-important */
|
|
506
|
+
padding-right: 10px !important; /* stylelint-disable-line declaration-no-important */
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
.e-straighten .e-control-wrapper.e-slider-container.e-horizontal {
|
|
510
|
+
height: auto;
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
.e-straighten .e-control-wrapper.e-slider-container.e-horizontal .e-slider {
|
|
514
|
+
top: calc(50% - 20px) !important; /* stylelint-disable-line declaration-no-important */
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
.e-straighten .e-control-wrapper.e-slider-container.e-horizontal .e-slider-track,
|
|
518
|
+
.e-straighten .e-control-wrapper.e-slider-container.e-horizontal .e-range {
|
|
519
|
+
top: calc(50% - 2px) !important; /* stylelint-disable-line declaration-no-important */
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
.e-straighten .e-control-wrapper.e-slider-container .e-slider .e-handle {
|
|
523
|
+
top: calc(50% - 6px) !important; /* stylelint-disable-line declaration-no-important */
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
.e-bigger .e-straighten .e-control-wrapper.e-slider-container .e-slider .e-handle {
|
|
527
|
+
top: calc(50% - 7px) !important; /* stylelint-disable-line declaration-no-important */
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
.e-dropdown-popup.e-ie-crop-ddb-popup ul {
|
|
531
|
+
height: 250px;
|
|
532
|
+
overflow-y: scroll;
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
.e-dropdown-popup.e-ie-ddb-popup {
|
|
536
|
+
background: none !important; /* stylelint-disable-line declaration-no-important */
|
|
537
|
+
}
|
|
431
538
|
|
|
432
539
|
.e-image-editor {
|
|
433
540
|
background: #e5e7eb;
|
|
434
541
|
}
|
|
435
542
|
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
436
543
|
background: #f3f4f6;
|
|
437
|
-
border-top: 1px solid #e5e7eb;
|
|
438
|
-
border-bottom: 1px solid #e5e7eb;
|
|
439
544
|
}
|
|
440
545
|
.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 {
|
|
441
546
|
border-color: #e5e7eb;
|
|
@@ -457,9 +562,9 @@
|
|
|
457
562
|
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
458
563
|
}
|
|
459
564
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
|
|
460
|
-
background: #
|
|
565
|
+
background: #e5e7eb;
|
|
461
566
|
box-shadow: none;
|
|
462
|
-
color: #
|
|
567
|
+
color: #6b7280;
|
|
463
568
|
}
|
|
464
569
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
|
|
465
570
|
background: #f3f4f6;
|
package/styles/material-dark.css
CHANGED
|
@@ -100,6 +100,21 @@
|
|
|
100
100
|
.e-image-editor .e-custom-e::before {
|
|
101
101
|
content: "\e96b";
|
|
102
102
|
}
|
|
103
|
+
.e-image-editor .e-custom-f::before {
|
|
104
|
+
content: "\e9a1";
|
|
105
|
+
}
|
|
106
|
+
.e-image-editor .e-custom-g::before {
|
|
107
|
+
content: "\e9a2";
|
|
108
|
+
}
|
|
109
|
+
.e-image-editor .e-custom-h::before {
|
|
110
|
+
content: "\e9a3";
|
|
111
|
+
}
|
|
112
|
+
.e-image-editor .e-custom-i::before {
|
|
113
|
+
content: "\e9a4";
|
|
114
|
+
}
|
|
115
|
+
.e-image-editor .e-custom-j::before {
|
|
116
|
+
content: "\e9a5";
|
|
117
|
+
}
|
|
103
118
|
.e-image-editor .e-horizontal-flip::before {
|
|
104
119
|
content: "\e95c";
|
|
105
120
|
}
|
|
@@ -161,6 +176,21 @@
|
|
|
161
176
|
.e-dropdown-popup.e-image-popup .e-custom-e::before {
|
|
162
177
|
content: "\e96b";
|
|
163
178
|
}
|
|
179
|
+
.e-dropdown-popup.e-image-popup .e-custom-f::before {
|
|
180
|
+
content: "\e9a1";
|
|
181
|
+
}
|
|
182
|
+
.e-dropdown-popup.e-image-popup .e-custom-g::before {
|
|
183
|
+
content: "\e9a2";
|
|
184
|
+
}
|
|
185
|
+
.e-dropdown-popup.e-image-popup .e-custom-h::before {
|
|
186
|
+
content: "\e9a3";
|
|
187
|
+
}
|
|
188
|
+
.e-dropdown-popup.e-image-popup .e-custom-i::before {
|
|
189
|
+
content: "\e9a4";
|
|
190
|
+
}
|
|
191
|
+
.e-dropdown-popup.e-image-popup .e-custom-j::before {
|
|
192
|
+
content: "\e9a5";
|
|
193
|
+
}
|
|
164
194
|
.e-dropdown-popup.e-image-popup .e-rectangle::before {
|
|
165
195
|
content: "\e670";
|
|
166
196
|
}
|
|
@@ -207,10 +237,42 @@
|
|
|
207
237
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
208
238
|
}
|
|
209
239
|
.e-device.e-image-editor .e-slider-container {
|
|
210
|
-
margin-left: calc(50% -
|
|
240
|
+
margin-left: calc(50% - 70px) !important; /* stylelint-disable-line declaration-no-important */
|
|
211
241
|
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
212
242
|
}
|
|
243
|
+
.e-device.e-image-editor .e-straighten-slider {
|
|
244
|
+
margin-left: calc(50% - 70px) !important; /* stylelint-disable-line declaration-no-important */
|
|
245
|
+
}
|
|
246
|
+
.e-device.e-image-editor .e-ie-straighten-value-span {
|
|
247
|
+
margin-left: 15px !important; /* stylelint-disable-line declaration-no-important */
|
|
248
|
+
}
|
|
249
|
+
.e-device.e-image-editor .e-hscroll .e-scroll-nav.e-scroll-right-nav {
|
|
250
|
+
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
251
|
+
}
|
|
252
|
+
.e-device.e-image-editor .e-hscroll.e-scroll-device {
|
|
253
|
+
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
254
|
+
}
|
|
255
|
+
.e-device.e-image-editor .e-scroll-right-overlay {
|
|
256
|
+
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
257
|
+
}
|
|
258
|
+
.e-device.e-image-editor .e-contextual-toolbar-wrapper {
|
|
259
|
+
border-top: 1px solid #757575;
|
|
260
|
+
border-bottom: none !important; /* stylelint-disable-line declaration-no-important */
|
|
261
|
+
}
|
|
262
|
+
.e-device.e-image-editor .e-toolbar {
|
|
263
|
+
border-bottom: 1px solid #757575;
|
|
264
|
+
}
|
|
265
|
+
.e-device.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar {
|
|
266
|
+
border-bottom: none !important; /* stylelint-disable-line declaration-no-important */
|
|
267
|
+
}
|
|
268
|
+
.e-device.e-image-editor .e-bottom-toolbar .e-toolbar, .e-device.e-image-editor .e-bottom-toolbar-area .e-toolbar {
|
|
269
|
+
border-bottom: none;
|
|
270
|
+
}
|
|
213
271
|
|
|
272
|
+
.e-bigger .e-image-editor .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle,
|
|
273
|
+
.e-image-editor.e-bigger .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle {
|
|
274
|
+
top: calc(50% - 5px) !important; /* stylelint-disable-line declaration-no-important */
|
|
275
|
+
}
|
|
214
276
|
.e-bigger .e-image-editor .e-toolbar,
|
|
215
277
|
.e-image-editor.e-bigger .e-toolbar {
|
|
216
278
|
height: 48px !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -279,6 +341,11 @@
|
|
|
279
341
|
border: 1px solid #757575;
|
|
280
342
|
position: relative;
|
|
281
343
|
display: block;
|
|
344
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
345
|
+
}
|
|
346
|
+
.e-image-editor .no-spin ::-webkit-inner-spin-button, .e-image-editor .no-spin ::-webkit-outer-spin-button {
|
|
347
|
+
-webkit-appearance: none;
|
|
348
|
+
margin: 0;
|
|
282
349
|
}
|
|
283
350
|
.e-image-editor .e-ie-drop-area {
|
|
284
351
|
height: calc(100% - 18px);
|
|
@@ -315,6 +382,7 @@
|
|
|
315
382
|
}
|
|
316
383
|
.e-image-editor .e-toolbar {
|
|
317
384
|
border: none;
|
|
385
|
+
border-bottom: 1px solid #757575;
|
|
318
386
|
height: 40px !important; /* stylelint-disable-line declaration-no-important */
|
|
319
387
|
min-height: 40px !important; /* stylelint-disable-line declaration-no-important */
|
|
320
388
|
}
|
|
@@ -370,20 +438,19 @@
|
|
|
370
438
|
.e-image-editor .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
|
|
371
439
|
line-height: 1;
|
|
372
440
|
}
|
|
373
|
-
.e-image-editor .e-toolbar-area + .e-canvas-wrapper {
|
|
374
|
-
border-top: 1px solid #757575;
|
|
375
|
-
}
|
|
376
441
|
.e-image-editor .e-toolbar-area + .e-canvas-wrapper .e-textarea {
|
|
377
442
|
line-height: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
378
443
|
}
|
|
379
|
-
.e-image-editor .e-bottom-toolbar {
|
|
444
|
+
.e-image-editor .e-bottom-toolbar, .e-image-editor .e-bottom-toolbar-area {
|
|
380
445
|
border-top: 1px solid #757575;
|
|
381
446
|
}
|
|
382
447
|
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
448
|
+
border-bottom: 1px solid #757575;
|
|
383
449
|
width: 100%;
|
|
384
450
|
z-index: 1;
|
|
385
451
|
}
|
|
386
452
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar {
|
|
453
|
+
border-bottom: none !important; /* stylelint-disable-line declaration-no-important */
|
|
387
454
|
height: 130px !important; /* stylelint-disable-line declaration-no-important */
|
|
388
455
|
}
|
|
389
456
|
.e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-toolbar {
|
|
@@ -414,6 +481,10 @@
|
|
|
414
481
|
margin: 4px;
|
|
415
482
|
text-align: center;
|
|
416
483
|
}
|
|
484
|
+
.e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-dropdown-btn {
|
|
485
|
+
margin: 0 auto;
|
|
486
|
+
width: max-content;
|
|
487
|
+
}
|
|
417
488
|
.e-image-editor .e-contextual-toolbar-wrapper.e-hide {
|
|
418
489
|
display: none;
|
|
419
490
|
}
|
|
@@ -431,14 +502,48 @@
|
|
|
431
502
|
margin-left: calc(50% - 137px);
|
|
432
503
|
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
433
504
|
}
|
|
505
|
+
.e-ie-straighten-value-span,
|
|
506
|
+
.e-ie-straighten-span {
|
|
507
|
+
font-size: 14px;
|
|
508
|
+
padding-left: 10px !important; /* stylelint-disable-line declaration-no-important */
|
|
509
|
+
padding-right: 10px !important; /* stylelint-disable-line declaration-no-important */
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
.e-straighten .e-control-wrapper.e-slider-container.e-horizontal {
|
|
513
|
+
height: auto;
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
.e-straighten .e-control-wrapper.e-slider-container.e-horizontal .e-slider {
|
|
517
|
+
top: calc(50% - 20px) !important; /* stylelint-disable-line declaration-no-important */
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
.e-straighten .e-control-wrapper.e-slider-container.e-horizontal .e-slider-track,
|
|
521
|
+
.e-straighten .e-control-wrapper.e-slider-container.e-horizontal .e-range {
|
|
522
|
+
top: calc(50% - 2px) !important; /* stylelint-disable-line declaration-no-important */
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
.e-straighten .e-control-wrapper.e-slider-container .e-slider .e-handle {
|
|
526
|
+
top: calc(50% - 6px) !important; /* stylelint-disable-line declaration-no-important */
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
.e-bigger .e-straighten .e-control-wrapper.e-slider-container .e-slider .e-handle {
|
|
530
|
+
top: calc(50% - 7px) !important; /* stylelint-disable-line declaration-no-important */
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
.e-dropdown-popup.e-ie-crop-ddb-popup ul {
|
|
534
|
+
height: 250px;
|
|
535
|
+
overflow-y: scroll;
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
.e-dropdown-popup.e-ie-ddb-popup {
|
|
539
|
+
background: none !important; /* stylelint-disable-line declaration-no-important */
|
|
540
|
+
}
|
|
434
541
|
|
|
435
542
|
.e-image-editor {
|
|
436
543
|
background: #292929;
|
|
437
544
|
}
|
|
438
545
|
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
439
546
|
background: #212121;
|
|
440
|
-
border-top: 1px solid #757575;
|
|
441
|
-
border-bottom: 1px solid #757575;
|
|
442
547
|
}
|
|
443
548
|
.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 {
|
|
444
549
|
border-color: #7d7d7d;
|
|
@@ -460,7 +565,7 @@
|
|
|
460
565
|
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
461
566
|
}
|
|
462
567
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
|
|
463
|
-
background:
|
|
568
|
+
background: rgba(255, 255, 255, 0.1);
|
|
464
569
|
box-shadow: none;
|
|
465
570
|
color: #fff;
|
|
466
571
|
}
|
package/styles/material.css
CHANGED
|
@@ -100,6 +100,21 @@
|
|
|
100
100
|
.e-image-editor .e-custom-e::before {
|
|
101
101
|
content: "\e96b";
|
|
102
102
|
}
|
|
103
|
+
.e-image-editor .e-custom-f::before {
|
|
104
|
+
content: "\e9a1";
|
|
105
|
+
}
|
|
106
|
+
.e-image-editor .e-custom-g::before {
|
|
107
|
+
content: "\e9a2";
|
|
108
|
+
}
|
|
109
|
+
.e-image-editor .e-custom-h::before {
|
|
110
|
+
content: "\e9a3";
|
|
111
|
+
}
|
|
112
|
+
.e-image-editor .e-custom-i::before {
|
|
113
|
+
content: "\e9a4";
|
|
114
|
+
}
|
|
115
|
+
.e-image-editor .e-custom-j::before {
|
|
116
|
+
content: "\e9a5";
|
|
117
|
+
}
|
|
103
118
|
.e-image-editor .e-horizontal-flip::before {
|
|
104
119
|
content: "\e95c";
|
|
105
120
|
}
|
|
@@ -161,6 +176,21 @@
|
|
|
161
176
|
.e-dropdown-popup.e-image-popup .e-custom-e::before {
|
|
162
177
|
content: "\e96b";
|
|
163
178
|
}
|
|
179
|
+
.e-dropdown-popup.e-image-popup .e-custom-f::before {
|
|
180
|
+
content: "\e9a1";
|
|
181
|
+
}
|
|
182
|
+
.e-dropdown-popup.e-image-popup .e-custom-g::before {
|
|
183
|
+
content: "\e9a2";
|
|
184
|
+
}
|
|
185
|
+
.e-dropdown-popup.e-image-popup .e-custom-h::before {
|
|
186
|
+
content: "\e9a3";
|
|
187
|
+
}
|
|
188
|
+
.e-dropdown-popup.e-image-popup .e-custom-i::before {
|
|
189
|
+
content: "\e9a4";
|
|
190
|
+
}
|
|
191
|
+
.e-dropdown-popup.e-image-popup .e-custom-j::before {
|
|
192
|
+
content: "\e9a5";
|
|
193
|
+
}
|
|
164
194
|
.e-dropdown-popup.e-image-popup .e-rectangle::before {
|
|
165
195
|
content: "\e670";
|
|
166
196
|
}
|
|
@@ -207,10 +237,42 @@
|
|
|
207
237
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
208
238
|
}
|
|
209
239
|
.e-device.e-image-editor .e-slider-container {
|
|
210
|
-
margin-left: calc(50% -
|
|
240
|
+
margin-left: calc(50% - 70px) !important; /* stylelint-disable-line declaration-no-important */
|
|
211
241
|
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
212
242
|
}
|
|
243
|
+
.e-device.e-image-editor .e-straighten-slider {
|
|
244
|
+
margin-left: calc(50% - 70px) !important; /* stylelint-disable-line declaration-no-important */
|
|
245
|
+
}
|
|
246
|
+
.e-device.e-image-editor .e-ie-straighten-value-span {
|
|
247
|
+
margin-left: 15px !important; /* stylelint-disable-line declaration-no-important */
|
|
248
|
+
}
|
|
249
|
+
.e-device.e-image-editor .e-hscroll .e-scroll-nav.e-scroll-right-nav {
|
|
250
|
+
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
251
|
+
}
|
|
252
|
+
.e-device.e-image-editor .e-hscroll.e-scroll-device {
|
|
253
|
+
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
254
|
+
}
|
|
255
|
+
.e-device.e-image-editor .e-scroll-right-overlay {
|
|
256
|
+
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
257
|
+
}
|
|
258
|
+
.e-device.e-image-editor .e-contextual-toolbar-wrapper {
|
|
259
|
+
border-top: 1px solid #bdbdbd;
|
|
260
|
+
border-bottom: none !important; /* stylelint-disable-line declaration-no-important */
|
|
261
|
+
}
|
|
262
|
+
.e-device.e-image-editor .e-toolbar {
|
|
263
|
+
border-bottom: 1px solid #bdbdbd;
|
|
264
|
+
}
|
|
265
|
+
.e-device.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar {
|
|
266
|
+
border-bottom: none !important; /* stylelint-disable-line declaration-no-important */
|
|
267
|
+
}
|
|
268
|
+
.e-device.e-image-editor .e-bottom-toolbar .e-toolbar, .e-device.e-image-editor .e-bottom-toolbar-area .e-toolbar {
|
|
269
|
+
border-bottom: none;
|
|
270
|
+
}
|
|
213
271
|
|
|
272
|
+
.e-bigger .e-image-editor .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle,
|
|
273
|
+
.e-image-editor.e-bigger .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle {
|
|
274
|
+
top: calc(50% - 5px) !important; /* stylelint-disable-line declaration-no-important */
|
|
275
|
+
}
|
|
214
276
|
.e-bigger .e-image-editor .e-toolbar,
|
|
215
277
|
.e-image-editor.e-bigger .e-toolbar {
|
|
216
278
|
height: 48px !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -284,6 +346,11 @@
|
|
|
284
346
|
border: 1px solid #bdbdbd;
|
|
285
347
|
position: relative;
|
|
286
348
|
display: block;
|
|
349
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
350
|
+
}
|
|
351
|
+
.e-image-editor .no-spin ::-webkit-inner-spin-button, .e-image-editor .no-spin ::-webkit-outer-spin-button {
|
|
352
|
+
-webkit-appearance: none;
|
|
353
|
+
margin: 0;
|
|
287
354
|
}
|
|
288
355
|
.e-image-editor .e-ie-drop-area {
|
|
289
356
|
height: calc(100% - 18px);
|
|
@@ -320,6 +387,7 @@
|
|
|
320
387
|
}
|
|
321
388
|
.e-image-editor .e-toolbar {
|
|
322
389
|
border: none;
|
|
390
|
+
border-bottom: 1px solid #bdbdbd;
|
|
323
391
|
height: 40px !important; /* stylelint-disable-line declaration-no-important */
|
|
324
392
|
min-height: 40px !important; /* stylelint-disable-line declaration-no-important */
|
|
325
393
|
}
|
|
@@ -375,20 +443,19 @@
|
|
|
375
443
|
.e-image-editor .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
|
|
376
444
|
line-height: 1;
|
|
377
445
|
}
|
|
378
|
-
.e-image-editor .e-toolbar-area + .e-canvas-wrapper {
|
|
379
|
-
border-top: 1px solid #bdbdbd;
|
|
380
|
-
}
|
|
381
446
|
.e-image-editor .e-toolbar-area + .e-canvas-wrapper .e-textarea {
|
|
382
447
|
line-height: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
383
448
|
}
|
|
384
|
-
.e-image-editor .e-bottom-toolbar {
|
|
449
|
+
.e-image-editor .e-bottom-toolbar, .e-image-editor .e-bottom-toolbar-area {
|
|
385
450
|
border-top: 1px solid #bdbdbd;
|
|
386
451
|
}
|
|
387
452
|
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
453
|
+
border-bottom: 1px solid #bdbdbd;
|
|
388
454
|
width: 100%;
|
|
389
455
|
z-index: 1;
|
|
390
456
|
}
|
|
391
457
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar {
|
|
458
|
+
border-bottom: none !important; /* stylelint-disable-line declaration-no-important */
|
|
392
459
|
height: 130px !important; /* stylelint-disable-line declaration-no-important */
|
|
393
460
|
}
|
|
394
461
|
.e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-toolbar {
|
|
@@ -419,6 +486,10 @@
|
|
|
419
486
|
margin: 4px;
|
|
420
487
|
text-align: center;
|
|
421
488
|
}
|
|
489
|
+
.e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-dropdown-btn {
|
|
490
|
+
margin: 0 auto;
|
|
491
|
+
width: max-content;
|
|
492
|
+
}
|
|
422
493
|
.e-image-editor .e-contextual-toolbar-wrapper.e-hide {
|
|
423
494
|
display: none;
|
|
424
495
|
}
|
|
@@ -436,14 +507,48 @@
|
|
|
436
507
|
margin-left: calc(50% - 137px);
|
|
437
508
|
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
438
509
|
}
|
|
510
|
+
.e-ie-straighten-value-span,
|
|
511
|
+
.e-ie-straighten-span {
|
|
512
|
+
font-size: 14px;
|
|
513
|
+
padding-left: 10px !important; /* stylelint-disable-line declaration-no-important */
|
|
514
|
+
padding-right: 10px !important; /* stylelint-disable-line declaration-no-important */
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
.e-straighten .e-control-wrapper.e-slider-container.e-horizontal {
|
|
518
|
+
height: auto;
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
.e-straighten .e-control-wrapper.e-slider-container.e-horizontal .e-slider {
|
|
522
|
+
top: calc(50% - 20px) !important; /* stylelint-disable-line declaration-no-important */
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
.e-straighten .e-control-wrapper.e-slider-container.e-horizontal .e-slider-track,
|
|
526
|
+
.e-straighten .e-control-wrapper.e-slider-container.e-horizontal .e-range {
|
|
527
|
+
top: calc(50% - 2px) !important; /* stylelint-disable-line declaration-no-important */
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
.e-straighten .e-control-wrapper.e-slider-container .e-slider .e-handle {
|
|
531
|
+
top: calc(50% - 6px) !important; /* stylelint-disable-line declaration-no-important */
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
.e-bigger .e-straighten .e-control-wrapper.e-slider-container .e-slider .e-handle {
|
|
535
|
+
top: calc(50% - 7px) !important; /* stylelint-disable-line declaration-no-important */
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
.e-dropdown-popup.e-ie-crop-ddb-popup ul {
|
|
539
|
+
height: 250px;
|
|
540
|
+
overflow-y: scroll;
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
.e-dropdown-popup.e-ie-ddb-popup {
|
|
544
|
+
background: none !important; /* stylelint-disable-line declaration-no-important */
|
|
545
|
+
}
|
|
439
546
|
|
|
440
547
|
.e-image-editor {
|
|
441
548
|
background: #eee;
|
|
442
549
|
}
|
|
443
550
|
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
444
551
|
background: #fafafa;
|
|
445
|
-
border-top: 1px solid #bdbdbd;
|
|
446
|
-
border-bottom: 1px solid #bdbdbd;
|
|
447
552
|
}
|
|
448
553
|
.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 {
|
|
449
554
|
border-color: rgba(184, 184, 184, 0.9584);
|
|
@@ -465,7 +570,7 @@
|
|
|
465
570
|
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
466
571
|
}
|
|
467
572
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
|
|
468
|
-
background: rgba(
|
|
573
|
+
background: rgba(0, 0, 0, 0.12);
|
|
469
574
|
box-shadow: none;
|
|
470
575
|
color: rgba(0, 0, 0, 0.87);
|
|
471
576
|
}
|