@syncfusion/ej2-image-editor 24.2.5 → 25.1.35

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (78) hide show
  1. package/CHANGELOG.md +3 -43
  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 +944 -1873
  5. package/dist/es6/ej2-image-editor.es2015.js.map +1 -1
  6. package/dist/es6/ej2-image-editor.es5.js +976 -1922
  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.js +9 -45
  13. package/src/image-editor/action/draw.js +52 -207
  14. package/src/image-editor/action/export.js +6 -35
  15. package/src/image-editor/action/freehand-draw.js +26 -80
  16. package/src/image-editor/action/selection.js +122 -326
  17. package/src/image-editor/action/shape.js +130 -242
  18. package/src/image-editor/action/transform.d.ts +0 -1
  19. package/src/image-editor/action/transform.js +77 -289
  20. package/src/image-editor/action/undo-redo.js +32 -101
  21. package/src/image-editor/base/image-editor-model.d.ts +1 -1
  22. package/src/image-editor/base/image-editor.d.ts +51 -42
  23. package/src/image-editor/base/image-editor.js +304 -422
  24. package/src/image-editor/renderer/toolbar.d.ts +1 -0
  25. package/src/image-editor/renderer/toolbar.js +228 -185
  26. package/styles/bootstrap-dark.css +0 -12
  27. package/styles/bootstrap.css +0 -12
  28. package/styles/bootstrap4.css +0 -12
  29. package/styles/bootstrap5-dark.css +0 -12
  30. package/styles/bootstrap5.css +0 -12
  31. package/styles/fabric-dark.css +0 -12
  32. package/styles/fabric.css +0 -12
  33. package/styles/fluent-dark.css +0 -12
  34. package/styles/fluent.css +0 -12
  35. package/styles/highcontrast-light.css +0 -12
  36. package/styles/highcontrast.css +0 -12
  37. package/styles/image-editor/_bds-definition.scss +21 -0
  38. package/styles/image-editor/_bootstrap-dark-definition.scss +0 -1
  39. package/styles/image-editor/_bootstrap-definition.scss +0 -1
  40. package/styles/image-editor/_bootstrap4-definition.scss +0 -1
  41. package/styles/image-editor/_bootstrap5-definition.scss +0 -1
  42. package/styles/image-editor/_fabric-dark-definition.scss +0 -1
  43. package/styles/image-editor/_fabric-definition.scss +0 -1
  44. package/styles/image-editor/_fluent-definition.scss +0 -1
  45. package/styles/image-editor/_fusionnew-definition.scss +0 -1
  46. package/styles/image-editor/_highcontrast-definition.scss +0 -1
  47. package/styles/image-editor/_highcontrast-light-definition.scss +0 -1
  48. package/styles/image-editor/_layout.scss +2 -32
  49. package/styles/image-editor/_material-dark-definition.scss +0 -1
  50. package/styles/image-editor/_material-definition.scss +0 -1
  51. package/styles/image-editor/_material3-definition.scss +2 -3
  52. package/styles/image-editor/_tailwind-definition.scss +0 -1
  53. package/styles/image-editor/bootstrap-dark.css +0 -12
  54. package/styles/image-editor/bootstrap.css +0 -12
  55. package/styles/image-editor/bootstrap4.css +0 -12
  56. package/styles/image-editor/bootstrap5-dark.css +0 -12
  57. package/styles/image-editor/bootstrap5.css +0 -12
  58. package/styles/image-editor/fabric-dark.css +0 -12
  59. package/styles/image-editor/fabric.css +0 -12
  60. package/styles/image-editor/fluent-dark.css +0 -12
  61. package/styles/image-editor/fluent.css +0 -12
  62. package/styles/image-editor/highcontrast-light.css +0 -12
  63. package/styles/image-editor/highcontrast.css +0 -12
  64. package/styles/image-editor/icons/_bds.scss +411 -0
  65. package/styles/image-editor/material-dark.css +0 -12
  66. package/styles/image-editor/material.css +0 -12
  67. package/styles/image-editor/material3-dark.css +4 -25
  68. package/styles/image-editor/material3.css +4 -25
  69. package/styles/image-editor/tailwind-dark.css +2 -15
  70. package/styles/image-editor/tailwind.css +2 -15
  71. package/styles/material-dark.css +0 -12
  72. package/styles/material.css +0 -12
  73. package/styles/material3-dark.css +4 -25
  74. package/styles/material3.css +4 -25
  75. package/styles/tailwind-dark.css +2 -15
  76. package/styles/tailwind.css +2 -15
  77. package/.github/PULL_REQUEST_TEMPLATE/Bug.md +0 -63
  78. package/.github/PULL_REQUEST_TEMPLATE/feature.md +0 -39
@@ -0,0 +1,411 @@
1
+ @include export-module('image-editor-bds-icons') {
2
+ .e-image-editor {
3
+ & .e-upload-icon {
4
+ &::before {
5
+ content: '\e760';
6
+ }
7
+ }
8
+
9
+ & .e-zoom-in {
10
+ &::before {
11
+ content: '\e768';
12
+ }
13
+ }
14
+
15
+ & .e-zoom-out {
16
+ &::before {
17
+ content: '\e81b';
18
+ }
19
+ }
20
+
21
+ & .e-pan {
22
+ &::before {
23
+ content: '\e7b1';
24
+ }
25
+ }
26
+
27
+ & .e-select {
28
+ &::before {
29
+ content: '\e896';
30
+ }
31
+ }
32
+
33
+ & .e-transform {
34
+ &::before {
35
+ content: '\e8b0';
36
+ }
37
+ }
38
+
39
+ & .e-annotation {
40
+ &::before {
41
+ content: '\e730';
42
+ }
43
+ }
44
+
45
+ & .e-shapes {
46
+ &::before {
47
+ content: '\e728';
48
+ }
49
+ }
50
+
51
+ & .e-mouse {
52
+ &::before {
53
+ content: '\e74e';
54
+ }
55
+ }
56
+
57
+ & .e-btn-reset {
58
+ &::before {
59
+ content: '\e89b';
60
+ }
61
+ }
62
+
63
+ & .e-btn-save {
64
+ &::before {
65
+ content: '\e7c8';
66
+ }
67
+ }
68
+
69
+ & .e-close {
70
+ &::before {
71
+ content: '\e7e7';
72
+ }
73
+ }
74
+
75
+ & .e-check {
76
+ &::before {
77
+ content: '\e8b1';
78
+ }
79
+ }
80
+
81
+ & .e-text-font-color.e-template {
82
+ & .e-caret::before {
83
+ content: '\e76f';
84
+ }
85
+ }
86
+
87
+ & .e-stroke.e-template,
88
+ & .e-frame-stroke.e-template,
89
+ & .e-pen-stroke-color.e-template {
90
+ & .e-caret::before {
91
+ content: '\e739';
92
+ }
93
+ }
94
+
95
+ & .e-fill.e-template {
96
+ & .e-caret {
97
+ &::before {
98
+ content: '\e783';
99
+ }
100
+ }
101
+ }
102
+
103
+ & .e-custom {
104
+ &::before {
105
+ content: '\e8a9';
106
+ }
107
+ }
108
+
109
+ & .e-circle {
110
+ &::before {
111
+ content: '\e7ca';
112
+ }
113
+ }
114
+
115
+ & .e-square{
116
+ &::before {
117
+ content: '\e8aa';
118
+ }
119
+ }
120
+
121
+ & .e-custom-a {
122
+ &::before {
123
+ content: '\e8ab';
124
+ }
125
+ }
126
+
127
+ & .e-custom-b {
128
+ &::before {
129
+ content: '\e8ac';
130
+ }
131
+ }
132
+
133
+ & .e-custom-c {
134
+ &::before {
135
+ content: '\e8ad';
136
+ }
137
+ }
138
+
139
+ & .e-custom-d {
140
+ &::before {
141
+ content: '\e8ae';
142
+ }
143
+ }
144
+
145
+ & .e-custom-e {
146
+ &::before {
147
+ content: '\e8af';
148
+ }
149
+ }
150
+
151
+ & .e-custom-f {
152
+ &::before {
153
+ content: '\e8dd';
154
+ }
155
+ }
156
+
157
+ & .e-custom-g {
158
+ &::before {
159
+ content: '\e8de';
160
+ }
161
+ }
162
+
163
+ & .e-custom-h {
164
+ &::before {
165
+ content: '\e8df';
166
+ }
167
+ }
168
+
169
+ & .e-custom-i {
170
+ &::before {
171
+ content: '\e8e0';
172
+ }
173
+ }
174
+
175
+ & .e-custom-j {
176
+ &::before {
177
+ content: '\e8e1';
178
+ }
179
+ }
180
+
181
+ & .e-horizontal-flip {
182
+ &::before {
183
+ content: '\e8a3';
184
+ }
185
+ }
186
+
187
+ & .e-vertical-flip {
188
+ &::before {
189
+ content: '\e8a4';
190
+ }
191
+ }
192
+
193
+ & .e-clock-wise {
194
+ &::before {
195
+ content: '\e8a6';
196
+ }
197
+ }
198
+
199
+ & .e-anti-clock-wise {
200
+ &::before {
201
+ content: '\e8a5';
202
+ }
203
+ }
204
+
205
+ & .e-rectangle {
206
+ &::before {
207
+ content: '\e723';
208
+ }
209
+ }
210
+
211
+ & .e-circle {
212
+ &::before {
213
+ content: '\e7ca';
214
+ }
215
+ }
216
+
217
+ & .e-triangle {
218
+ &::before {
219
+ content: '\e89c';
220
+ }
221
+ }
222
+
223
+ & .e-line {
224
+ &::before {
225
+ content: '\e819';
226
+ }
227
+ }
228
+
229
+ & .e-add-text {
230
+ &::before {
231
+ content: '\e82e';
232
+ }
233
+ }
234
+
235
+ & .e-free-pen {
236
+ &::before {
237
+ content: '\e7db';
238
+ }
239
+ }
240
+
241
+ & .e-arrow {
242
+ &::before {
243
+ content: '\e669';
244
+ }
245
+ }
246
+
247
+ & .e-path {
248
+ &::before {
249
+ content: '\e931';
250
+ }
251
+ }
252
+ }
253
+ }
254
+
255
+ .e-dropdown-popup.e-image-popup {
256
+ & .e-custom {
257
+ &::before {
258
+ content: '\e8a9';
259
+ }
260
+ }
261
+
262
+ & .e-circle {
263
+ &::before {
264
+ content: '\e7ca';
265
+ }
266
+ }
267
+
268
+ & .e-square{
269
+ &::before {
270
+ content: '\e8aa';
271
+ }
272
+ }
273
+
274
+ & .e-custom-a {
275
+ &::before {
276
+ content: '\e8ab';
277
+ }
278
+ }
279
+
280
+ & .e-custom-b {
281
+ &::before {
282
+ content: '\e8ac';
283
+ }
284
+ }
285
+
286
+ & .e-custom-c {
287
+ &::before {
288
+ content: '\e8ad';
289
+ }
290
+ }
291
+
292
+ & .e-custom-d {
293
+ &::before {
294
+ content: '\e8ae';
295
+ }
296
+ }
297
+
298
+ & .e-custom-e {
299
+ &::before {
300
+ content: '\e8af';
301
+ }
302
+ }
303
+
304
+ & .e-custom-f {
305
+ &::before {
306
+ content: '\e8dd';
307
+ }
308
+ }
309
+
310
+ & .e-custom-g {
311
+ &::before {
312
+ content: '\e8de';
313
+ }
314
+ }
315
+
316
+ & .e-custom-h {
317
+ &::before {
318
+ content: '\e8df';
319
+ }
320
+ }
321
+
322
+ & .e-custom-i {
323
+ &::before {
324
+ content: '\e8e0';
325
+ }
326
+ }
327
+
328
+ & .e-custom-j {
329
+ &::before {
330
+ content: '\e8e1';
331
+ }
332
+ }
333
+
334
+ & .e-rectangle {
335
+ &::before {
336
+ content: '\e723';
337
+ }
338
+ }
339
+
340
+ & .e-circle {
341
+ &::before {
342
+ content: '\e7ca';
343
+ }
344
+ }
345
+
346
+ & .e-triangle {
347
+ &::before {
348
+ content: '\e89c';
349
+ }
350
+ }
351
+
352
+ & .e-line {
353
+ &::before {
354
+ content: '\e819';
355
+ }
356
+ }
357
+
358
+ & .e-free-pen {
359
+ &::before {
360
+ content: '\e7db';
361
+ }
362
+ }
363
+
364
+ & .e-horizontal-flip {
365
+ &::before {
366
+ content: '\e8a3';
367
+ }
368
+ }
369
+
370
+ & .e-vertical-flip {
371
+ &::before {
372
+ content: '\e8a4';
373
+ }
374
+ }
375
+
376
+ & .e-custom {
377
+ &::before {
378
+ content: '\e8a9';
379
+ }
380
+ }
381
+
382
+ & .e-clock-wise {
383
+ &::before {
384
+ content: '\e8a6';
385
+ }
386
+ }
387
+
388
+ & .e-anti-clock-wise {
389
+ &::before {
390
+ content: '\e8a5';
391
+ }
392
+ }
393
+
394
+ & .e-add-text {
395
+ &::before {
396
+ content: '\e82e';
397
+ }
398
+ }
399
+
400
+ & .e-arrow {
401
+ &::before {
402
+ content: '\e669';
403
+ }
404
+ }
405
+
406
+ & .e-path {
407
+ &::before {
408
+ content: '\e931';
409
+ }
410
+ }
411
+ }
@@ -566,18 +566,6 @@
566
566
  margin-left: calc(50% - 80px) !important; /* stylelint-disable-line declaration-no-important */
567
567
  }
568
568
 
569
- .e-device .e-transparency-slider-wrap {
570
- top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
571
- }
572
-
573
- .e-device .e-ie-finetune-slider-wrap {
574
- top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
575
- }
576
-
577
- .e-device .e-ie-slider-wrap {
578
- top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
579
- }
580
-
581
569
  .e-image-editor {
582
570
  background: #292929;
583
571
  }
@@ -571,18 +571,6 @@
571
571
  margin-left: calc(50% - 80px) !important; /* stylelint-disable-line declaration-no-important */
572
572
  }
573
573
 
574
- .e-device .e-transparency-slider-wrap {
575
- top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
576
- }
577
-
578
- .e-device .e-ie-finetune-slider-wrap {
579
- top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
580
- }
581
-
582
- .e-device .e-ie-slider-wrap {
583
- top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
584
- }
585
-
586
574
  .e-image-editor {
587
575
  background: #eee;
588
576
  }
@@ -596,24 +596,23 @@
596
596
  }
597
597
 
598
598
  .e-ie-finetune-value-span {
599
- top: 30% !important; /* stylelint-disable-line declaration-no-important */
599
+ top: 29% !important; /* stylelint-disable-line declaration-no-important */
600
600
  }
601
601
 
602
602
  .e-ie-finetune-slider-label {
603
- top: 30% !important; /* stylelint-disable-line declaration-no-important */
603
+ top: 28% !important; /* stylelint-disable-line declaration-no-important */
604
604
  }
605
605
 
606
606
  .e-ie-finetune-slider-wrap {
607
- top: calc(50% - 12px) !important; /* stylelint-disable-line declaration-no-important */
607
+ top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
608
608
  }
609
609
 
610
610
  .e-transparency-slider-wrap {
611
- top: calc(50% - 12px) !important; /* stylelint-disable-line declaration-no-important */
611
+ top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
612
612
  }
613
613
 
614
614
  .e-ie-slider-wrap {
615
615
  top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
616
- top: calc(50% - 12px) !important; /* stylelint-disable-line declaration-no-important */
617
616
  }
618
617
 
619
618
  .e-bigger .e-straighten .e-control-wrapper.e-slider-container .e-slider .e-handle {
@@ -635,26 +634,6 @@
635
634
  margin-left: calc(50% - 80px) !important; /* stylelint-disable-line declaration-no-important */
636
635
  }
637
636
 
638
- .e-device .e-transparency-slider-wrap {
639
- top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
640
- }
641
-
642
- .e-device .e-ie-finetune-slider-wrap {
643
- top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
644
- }
645
-
646
- .e-device .e-ie-finetune-value-span {
647
- top: 29% !important; /* stylelint-disable-line declaration-no-important */
648
- }
649
-
650
- .e-device .e-ie-finetune-slider-label {
651
- top: 28% !important; /* stylelint-disable-line declaration-no-important */
652
- }
653
-
654
- .e-device .e-ie-slider-wrap {
655
- top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
656
- }
657
-
658
637
  .e-image-editor {
659
638
  background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.14), rgba(var(--color-sf-primary), 0.14)), rgba(var(--color-sf-surface));
660
639
  }
@@ -652,24 +652,23 @@
652
652
  }
653
653
 
654
654
  .e-ie-finetune-value-span {
655
- top: 30% !important; /* stylelint-disable-line declaration-no-important */
655
+ top: 29% !important; /* stylelint-disable-line declaration-no-important */
656
656
  }
657
657
 
658
658
  .e-ie-finetune-slider-label {
659
- top: 30% !important; /* stylelint-disable-line declaration-no-important */
659
+ top: 28% !important; /* stylelint-disable-line declaration-no-important */
660
660
  }
661
661
 
662
662
  .e-ie-finetune-slider-wrap {
663
- top: calc(50% - 12px) !important; /* stylelint-disable-line declaration-no-important */
663
+ top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
664
664
  }
665
665
 
666
666
  .e-transparency-slider-wrap {
667
- top: calc(50% - 12px) !important; /* stylelint-disable-line declaration-no-important */
667
+ top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
668
668
  }
669
669
 
670
670
  .e-ie-slider-wrap {
671
671
  top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
672
- top: calc(50% - 12px) !important; /* stylelint-disable-line declaration-no-important */
673
672
  }
674
673
 
675
674
  .e-bigger .e-straighten .e-control-wrapper.e-slider-container .e-slider .e-handle {
@@ -691,26 +690,6 @@
691
690
  margin-left: calc(50% - 80px) !important; /* stylelint-disable-line declaration-no-important */
692
691
  }
693
692
 
694
- .e-device .e-transparency-slider-wrap {
695
- top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
696
- }
697
-
698
- .e-device .e-ie-finetune-slider-wrap {
699
- top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
700
- }
701
-
702
- .e-device .e-ie-finetune-value-span {
703
- top: 29% !important; /* stylelint-disable-line declaration-no-important */
704
- }
705
-
706
- .e-device .e-ie-finetune-slider-label {
707
- top: 28% !important; /* stylelint-disable-line declaration-no-important */
708
- }
709
-
710
- .e-device .e-ie-slider-wrap {
711
- top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
712
- }
713
-
714
693
  .e-image-editor {
715
694
  background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.14), rgba(var(--color-sf-primary), 0.14)), rgba(var(--color-sf-surface));
716
695
  }
@@ -535,16 +535,15 @@
535
535
  }
536
536
 
537
537
  .e-ie-finetune-slider-wrap {
538
- top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
538
+ top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
539
539
  }
540
540
 
541
541
  .e-transparency-slider-wrap {
542
- top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
542
+ top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
543
543
  }
544
544
 
545
545
  .e-ie-slider-wrap {
546
546
  top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
547
- top: calc(50% - 13px) !important; /* stylelint-disable-line declaration-no-important */
548
547
  }
549
548
 
550
549
  .e-bigger .e-straighten .e-control-wrapper.e-slider-container .e-slider .e-handle {
@@ -564,18 +563,6 @@
564
563
  margin-left: calc(50% - 80px) !important; /* stylelint-disable-line declaration-no-important */
565
564
  }
566
565
 
567
- .e-device .e-transparency-slider-wrap {
568
- top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
569
- }
570
-
571
- .e-device .e-ie-finetune-slider-wrap {
572
- top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
573
- }
574
-
575
- .e-device .e-ie-slider-wrap {
576
- top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
577
- }
578
-
579
566
  .e-image-editor {
580
567
  background: #4b5563;
581
568
  }
@@ -535,16 +535,15 @@
535
535
  }
536
536
 
537
537
  .e-ie-finetune-slider-wrap {
538
- top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
538
+ top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
539
539
  }
540
540
 
541
541
  .e-transparency-slider-wrap {
542
- top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
542
+ top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
543
543
  }
544
544
 
545
545
  .e-ie-slider-wrap {
546
546
  top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
547
- top: calc(50% - 13px) !important; /* stylelint-disable-line declaration-no-important */
548
547
  }
549
548
 
550
549
  .e-bigger .e-straighten .e-control-wrapper.e-slider-container .e-slider .e-handle {
@@ -564,18 +563,6 @@
564
563
  margin-left: calc(50% - 80px) !important; /* stylelint-disable-line declaration-no-important */
565
564
  }
566
565
 
567
- .e-device .e-transparency-slider-wrap {
568
- top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
569
- }
570
-
571
- .e-device .e-ie-finetune-slider-wrap {
572
- top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
573
- }
574
-
575
- .e-device .e-ie-slider-wrap {
576
- top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
577
- }
578
-
579
566
  .e-image-editor {
580
567
  background: #e5e7eb;
581
568
  }
@@ -566,18 +566,6 @@
566
566
  margin-left: calc(50% - 80px) !important; /* stylelint-disable-line declaration-no-important */
567
567
  }
568
568
 
569
- .e-device .e-transparency-slider-wrap {
570
- top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
571
- }
572
-
573
- .e-device .e-ie-finetune-slider-wrap {
574
- top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
575
- }
576
-
577
- .e-device .e-ie-slider-wrap {
578
- top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
579
- }
580
-
581
569
  .e-image-editor {
582
570
  background: #292929;
583
571
  }
@@ -571,18 +571,6 @@
571
571
  margin-left: calc(50% - 80px) !important; /* stylelint-disable-line declaration-no-important */
572
572
  }
573
573
 
574
- .e-device .e-transparency-slider-wrap {
575
- top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
576
- }
577
-
578
- .e-device .e-ie-finetune-slider-wrap {
579
- top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
580
- }
581
-
582
- .e-device .e-ie-slider-wrap {
583
- top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
584
- }
585
-
586
574
  .e-image-editor {
587
575
  background: #eee;
588
576
  }