@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.
Files changed (99) hide show
  1. package/CHANGELOG.md +6 -54
  2. package/dist/ej2-image-editor.umd.min.js +2 -2
  3. package/dist/ej2-image-editor.umd.min.js.map +1 -1
  4. package/dist/es6/ej2-image-editor.es2015.js +7227 -4367
  5. package/dist/es6/ej2-image-editor.es2015.js.map +1 -1
  6. package/dist/es6/ej2-image-editor.es5.js +7295 -4422
  7. package/dist/es6/ej2-image-editor.es5.js.map +1 -1
  8. package/dist/global/ej2-image-editor.min.js +2 -2
  9. package/dist/global/ej2-image-editor.min.js.map +1 -1
  10. package/dist/global/index.d.ts +1 -1
  11. package/package.json +12 -12
  12. package/src/image-editor/action/crop.d.ts +6 -0
  13. package/src/image-editor/action/crop.js +347 -188
  14. package/src/image-editor/action/draw.d.ts +35 -2
  15. package/src/image-editor/action/draw.js +1691 -890
  16. package/src/image-editor/action/export.js +90 -29
  17. package/src/image-editor/action/filter.d.ts +3 -1
  18. package/src/image-editor/action/filter.js +74 -94
  19. package/src/image-editor/action/freehand-draw.d.ts +4 -0
  20. package/src/image-editor/action/freehand-draw.js +248 -147
  21. package/src/image-editor/action/selection.d.ts +6 -1
  22. package/src/image-editor/action/selection.js +1133 -1091
  23. package/src/image-editor/action/shape.d.ts +7 -0
  24. package/src/image-editor/action/shape.js +923 -550
  25. package/src/image-editor/action/transform.d.ts +2 -0
  26. package/src/image-editor/action/transform.js +518 -346
  27. package/src/image-editor/action/undo-redo.d.ts +2 -0
  28. package/src/image-editor/action/undo-redo.js +137 -36
  29. package/src/image-editor/base/enum.d.ts +2 -1
  30. package/src/image-editor/base/enum.js +1 -0
  31. package/src/image-editor/base/image-editor-model.d.ts +37 -2
  32. package/src/image-editor/base/image-editor.d.ts +124 -3
  33. package/src/image-editor/base/image-editor.js +675 -172
  34. package/src/image-editor/base/interface.d.ts +69 -15
  35. package/src/image-editor/renderer/toolbar.d.ts +10 -0
  36. package/src/image-editor/renderer/toolbar.js +1415 -835
  37. package/styles/bootstrap-dark.css +113 -8
  38. package/styles/bootstrap.css +112 -7
  39. package/styles/bootstrap4.css +113 -8
  40. package/styles/bootstrap5-dark.css +113 -8
  41. package/styles/bootstrap5.css +113 -8
  42. package/styles/fabric-dark.css +114 -9
  43. package/styles/fabric.css +113 -8
  44. package/styles/fluent-dark.css +118 -9
  45. package/styles/fluent.css +118 -9
  46. package/styles/highcontrast-light.css +112 -7
  47. package/styles/highcontrast.css +116 -7
  48. package/styles/image-editor/_bootstrap-dark-definition.scss +3 -0
  49. package/styles/image-editor/_bootstrap-definition.scss +3 -0
  50. package/styles/image-editor/_bootstrap4-definition.scss +3 -0
  51. package/styles/image-editor/_bootstrap5-definition.scss +3 -0
  52. package/styles/image-editor/_fabric-dark-definition.scss +3 -0
  53. package/styles/image-editor/_fabric-definition.scss +3 -0
  54. package/styles/image-editor/_fluent-definition.scss +3 -0
  55. package/styles/image-editor/_fusionnew-definition.scss +3 -0
  56. package/styles/image-editor/_highcontrast-definition.scss +3 -0
  57. package/styles/image-editor/_highcontrast-light-definition.scss +3 -0
  58. package/styles/image-editor/_layout.scss +138 -4
  59. package/styles/image-editor/_material-dark-definition.scss +3 -0
  60. package/styles/image-editor/_material-definition.scss +3 -0
  61. package/styles/image-editor/_material3-definition.scss +3 -0
  62. package/styles/image-editor/_tailwind-definition.scss +3 -0
  63. package/styles/image-editor/_theme.scss +2 -4
  64. package/styles/image-editor/bootstrap-dark.css +113 -8
  65. package/styles/image-editor/bootstrap.css +112 -7
  66. package/styles/image-editor/bootstrap4.css +113 -8
  67. package/styles/image-editor/bootstrap5-dark.css +113 -8
  68. package/styles/image-editor/bootstrap5.css +113 -8
  69. package/styles/image-editor/fabric-dark.css +114 -9
  70. package/styles/image-editor/fabric.css +113 -8
  71. package/styles/image-editor/fluent-dark.css +118 -9
  72. package/styles/image-editor/fluent.css +118 -9
  73. package/styles/image-editor/highcontrast-light.css +112 -7
  74. package/styles/image-editor/highcontrast.css +116 -7
  75. package/styles/image-editor/icons/_bootstrap-dark.scss +60 -0
  76. package/styles/image-editor/icons/_bootstrap.scss +60 -0
  77. package/styles/image-editor/icons/_bootstrap4.scss +60 -0
  78. package/styles/image-editor/icons/_bootstrap5.scss +60 -0
  79. package/styles/image-editor/icons/_fabric-dark.scss +60 -0
  80. package/styles/image-editor/icons/_fabric.scss +60 -0
  81. package/styles/image-editor/icons/_fluent.scss +66 -0
  82. package/styles/image-editor/icons/_highcontrast-light.scss +60 -0
  83. package/styles/image-editor/icons/_highcontrast.scss +60 -0
  84. package/styles/image-editor/icons/_material-dark.scss +60 -0
  85. package/styles/image-editor/icons/_material.scss +60 -0
  86. package/styles/image-editor/icons/_material3.scss +60 -0
  87. package/styles/image-editor/icons/_tailwind.scss +60 -0
  88. package/styles/image-editor/material-dark.css +113 -8
  89. package/styles/image-editor/material.css +113 -8
  90. package/styles/image-editor/material3-dark.css +126 -9
  91. package/styles/image-editor/material3.css +126 -9
  92. package/styles/image-editor/tailwind-dark.css +114 -9
  93. package/styles/image-editor/tailwind.css +114 -9
  94. package/styles/material-dark.css +113 -8
  95. package/styles/material.css +113 -8
  96. package/styles/material3-dark.css +126 -9
  97. package/styles/material3.css +126 -9
  98. package/styles/tailwind-dark.css +114 -9
  99. package/styles/tailwind.css +114 -9
@@ -150,6 +150,21 @@
150
150
  .e-image-editor .e-custom-e::before {
151
151
  content: "\e8af";
152
152
  }
153
+ .e-image-editor .e-custom-f::before {
154
+ content: "\e8dd";
155
+ }
156
+ .e-image-editor .e-custom-g::before {
157
+ content: "\e8de";
158
+ }
159
+ .e-image-editor .e-custom-h::before {
160
+ content: "\e8df";
161
+ }
162
+ .e-image-editor .e-custom-i::before {
163
+ content: "\e8e0";
164
+ }
165
+ .e-image-editor .e-custom-j::before {
166
+ content: "\e8e1";
167
+ }
153
168
  .e-image-editor .e-horizontal-flip::before {
154
169
  content: "\e8a3";
155
170
  }
@@ -211,6 +226,21 @@
211
226
  .e-dropdown-popup.e-image-popup .e-custom-e::before {
212
227
  content: "\e8af";
213
228
  }
229
+ .e-dropdown-popup.e-image-popup .e-custom-f::before {
230
+ content: "\e8dd";
231
+ }
232
+ .e-dropdown-popup.e-image-popup .e-custom-g::before {
233
+ content: "\e8de";
234
+ }
235
+ .e-dropdown-popup.e-image-popup .e-custom-h::before {
236
+ content: "\e8df";
237
+ }
238
+ .e-dropdown-popup.e-image-popup .e-custom-i::before {
239
+ content: "\e8e0";
240
+ }
241
+ .e-dropdown-popup.e-image-popup .e-custom-j::before {
242
+ content: "\e8e1";
243
+ }
214
244
  .e-dropdown-popup.e-image-popup .e-rectangle::before {
215
245
  content: "\e723";
216
246
  }
@@ -260,10 +290,42 @@
260
290
  margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
261
291
  }
262
292
  .e-device.e-image-editor .e-slider-container {
263
- margin-left: calc(50% - 50px) !important; /* stylelint-disable-line declaration-no-important */
293
+ margin-left: calc(50% - 70px) !important; /* stylelint-disable-line declaration-no-important */
264
294
  height: 54px !important; /* stylelint-disable-line declaration-no-important */
265
295
  }
296
+ .e-device.e-image-editor .e-straighten-slider {
297
+ margin-left: calc(50% - 70px) !important; /* stylelint-disable-line declaration-no-important */
298
+ }
299
+ .e-device.e-image-editor .e-ie-straighten-value-span {
300
+ margin-left: 15px !important; /* stylelint-disable-line declaration-no-important */
301
+ }
302
+ .e-device.e-image-editor .e-hscroll .e-scroll-nav.e-scroll-right-nav {
303
+ display: none !important; /* stylelint-disable-line declaration-no-important */
304
+ }
305
+ .e-device.e-image-editor .e-hscroll.e-scroll-device {
306
+ padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
307
+ }
308
+ .e-device.e-image-editor .e-scroll-right-overlay {
309
+ display: none !important; /* stylelint-disable-line declaration-no-important */
310
+ }
311
+ .e-device.e-image-editor .e-contextual-toolbar-wrapper {
312
+ border-top: 1px solid rgba(var(--color-sf-outline-variant));
313
+ border-bottom: none !important; /* stylelint-disable-line declaration-no-important */
314
+ }
315
+ .e-device.e-image-editor .e-toolbar {
316
+ border-bottom: 1px solid rgba(var(--color-sf-outline-variant));
317
+ }
318
+ .e-device.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar {
319
+ border-bottom: none !important; /* stylelint-disable-line declaration-no-important */
320
+ }
321
+ .e-device.e-image-editor .e-bottom-toolbar .e-toolbar, .e-device.e-image-editor .e-bottom-toolbar-area .e-toolbar {
322
+ border-bottom: none;
323
+ }
266
324
 
325
+ .e-bigger .e-image-editor .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle,
326
+ .e-image-editor.e-bigger .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle {
327
+ top: calc(50% - 8px) !important; /* stylelint-disable-line declaration-no-important */
328
+ }
267
329
  .e-bigger .e-image-editor .e-toolbar,
268
330
  .e-image-editor.e-bigger .e-toolbar {
269
331
  height: 56px !important; /* stylelint-disable-line declaration-no-important */
@@ -336,6 +398,11 @@
336
398
  border: 1px solid rgba(var(--color-sf-outline-variant));
337
399
  position: relative;
338
400
  display: block;
401
+ /* stylelint-disable property-no-vendor-prefix */
402
+ }
403
+ .e-image-editor .no-spin ::-webkit-inner-spin-button, .e-image-editor .no-spin ::-webkit-outer-spin-button {
404
+ -webkit-appearance: none;
405
+ margin: 0;
339
406
  }
340
407
  .e-image-editor .e-quick-access-toolbar-area .e-toolbar {
341
408
  border-radius: 4px;
@@ -375,6 +442,7 @@
375
442
  }
376
443
  .e-image-editor .e-toolbar {
377
444
  border: none;
445
+ border-bottom: 1px solid rgba(var(--color-sf-outline-variant));
378
446
  }
379
447
  .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-height {
380
448
  margin-left: 20px;
@@ -428,20 +496,19 @@
428
496
  .e-image-editor .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
429
497
  line-height: 1;
430
498
  }
431
- .e-image-editor .e-toolbar-area + .e-canvas-wrapper {
432
- border-top: 1px solid rgba(var(--color-sf-outline-variant));
433
- }
434
499
  .e-image-editor .e-toolbar-area + .e-canvas-wrapper .e-textarea {
435
500
  line-height: initial !important; /* stylelint-disable-line declaration-no-important */
436
501
  }
437
- .e-image-editor .e-bottom-toolbar {
502
+ .e-image-editor .e-bottom-toolbar, .e-image-editor .e-bottom-toolbar-area {
438
503
  border-top: 1px solid rgba(var(--color-sf-outline-variant));
439
504
  }
440
505
  .e-image-editor .e-contextual-toolbar-wrapper {
506
+ border-bottom: 1px solid rgba(var(--color-sf-outline-variant));
441
507
  width: 100%;
442
508
  z-index: 1;
443
509
  }
444
510
  .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar {
511
+ border-bottom: none !important; /* stylelint-disable-line declaration-no-important */
445
512
  height: 140px !important; /* stylelint-disable-line declaration-no-important */
446
513
  }
447
514
  .e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-toolbar {
@@ -472,6 +539,10 @@
472
539
  margin: 4px;
473
540
  text-align: center;
474
541
  }
542
+ .e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-dropdown-btn {
543
+ margin: 0 auto;
544
+ width: max-content;
545
+ }
475
546
  .e-image-editor .e-contextual-toolbar-wrapper.e-hide {
476
547
  display: none;
477
548
  }
@@ -489,14 +560,60 @@
489
560
  margin-left: calc(50% - 137px);
490
561
  height: 54px !important; /* stylelint-disable-line declaration-no-important */
491
562
  }
563
+ .e-image-editor .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle {
564
+ height: 16px !important; /* stylelint-disable-line declaration-no-important */
565
+ top: calc(50% - 10px) !important; /* stylelint-disable-line declaration-no-important */
566
+ width: 16px !important; /* stylelint-disable-line declaration-no-important */
567
+ }
568
+
569
+ .e-ie-straighten-value-span,
570
+ .e-ie-straighten-span {
571
+ font-size: 14px;
572
+ padding-left: 10px !important; /* stylelint-disable-line declaration-no-important */
573
+ padding-right: 10px !important; /* stylelint-disable-line declaration-no-important */
574
+ }
575
+
576
+ .e-straighten .e-control-wrapper.e-slider-container.e-horizontal {
577
+ height: auto;
578
+ margin-left: 8px;
579
+ padding-right: 2px;
580
+ }
581
+
582
+ .e-straighten .e-control-wrapper.e-slider-container.e-horizontal .e-slider {
583
+ top: calc(50% - 20px) !important; /* stylelint-disable-line declaration-no-important */
584
+ }
585
+
586
+ .e-straighten .e-control-wrapper.e-slider-container.e-horizontal .e-slider-track,
587
+ .e-straighten .e-control-wrapper.e-slider-container.e-horizontal .e-range {
588
+ top: calc(50% - 2px) !important; /* stylelint-disable-line declaration-no-important */
589
+ }
590
+
591
+ .e-straighten .e-control-wrapper.e-slider-container .e-slider .e-handle {
592
+ top: calc(50% - 8px) !important; /* stylelint-disable-line declaration-no-important */
593
+ height: 16px !important; /* stylelint-disable-line declaration-no-important */
594
+ width: 16px !important; /* stylelint-disable-line declaration-no-important */
595
+ }
596
+
597
+ .e-bigger .e-straighten .e-control-wrapper.e-slider-container .e-slider .e-handle {
598
+ height: 22px !important; /* stylelint-disable-line declaration-no-important */
599
+ width: 22px !important; /* stylelint-disable-line declaration-no-important */
600
+ top: calc(50% - 10px) !important; /* stylelint-disable-line declaration-no-important */
601
+ }
602
+
603
+ .e-dropdown-popup.e-ie-crop-ddb-popup ul {
604
+ height: 250px;
605
+ overflow-y: scroll;
606
+ }
607
+
608
+ .e-dropdown-popup.e-ie-ddb-popup {
609
+ background: none !important; /* stylelint-disable-line declaration-no-important */
610
+ }
492
611
 
493
612
  .e-image-editor {
494
613
  background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.14), rgba(var(--color-sf-primary), 0.14)), rgba(var(--color-sf-surface));
495
614
  }
496
615
  .e-image-editor .e-contextual-toolbar-wrapper {
497
616
  background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
498
- border-top: 1px solid rgba(var(--color-sf-outline-variant));
499
- border-bottom: 1px solid rgba(var(--color-sf-outline-variant));
500
617
  }
501
618
  .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 {
502
619
  border-color: linear-gradient(0deg, rgba(var(--color-sf-on-surface), 0.12), rgba(var(--color-sf-on-surface), 0.12)), rgba(var(--color-sf-surface));
@@ -519,9 +636,9 @@
519
636
  display: none !important; /* stylelint-disable-line declaration-no-important */
520
637
  }
521
638
  .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
522
- background: linear-gradient(0deg, rgba(var(--color-sf-on-surface), 0.08), rgba(var(--color-sf-on-surface), 0.08)), rgba(var(--color-sf-surface));
639
+ background: rgba(var(--color-sf-on-surface), 0.05);
523
640
  box-shadow: none;
524
- color: rgba(var(--color-sf-on-surface));
641
+ color: rgba(var(--color-sf-on-surface-variant));
525
642
  }
526
643
  .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
527
644
  background: linear-gradient(0deg, rgba(var(--color-sf-on-surface), 0.08), rgba(var(--color-sf-on-surface), 0.08)), rgba(var(--color-sf-surface));
@@ -206,6 +206,21 @@
206
206
  .e-image-editor .e-custom-e::before {
207
207
  content: "\e8af";
208
208
  }
209
+ .e-image-editor .e-custom-f::before {
210
+ content: "\e8dd";
211
+ }
212
+ .e-image-editor .e-custom-g::before {
213
+ content: "\e8de";
214
+ }
215
+ .e-image-editor .e-custom-h::before {
216
+ content: "\e8df";
217
+ }
218
+ .e-image-editor .e-custom-i::before {
219
+ content: "\e8e0";
220
+ }
221
+ .e-image-editor .e-custom-j::before {
222
+ content: "\e8e1";
223
+ }
209
224
  .e-image-editor .e-horizontal-flip::before {
210
225
  content: "\e8a3";
211
226
  }
@@ -267,6 +282,21 @@
267
282
  .e-dropdown-popup.e-image-popup .e-custom-e::before {
268
283
  content: "\e8af";
269
284
  }
285
+ .e-dropdown-popup.e-image-popup .e-custom-f::before {
286
+ content: "\e8dd";
287
+ }
288
+ .e-dropdown-popup.e-image-popup .e-custom-g::before {
289
+ content: "\e8de";
290
+ }
291
+ .e-dropdown-popup.e-image-popup .e-custom-h::before {
292
+ content: "\e8df";
293
+ }
294
+ .e-dropdown-popup.e-image-popup .e-custom-i::before {
295
+ content: "\e8e0";
296
+ }
297
+ .e-dropdown-popup.e-image-popup .e-custom-j::before {
298
+ content: "\e8e1";
299
+ }
270
300
  .e-dropdown-popup.e-image-popup .e-rectangle::before {
271
301
  content: "\e723";
272
302
  }
@@ -316,10 +346,42 @@
316
346
  margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
317
347
  }
318
348
  .e-device.e-image-editor .e-slider-container {
319
- margin-left: calc(50% - 50px) !important; /* stylelint-disable-line declaration-no-important */
349
+ margin-left: calc(50% - 70px) !important; /* stylelint-disable-line declaration-no-important */
320
350
  height: 54px !important; /* stylelint-disable-line declaration-no-important */
321
351
  }
352
+ .e-device.e-image-editor .e-straighten-slider {
353
+ margin-left: calc(50% - 70px) !important; /* stylelint-disable-line declaration-no-important */
354
+ }
355
+ .e-device.e-image-editor .e-ie-straighten-value-span {
356
+ margin-left: 15px !important; /* stylelint-disable-line declaration-no-important */
357
+ }
358
+ .e-device.e-image-editor .e-hscroll .e-scroll-nav.e-scroll-right-nav {
359
+ display: none !important; /* stylelint-disable-line declaration-no-important */
360
+ }
361
+ .e-device.e-image-editor .e-hscroll.e-scroll-device {
362
+ padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
363
+ }
364
+ .e-device.e-image-editor .e-scroll-right-overlay {
365
+ display: none !important; /* stylelint-disable-line declaration-no-important */
366
+ }
367
+ .e-device.e-image-editor .e-contextual-toolbar-wrapper {
368
+ border-top: 1px solid rgba(var(--color-sf-outline-variant));
369
+ border-bottom: none !important; /* stylelint-disable-line declaration-no-important */
370
+ }
371
+ .e-device.e-image-editor .e-toolbar {
372
+ border-bottom: 1px solid rgba(var(--color-sf-outline-variant));
373
+ }
374
+ .e-device.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar {
375
+ border-bottom: none !important; /* stylelint-disable-line declaration-no-important */
376
+ }
377
+ .e-device.e-image-editor .e-bottom-toolbar .e-toolbar, .e-device.e-image-editor .e-bottom-toolbar-area .e-toolbar {
378
+ border-bottom: none;
379
+ }
322
380
 
381
+ .e-bigger .e-image-editor .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle,
382
+ .e-image-editor.e-bigger .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle {
383
+ top: calc(50% - 8px) !important; /* stylelint-disable-line declaration-no-important */
384
+ }
323
385
  .e-bigger .e-image-editor .e-toolbar,
324
386
  .e-image-editor.e-bigger .e-toolbar {
325
387
  height: 56px !important; /* stylelint-disable-line declaration-no-important */
@@ -392,6 +454,11 @@
392
454
  border: 1px solid rgba(var(--color-sf-outline-variant));
393
455
  position: relative;
394
456
  display: block;
457
+ /* stylelint-disable property-no-vendor-prefix */
458
+ }
459
+ .e-image-editor .no-spin ::-webkit-inner-spin-button, .e-image-editor .no-spin ::-webkit-outer-spin-button {
460
+ -webkit-appearance: none;
461
+ margin: 0;
395
462
  }
396
463
  .e-image-editor .e-quick-access-toolbar-area .e-toolbar {
397
464
  border-radius: 4px;
@@ -431,6 +498,7 @@
431
498
  }
432
499
  .e-image-editor .e-toolbar {
433
500
  border: none;
501
+ border-bottom: 1px solid rgba(var(--color-sf-outline-variant));
434
502
  }
435
503
  .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-height {
436
504
  margin-left: 20px;
@@ -484,20 +552,19 @@
484
552
  .e-image-editor .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
485
553
  line-height: 1;
486
554
  }
487
- .e-image-editor .e-toolbar-area + .e-canvas-wrapper {
488
- border-top: 1px solid rgba(var(--color-sf-outline-variant));
489
- }
490
555
  .e-image-editor .e-toolbar-area + .e-canvas-wrapper .e-textarea {
491
556
  line-height: initial !important; /* stylelint-disable-line declaration-no-important */
492
557
  }
493
- .e-image-editor .e-bottom-toolbar {
558
+ .e-image-editor .e-bottom-toolbar, .e-image-editor .e-bottom-toolbar-area {
494
559
  border-top: 1px solid rgba(var(--color-sf-outline-variant));
495
560
  }
496
561
  .e-image-editor .e-contextual-toolbar-wrapper {
562
+ border-bottom: 1px solid rgba(var(--color-sf-outline-variant));
497
563
  width: 100%;
498
564
  z-index: 1;
499
565
  }
500
566
  .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar {
567
+ border-bottom: none !important; /* stylelint-disable-line declaration-no-important */
501
568
  height: 140px !important; /* stylelint-disable-line declaration-no-important */
502
569
  }
503
570
  .e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-toolbar {
@@ -528,6 +595,10 @@
528
595
  margin: 4px;
529
596
  text-align: center;
530
597
  }
598
+ .e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-dropdown-btn {
599
+ margin: 0 auto;
600
+ width: max-content;
601
+ }
531
602
  .e-image-editor .e-contextual-toolbar-wrapper.e-hide {
532
603
  display: none;
533
604
  }
@@ -545,14 +616,60 @@
545
616
  margin-left: calc(50% - 137px);
546
617
  height: 54px !important; /* stylelint-disable-line declaration-no-important */
547
618
  }
619
+ .e-image-editor .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle {
620
+ height: 16px !important; /* stylelint-disable-line declaration-no-important */
621
+ top: calc(50% - 10px) !important; /* stylelint-disable-line declaration-no-important */
622
+ width: 16px !important; /* stylelint-disable-line declaration-no-important */
623
+ }
624
+
625
+ .e-ie-straighten-value-span,
626
+ .e-ie-straighten-span {
627
+ font-size: 14px;
628
+ padding-left: 10px !important; /* stylelint-disable-line declaration-no-important */
629
+ padding-right: 10px !important; /* stylelint-disable-line declaration-no-important */
630
+ }
631
+
632
+ .e-straighten .e-control-wrapper.e-slider-container.e-horizontal {
633
+ height: auto;
634
+ margin-left: 8px;
635
+ padding-right: 2px;
636
+ }
637
+
638
+ .e-straighten .e-control-wrapper.e-slider-container.e-horizontal .e-slider {
639
+ top: calc(50% - 20px) !important; /* stylelint-disable-line declaration-no-important */
640
+ }
641
+
642
+ .e-straighten .e-control-wrapper.e-slider-container.e-horizontal .e-slider-track,
643
+ .e-straighten .e-control-wrapper.e-slider-container.e-horizontal .e-range {
644
+ top: calc(50% - 2px) !important; /* stylelint-disable-line declaration-no-important */
645
+ }
646
+
647
+ .e-straighten .e-control-wrapper.e-slider-container .e-slider .e-handle {
648
+ top: calc(50% - 8px) !important; /* stylelint-disable-line declaration-no-important */
649
+ height: 16px !important; /* stylelint-disable-line declaration-no-important */
650
+ width: 16px !important; /* stylelint-disable-line declaration-no-important */
651
+ }
652
+
653
+ .e-bigger .e-straighten .e-control-wrapper.e-slider-container .e-slider .e-handle {
654
+ height: 22px !important; /* stylelint-disable-line declaration-no-important */
655
+ width: 22px !important; /* stylelint-disable-line declaration-no-important */
656
+ top: calc(50% - 10px) !important; /* stylelint-disable-line declaration-no-important */
657
+ }
658
+
659
+ .e-dropdown-popup.e-ie-crop-ddb-popup ul {
660
+ height: 250px;
661
+ overflow-y: scroll;
662
+ }
663
+
664
+ .e-dropdown-popup.e-ie-ddb-popup {
665
+ background: none !important; /* stylelint-disable-line declaration-no-important */
666
+ }
548
667
 
549
668
  .e-image-editor {
550
669
  background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.14), rgba(var(--color-sf-primary), 0.14)), rgba(var(--color-sf-surface));
551
670
  }
552
671
  .e-image-editor .e-contextual-toolbar-wrapper {
553
672
  background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
554
- border-top: 1px solid rgba(var(--color-sf-outline-variant));
555
- border-bottom: 1px solid rgba(var(--color-sf-outline-variant));
556
673
  }
557
674
  .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 {
558
675
  border-color: linear-gradient(0deg, rgba(var(--color-sf-on-surface), 0.12), rgba(var(--color-sf-on-surface), 0.12)), rgba(var(--color-sf-surface));
@@ -575,9 +692,9 @@
575
692
  display: none !important; /* stylelint-disable-line declaration-no-important */
576
693
  }
577
694
  .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
578
- background: linear-gradient(0deg, rgba(var(--color-sf-on-surface), 0.08), rgba(var(--color-sf-on-surface), 0.08)), rgba(var(--color-sf-surface));
695
+ background: rgba(var(--color-sf-on-surface), 0.05);
579
696
  box-shadow: none;
580
- color: rgba(var(--color-sf-on-surface));
697
+ color: rgba(var(--color-sf-on-surface-variant));
581
698
  }
582
699
  .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
583
700
  background: linear-gradient(0deg, rgba(var(--color-sf-on-surface), 0.08), rgba(var(--color-sf-on-surface), 0.08)), rgba(var(--color-sf-surface));
@@ -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% - 50px) !important; /* stylelint-disable-line declaration-no-important */
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 #4b5563;
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 #4b5563;
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 #4b5563;
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 #4b5563;
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 #4b5563;
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 #4b5563;
378
443
  }
379
444
  .e-image-editor .e-contextual-toolbar-wrapper {
445
+ border-bottom: 1px solid #4b5563;
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: #4b5563;
434
541
  }
435
542
  .e-image-editor .e-contextual-toolbar-wrapper {
436
543
  background: #374151;
437
- border-top: 1px solid #4b5563;
438
- border-bottom: 1px solid #4b5563;
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: #4b5563;
@@ -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: #374151;
565
+ background: #4b5563;
461
566
  box-shadow: none;
462
- color: #fff;
567
+ color: #9ca3af;
463
568
  }
464
569
  .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
465
570
  background: #374151;