@syncfusion/ej2-image-editor 25.2.3 → 26.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 (128) hide show
  1. package/.eslintrc.json +3 -2
  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 +2679 -829
  5. package/dist/es6/ej2-image-editor.es2015.js.map +1 -1
  6. package/dist/es6/ej2-image-editor.es5.js +2762 -872
  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 +13 -12
  12. package/src/image-editor/action/crop.d.ts +0 -1
  13. package/src/image-editor/action/crop.js +35 -77
  14. package/src/image-editor/action/draw.d.ts +3 -0
  15. package/src/image-editor/action/draw.js +190 -81
  16. package/src/image-editor/action/export.d.ts +3 -0
  17. package/src/image-editor/action/export.js +99 -40
  18. package/src/image-editor/action/filter.d.ts +0 -1
  19. package/src/image-editor/action/filter.js +4 -24
  20. package/src/image-editor/action/freehand-draw.js +30 -8
  21. package/src/image-editor/action/selection.d.ts +10 -0
  22. package/src/image-editor/action/selection.js +444 -99
  23. package/src/image-editor/action/shape.d.ts +11 -1
  24. package/src/image-editor/action/shape.js +520 -127
  25. package/src/image-editor/action/transform.d.ts +0 -1
  26. package/src/image-editor/action/transform.js +53 -69
  27. package/src/image-editor/action/undo-redo.d.ts +2 -0
  28. package/src/image-editor/action/undo-redo.js +114 -29
  29. package/src/image-editor/base/enum.d.ts +5 -1
  30. package/src/image-editor/base/enum.js +4 -0
  31. package/src/image-editor/base/image-editor-model.d.ts +8 -6
  32. package/src/image-editor/base/image-editor.d.ts +116 -7
  33. package/src/image-editor/base/image-editor.js +378 -52
  34. package/src/image-editor/base/interface.d.ts +17 -0
  35. package/src/image-editor/base/interface.js +0 -1
  36. package/src/image-editor/renderer/toolbar.d.ts +14 -1
  37. package/src/image-editor/renderer/toolbar.js +831 -191
  38. package/styles/bootstrap-dark.css +279 -97
  39. package/styles/bootstrap-dark.scss +13 -1
  40. package/styles/bootstrap.css +282 -98
  41. package/styles/bootstrap.scss +13 -1
  42. package/styles/bootstrap4.css +280 -97
  43. package/styles/bootstrap4.scss +13 -1
  44. package/styles/bootstrap5-dark.css +280 -101
  45. package/styles/bootstrap5-dark.scss +13 -1
  46. package/styles/bootstrap5.css +280 -101
  47. package/styles/bootstrap5.scss +13 -1
  48. package/styles/fabric-dark.css +281 -97
  49. package/styles/fabric-dark.scss +13 -1
  50. package/styles/fabric.css +284 -97
  51. package/styles/fabric.scss +13 -1
  52. package/styles/fluent-dark.css +287 -101
  53. package/styles/fluent-dark.scss +13 -1
  54. package/styles/fluent.css +287 -101
  55. package/styles/fluent.scss +13 -1
  56. package/styles/fluent2.css +1851 -0
  57. package/styles/fluent2.scss +13 -0
  58. package/styles/highcontrast-light.css +279 -97
  59. package/styles/highcontrast-light.scss +13 -1
  60. package/styles/highcontrast.css +284 -97
  61. package/styles/highcontrast.scss +13 -1
  62. package/styles/image-editor/_bds-definition.scss +5 -0
  63. package/styles/image-editor/_bootstrap-dark-definition.scss +5 -0
  64. package/styles/image-editor/_bootstrap-definition.scss +5 -0
  65. package/styles/image-editor/_bootstrap4-definition.scss +5 -0
  66. package/styles/image-editor/_bootstrap5-definition.scss +5 -0
  67. package/styles/image-editor/_bootstrap5.3-definition.scss +26 -0
  68. package/styles/image-editor/_fabric-dark-definition.scss +5 -0
  69. package/styles/image-editor/_fabric-definition.scss +5 -0
  70. package/styles/image-editor/_fluent-definition.scss +5 -0
  71. package/styles/image-editor/_fluent2-definition.scss +26 -0
  72. package/styles/image-editor/_fusionnew-definition.scss +5 -0
  73. package/styles/image-editor/_highcontrast-definition.scss +5 -0
  74. package/styles/image-editor/_highcontrast-light-definition.scss +5 -0
  75. package/styles/image-editor/_layout.scss +352 -13
  76. package/styles/image-editor/_material-dark-definition.scss +5 -0
  77. package/styles/image-editor/_material-definition.scss +5 -0
  78. package/styles/image-editor/_material3-definition.scss +5 -0
  79. package/styles/image-editor/_tailwind-definition.scss +5 -0
  80. package/styles/image-editor/bootstrap-dark.css +279 -97
  81. package/styles/image-editor/bootstrap.css +282 -98
  82. package/styles/image-editor/bootstrap4.css +280 -97
  83. package/styles/image-editor/bootstrap5-dark.css +280 -101
  84. package/styles/image-editor/bootstrap5.css +280 -101
  85. package/styles/image-editor/fabric-dark.css +281 -97
  86. package/styles/image-editor/fabric.css +284 -97
  87. package/styles/image-editor/fluent-dark.css +287 -101
  88. package/styles/image-editor/fluent.css +287 -101
  89. package/styles/image-editor/fluent2.css +1851 -0
  90. package/styles/image-editor/fluent2.scss +13 -0
  91. package/styles/image-editor/highcontrast-light.css +279 -97
  92. package/styles/image-editor/highcontrast.css +284 -97
  93. package/styles/image-editor/icons/_bds.scss +1 -162
  94. package/styles/image-editor/icons/_bootstrap-dark.scss +1 -162
  95. package/styles/image-editor/icons/_bootstrap.scss +1 -162
  96. package/styles/image-editor/icons/_bootstrap4.scss +1 -162
  97. package/styles/image-editor/icons/_bootstrap5.3.scss +250 -0
  98. package/styles/image-editor/icons/_bootstrap5.scss +1 -168
  99. package/styles/image-editor/icons/_fabric-dark.scss +1 -162
  100. package/styles/image-editor/icons/_fabric.scss +1 -162
  101. package/styles/image-editor/icons/_fluent.scss +1 -168
  102. package/styles/image-editor/icons/_fluent2.scss +256 -0
  103. package/styles/image-editor/icons/_fusionnew.scss +1 -138
  104. package/styles/image-editor/icons/_highcontrast-light.scss +1 -162
  105. package/styles/image-editor/icons/_highcontrast.scss +1 -162
  106. package/styles/image-editor/icons/_material-dark.scss +2 -163
  107. package/styles/image-editor/icons/_material.scss +1 -162
  108. package/styles/image-editor/icons/_material3.scss +2 -169
  109. package/styles/image-editor/icons/_tailwind.scss +1 -162
  110. package/styles/image-editor/material-dark.css +299 -100
  111. package/styles/image-editor/material.css +302 -100
  112. package/styles/image-editor/material3-dark.css +314 -103
  113. package/styles/image-editor/material3.css +314 -103
  114. package/styles/image-editor/tailwind-dark.css +284 -97
  115. package/styles/image-editor/tailwind.css +284 -97
  116. package/styles/material-dark.css +299 -100
  117. package/styles/material-dark.scss +13 -1
  118. package/styles/material.css +302 -100
  119. package/styles/material.scss +13 -1
  120. package/styles/material3-dark.css +314 -103
  121. package/styles/material3-dark.scss +13 -1
  122. package/styles/material3.css +314 -103
  123. package/styles/material3.scss +13 -1
  124. package/styles/tailwind-dark.css +284 -97
  125. package/styles/tailwind-dark.scss +13 -1
  126. package/styles/tailwind.css +284 -97
  127. package/styles/tailwind.scss +13 -1
  128. package/CHANGELOG.md +0 -281
@@ -1,18 +1,42 @@
1
1
  /* stylelint-disable-line no-empty-source */
2
2
  /* stylelint-disable property-no-vendor-prefix */
3
+ @-webkit-keyframes material-spinner-rotate {
4
+ 0% {
5
+ -webkit-transform: rotate(0);
6
+ transform: rotate(0);
7
+ }
8
+ 100% {
9
+ -webkit-transform: rotate(360deg);
10
+ transform: rotate(360deg);
11
+ }
12
+ }
3
13
  @keyframes material-spinner-rotate {
4
14
  0% {
15
+ -webkit-transform: rotate(0);
16
+ transform: rotate(0);
17
+ }
18
+ 100% {
19
+ -webkit-transform: rotate(360deg);
20
+ transform: rotate(360deg);
21
+ }
22
+ }
23
+ @-webkit-keyframes fabric-spinner-rotate {
24
+ 0% {
25
+ -webkit-transform: rotate(0);
5
26
  transform: rotate(0);
6
27
  }
7
28
  100% {
29
+ -webkit-transform: rotate(360deg);
8
30
  transform: rotate(360deg);
9
31
  }
10
32
  }
11
33
  @keyframes fabric-spinner-rotate {
12
34
  0% {
35
+ -webkit-transform: rotate(0);
13
36
  transform: rotate(0);
14
37
  }
15
38
  100% {
39
+ -webkit-transform: rotate(360deg);
16
40
  transform: rotate(360deg);
17
41
  }
18
42
  }
@@ -49,9 +73,6 @@
49
73
  .e-image-editor .e-btn-save::before {
50
74
  content: "\e954";
51
75
  }
52
- .e-image-editor .e-custom::before {
53
- content: "\e959";
54
- }
55
76
  .e-image-editor .e-close::before {
56
77
  content: "\ebe8";
57
78
  }
@@ -67,160 +88,108 @@
67
88
  .e-image-editor .e-fill.e-template .e-caret::before {
68
89
  content: "\e35c";
69
90
  }
70
- .e-image-editor .e-custom::before {
71
- content: "\e959";
72
- }
73
- .e-image-editor .e-circle::before {
74
- content: "\e671";
75
- }
76
- .e-image-editor .e-square::before {
77
- content: "\e95a";
78
- }
79
- .e-image-editor .e-custom-a::before {
80
- content: "\e95b";
81
- }
82
- .e-image-editor .e-custom-b::before {
83
- content: "\e95c";
84
- }
85
- .e-image-editor .e-custom-c::before {
86
- content: "\e95d";
87
- }
88
- .e-image-editor .e-custom-d::before {
89
- content: "\e95e";
90
- }
91
- .e-image-editor .e-custom-e::before {
92
- content: "\e960";
93
- }
94
- .e-image-editor .e-custom-f::before {
95
- content: "\e9a3";
96
- }
97
- .e-image-editor .e-custom-g::before {
98
- content: "\e9a4";
99
- }
100
- .e-image-editor .e-custom-h::before {
101
- content: "\e9a5";
102
- }
103
- .e-image-editor .e-custom-i::before {
104
- content: "\e9a6";
105
- }
106
- .e-image-editor .e-custom-j::before {
107
- content: "\e9a7";
108
- }
109
- .e-image-editor .e-horizontal-flip::before {
110
- content: "\e951";
111
- }
112
- .e-image-editor .e-vertical-flip::before {
113
- content: "\e952";
114
- }
115
- .e-image-editor .e-clock-wise::before {
116
- content: "\e956";
117
- }
118
- .e-image-editor .e-anti-clock-wise::before {
119
- content: "\e955";
120
- }
121
- .e-image-editor .e-rectangle::before {
122
- content: "\e670";
123
- }
124
- .e-image-editor .e-circle::before {
125
- content: "\e671";
126
- }
127
- .e-image-editor .e-triangle::before {
128
- content: "\e949";
129
- }
130
- .e-image-editor .e-line::before {
131
- content: "\e668";
132
- }
133
- .e-image-editor .e-add-text::before {
134
- content: "\e35b";
135
- }
136
- .e-image-editor .e-free-pen::before {
137
- content: "\e739";
138
- }
139
- .e-image-editor .e-arrow::before {
140
- content: "\e669";
141
- }
142
- .e-image-editor .e-path::before {
143
- content: "\e931";
144
- }
145
91
 
92
+ .e-image-editor .e-custom::before,
146
93
  .e-dropdown-popup.e-image-popup .e-custom::before {
147
94
  content: "\e959";
148
95
  }
96
+ .e-image-editor .e-circle::before,
149
97
  .e-dropdown-popup.e-image-popup .e-circle::before {
150
98
  content: "\e671";
151
99
  }
100
+ .e-image-editor .e-square::before,
152
101
  .e-dropdown-popup.e-image-popup .e-square::before {
153
102
  content: "\e95a";
154
103
  }
104
+ .e-image-editor .e-custom-a::before,
155
105
  .e-dropdown-popup.e-image-popup .e-custom-a::before {
156
106
  content: "\e95b";
157
107
  }
108
+ .e-image-editor .e-custom-b::before,
158
109
  .e-dropdown-popup.e-image-popup .e-custom-b::before {
159
110
  content: "\e95c";
160
111
  }
112
+ .e-image-editor .e-custom-c::before,
161
113
  .e-dropdown-popup.e-image-popup .e-custom-c::before {
162
114
  content: "\e95d";
163
115
  }
116
+ .e-image-editor .e-custom-d::before,
164
117
  .e-dropdown-popup.e-image-popup .e-custom-d::before {
165
118
  content: "\e95e";
166
119
  }
120
+ .e-image-editor .e-custom-e::before,
167
121
  .e-dropdown-popup.e-image-popup .e-custom-e::before {
168
122
  content: "\e960";
169
123
  }
124
+ .e-image-editor .e-custom-f::before,
170
125
  .e-dropdown-popup.e-image-popup .e-custom-f::before {
171
126
  content: "\e9a3";
172
127
  }
128
+ .e-image-editor .e-custom-g::before,
173
129
  .e-dropdown-popup.e-image-popup .e-custom-g::before {
174
130
  content: "\e9a4";
175
131
  }
132
+ .e-image-editor .e-custom-h::before,
176
133
  .e-dropdown-popup.e-image-popup .e-custom-h::before {
177
134
  content: "\e9a5";
178
135
  }
136
+ .e-image-editor .e-custom-i::before,
179
137
  .e-dropdown-popup.e-image-popup .e-custom-i::before {
180
138
  content: "\e9a6";
181
139
  }
140
+ .e-image-editor .e-custom-j::before,
182
141
  .e-dropdown-popup.e-image-popup .e-custom-j::before {
183
142
  content: "\e9a7";
184
143
  }
144
+ .e-image-editor .e-rectangle::before,
185
145
  .e-dropdown-popup.e-image-popup .e-rectangle::before {
186
146
  content: "\e670";
187
147
  }
188
- .e-dropdown-popup.e-image-popup .e-circle::before {
189
- content: "\e671";
190
- }
148
+ .e-image-editor .e-triangle::before,
191
149
  .e-dropdown-popup.e-image-popup .e-triangle::before {
192
150
  content: "\e949";
193
151
  }
152
+ .e-image-editor .e-line::before,
194
153
  .e-dropdown-popup.e-image-popup .e-line::before {
195
154
  content: "\e668";
196
155
  }
156
+ .e-image-editor .e-clock-wise::before,
197
157
  .e-dropdown-popup.e-image-popup .e-clock-wise::before {
198
158
  content: "\e956";
199
159
  }
160
+ .e-image-editor .e-anti-clock-wise::before,
200
161
  .e-dropdown-popup.e-image-popup .e-anti-clock-wise::before {
201
162
  content: "\e955";
202
163
  }
164
+ .e-image-editor .e-add-text::before,
203
165
  .e-dropdown-popup.e-image-popup .e-add-text::before {
204
166
  content: "\e35b";
205
167
  }
168
+ .e-image-editor .e-free-pen::before,
206
169
  .e-dropdown-popup.e-image-popup .e-free-pen::before {
207
170
  content: "\e739";
208
171
  }
172
+ .e-image-editor .e-horizontal-flip::before,
209
173
  .e-dropdown-popup.e-image-popup .e-horizontal-flip::before {
210
174
  content: "\e951";
211
175
  }
176
+ .e-image-editor .e-vertical-flip::before,
212
177
  .e-dropdown-popup.e-image-popup .e-vertical-flip::before {
213
178
  content: "\e952";
214
179
  }
180
+ .e-image-editor .e-arrow::before,
215
181
  .e-dropdown-popup.e-image-popup .e-arrow::before {
216
182
  content: "\e669";
217
183
  }
184
+ .e-image-editor .e-path::before,
218
185
  .e-dropdown-popup.e-image-popup .e-path::before {
219
186
  content: "\e931";
220
187
  }
221
188
 
222
189
  .e-ie-toolbar-upload-div.e-hide,
223
- .e-ie-toolbar-upload-btn.e-hide {
190
+ .e-ie-toolbar-upload-btn.e-hide,
191
+ .e-ie-img-quality-slider,
192
+ .e-ie-img-quality-name .e-hide {
224
193
  display: none;
225
194
  }
226
195
 
@@ -237,15 +206,12 @@
237
206
  .e-device.e-image-editor .e-ie-straighten-value-span {
238
207
  margin-left: 15px !important; /* stylelint-disable-line declaration-no-important */
239
208
  }
240
- .e-device.e-image-editor .e-hscroll .e-scroll-nav.e-scroll-right-nav {
209
+ .e-device.e-image-editor .e-hscroll .e-scroll-nav.e-scroll-right-nav, .e-device.e-image-editor .e-scroll-right-overlay {
241
210
  display: none !important; /* stylelint-disable-line declaration-no-important */
242
211
  }
243
212
  .e-device.e-image-editor .e-hscroll.e-scroll-device {
244
213
  padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
245
214
  }
246
- .e-device.e-image-editor .e-scroll-right-overlay {
247
- display: none !important; /* stylelint-disable-line declaration-no-important */
248
- }
249
215
  .e-device.e-image-editor .e-contextual-toolbar-wrapper {
250
216
  border-top: 1px solid #fff;
251
217
  border-bottom: none !important; /* stylelint-disable-line declaration-no-important */
@@ -259,6 +225,16 @@
259
225
  .e-device.e-image-editor .e-bottom-toolbar .e-toolbar, .e-device.e-image-editor .e-bottom-toolbar-area .e-toolbar {
260
226
  border-bottom: none;
261
227
  }
228
+ .e-device.e-image-editor .e-ie-img-save-name {
229
+ width: calc(65% - 13px) !important; /* stylelint-disable-line declaration-no-important */
230
+ }
231
+ .e-device.e-image-editor .e-ie-img-size-value-span {
232
+ margin-left: calc(100% - 145px) !important; /* stylelint-disable-line declaration-no-important */
233
+ }
234
+ .e-device.e-image-editor .e-ie-quality-option-container .e-slider-container {
235
+ margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
236
+ height: auto !important; /* stylelint-disable-line declaration-no-important */
237
+ }
262
238
 
263
239
  .e-bigger .e-image-editor .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle,
264
240
  .e-image-editor.e-bigger .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle {
@@ -269,11 +245,8 @@
269
245
  height: 48px !important; /* stylelint-disable-line declaration-no-important */
270
246
  min-height: 48px !important; /* stylelint-disable-line declaration-no-important */
271
247
  }
272
- .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-height span,
273
- .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-height span {
274
- font-size: 16px;
275
- }
276
- .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-width span,
248
+ .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-height span, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-width span,
249
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-height span,
277
250
  .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-width span {
278
251
  font-size: 16px;
279
252
  }
@@ -327,7 +300,6 @@
327
300
  .e-image-editor.e-bigger .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
328
301
  line-height: 1;
329
302
  }
330
-
331
303
  .e-image-editor {
332
304
  border: 1px solid #fff;
333
305
  position: relative;
@@ -452,7 +424,6 @@
452
424
  height: inherit !important; /* stylelint-disable-line declaration-no-important */
453
425
  }
454
426
  .e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-toolbar-item {
455
- display: -ms-inline-grid;
456
427
  display: inline-grid;
457
428
  }
458
429
  .e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-toolbar-item > span {
@@ -462,13 +433,14 @@
462
433
  }
463
434
  .e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-dropdown-btn {
464
435
  margin: 0 auto;
436
+ width: -webkit-max-content;
437
+ width: -moz-max-content;
465
438
  width: max-content;
466
439
  }
467
440
  .e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-toolbar {
468
441
  height: inherit !important; /* stylelint-disable-line declaration-no-important */
469
442
  }
470
443
  .e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-toolbar-item:not(.e-hidden) {
471
- display: -ms-inline-grid;
472
444
  display: inline-grid;
473
445
  }
474
446
  .e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-toolbar-item > span {
@@ -478,6 +450,8 @@
478
450
  }
479
451
  .e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-dropdown-btn {
480
452
  margin: 0 auto;
453
+ width: -webkit-max-content;
454
+ width: -moz-max-content;
481
455
  width: max-content;
482
456
  }
483
457
  .e-image-editor .e-contextual-toolbar-wrapper.e-hide {
@@ -561,6 +535,216 @@
561
535
  margin-left: calc(50% - 80px) !important; /* stylelint-disable-line declaration-no-important */
562
536
  }
563
537
 
538
+ .e-ie-quality-slider.e-control-wrapper.e-slider-container.e-horizontal,
539
+ .e-ie-quality-option-container .e-slider-container.e-horizontal {
540
+ height: 28px;
541
+ }
542
+
543
+ .e-ie-quality-slider.e-control-wrapper.e-slider-container.e-horizontal .e-slider {
544
+ top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
545
+ }
546
+
547
+ .e-ie-quality-slider.e-slider-container + .e-ie-img-icon-button,
548
+ .e-ie-quality-option-container .e-slider-container.e-horizontal + .e-ie-img-icon-button {
549
+ margin-left: 20px !important; /* stylelint-disable-line declaration-no-important */
550
+ }
551
+
552
+ .e-ie-img-size {
553
+ margin: 10px 10px 0;
554
+ }
555
+
556
+ .e-ie-dlg-img-content {
557
+ width: 40%;
558
+ height: 100%;
559
+ margin-right: 5%;
560
+ display: -webkit-box;
561
+ display: -ms-flexbox;
562
+ display: flex;
563
+ -webkit-box-orient: vertical;
564
+ -webkit-box-direction: normal;
565
+ -ms-flex-direction: column;
566
+ flex-direction: column;
567
+ -webkit-box-pack: center;
568
+ -ms-flex-pack: center;
569
+ justify-content: center;
570
+ -webkit-box-align: center;
571
+ -ms-flex-align: center;
572
+ align-items: center;
573
+ }
574
+
575
+ .e-ie-img-input {
576
+ width: 90% !important; /* stylelint-disable-line declaration-no-important */
577
+ }
578
+
579
+ .e-ie-img-dlg-canvas {
580
+ width: 100%;
581
+ height: 100%;
582
+ }
583
+
584
+ .e-ie-img-size {
585
+ font-size: 14px;
586
+ display: -webkit-box;
587
+ display: -ms-flexbox;
588
+ display: flex;
589
+ -webkit-box-orient: vertical;
590
+ -webkit-box-direction: normal;
591
+ -ms-flex-direction: column;
592
+ flex-direction: column;
593
+ -webkit-box-pack: start;
594
+ -ms-flex-pack: start;
595
+ justify-content: flex-start;
596
+ }
597
+
598
+ .e-ie-dlg-right-content {
599
+ width: 60%;
600
+ }
601
+
602
+ .e-ie-img-save-name {
603
+ display: inline-block;
604
+ margin-right: 10px;
605
+ width: calc(71% - 13px);
606
+ margin-right: 8px !important; /* stylelint-disable-line declaration-no-important */
607
+ }
608
+
609
+ .e-ie-img-save-dlg {
610
+ display: inline-block;
611
+ width: 90px;
612
+ }
613
+
614
+ .e-ie-img-save-dlg .e-btn {
615
+ width: 100%;
616
+ }
617
+
618
+ .e-ie-img-label-name {
619
+ margin-bottom: 5px;
620
+ display: block;
621
+ }
622
+
623
+ .e-ie-img-quality-name {
624
+ position: relative;
625
+ width: 100% !important; /* stylelint-disable-line declaration-no-important */
626
+ }
627
+
628
+ .e-ie-quality-info {
629
+ margin-bottom: 0;
630
+ margin-top: 0;
631
+ }
632
+
633
+ .e-ie-quality-span {
634
+ margin-left: 5px;
635
+ display: -webkit-inline-box;
636
+ display: -ms-inline-flexbox;
637
+ display: inline-flex;
638
+ }
639
+
640
+ .e-ie-img-quality-label {
641
+ margin-bottom: 3%;
642
+ margin-top: 5%;
643
+ display: -webkit-inline-box;
644
+ display: -ms-inline-flexbox;
645
+ display: inline-flex;
646
+ }
647
+
648
+ .e-ie-img-quality-size {
649
+ margin-top: 5%;
650
+ display: block;
651
+ }
652
+
653
+ .e-ie-img-size-value-span {
654
+ width: 8%;
655
+ text-transform: capitalize;
656
+ margin-left: calc(100% - 194px);
657
+ margin-top: 4px;
658
+ margin-left: calc(100% - 175px);
659
+ }
660
+
661
+ .e-device.e-ie-save-dialog .e-ie-img-size-value-span {
662
+ margin-left: calc(100% - 145px) !important; /* stylelint-disable-line declaration-no-important */
663
+ margin-left: calc(100% - 135px) !important; /* stylelint-disable-line declaration-no-important */
664
+ }
665
+
666
+ .e-bigger .e-ie-save-dialog .e-ie-img-save-name {
667
+ width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
668
+ }
669
+
670
+ .e-device.e-ie-save-dialog .e-ie-img-save-name {
671
+ width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
672
+ width: calc(71% - 33px) !important; /* stylelint-disable-line declaration-no-important */
673
+ }
674
+
675
+ .e-ie-img-icon-button {
676
+ margin-left: 10px;
677
+ width: -webkit-max-content;
678
+ width: -moz-max-content;
679
+ width: max-content;
680
+ margin-bottom: 5px;
681
+ }
682
+
683
+ .e-bigger .e-image-editor .e-dlg-container .e-dialog,
684
+ .e-bigger.e-image-editor .e-dlg-container .e-dialog {
685
+ width: 656px;
686
+ }
687
+
688
+ .e-bigger .e-ie-img-save-dlg {
689
+ width: 106px;
690
+ }
691
+
692
+ .e-bigger .e-image-editor .e-control-wrapper.e-slider-container.e-horizontal,
693
+ .e-bigger.e-image-editor .e-control-wrapper.e-slider-container.e-horizontal {
694
+ width: 217px;
695
+ }
696
+
697
+ .e-ie-quality-option-container .e-btn-group .e-btn {
698
+ padding-left: 13px;
699
+ padding-right: 13px;
700
+ }
701
+
702
+ .e-bigger .e-dialog.e-blr-ie-save-dialog:not(.e-device) {
703
+ width: 625px !important; /* stylelint-disable-line declaration-no-important */
704
+ }
705
+ .e-bigger .e-dialog.e-blr-ie-save-dialog:not(.e-device) .e-ie-img-icon-button {
706
+ padding: 2px 11px;
707
+ }
708
+ .e-blr-ie-save-dialog .e-ie-img-save-name {
709
+ width: calc(67% - 13px);
710
+ }
711
+ .e-blr-ie-save-dialog .e-ie-quality-custom {
712
+ width: calc(65% - 13px);
713
+ }
714
+ .e-blr-ie-save-dialog .e-ie-quality-option-container .e-ie-img-icon-button {
715
+ margin-left: 20px;
716
+ }
717
+ .e-blr-ie-save-dialog .e-ie-img-size-value-span {
718
+ vertical-align: middle;
719
+ margin-left: calc(50% - 55px);
720
+ }
721
+ .e-blr-ie-save-dialog .e-btn-group .e-btn {
722
+ padding: 2px 10px;
723
+ }
724
+ .e-blr-ie-save-dialog.e-device .e-ie-img-save-name {
725
+ width: calc(63% - 15px) !important; /* stylelint-disable-line declaration-no-important */
726
+ }
727
+ .e-blr-ie-save-dialog.e-device .e-ie-quality-custom {
728
+ width: 75% !important; /* stylelint-disable-line declaration-no-important */
729
+ }
730
+ .e-blr-ie-save-dialog.e-device .e-ie-quality-option-container .e-ie-img-icon-button {
731
+ margin-left: 0;
732
+ }
733
+ .e-blr-ie-save-dialog.e-device .e-slider-container {
734
+ margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
735
+ height: 28px !important; /* stylelint-disable-line declaration-no-important */
736
+ }
737
+ .e-blr-ie-save-dialog.e-device .e-ie-img-size-value-span {
738
+ margin-left: calc(75% - 100px) !important; /* stylelint-disable-line declaration-no-important */
739
+ }
740
+ .e-blr-ie-save-dialog.e-device .e-btn-group .e-btn {
741
+ padding: 3px 9px;
742
+ }
743
+ .e-bigger .e-ie-save-dialog .e-ie-img-save-name {
744
+ width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
745
+ width: calc(62% - 13px) !important; /* stylelint-disable-line declaration-no-important */
746
+ }
747
+
564
748
  .e-image-editor {
565
749
  background: #000;
566
750
  }
@@ -588,17 +772,20 @@
588
772
  }
589
773
  .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
590
774
  background: #685708;
591
- box-shadow: none;
775
+ -webkit-box-shadow: none;
776
+ box-shadow: none;
592
777
  color: #fff;
593
778
  }
594
779
  .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
595
780
  background: #000;
596
- box-shadow: none;
781
+ -webkit-box-shadow: none;
782
+ box-shadow: none;
597
783
  color: #fff;
598
784
  }
599
785
  .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
600
786
  background: #ffd939;
601
- box-shadow: none;
787
+ -webkit-box-shadow: none;
788
+ box-shadow: none;
602
789
  color: #000;
603
790
  }
604
791
  .e-image-editor .e-toolbar .e-toolbar-items .e-colorpicker-wrapper.e-shape-fill-color .e-split-btn-wrapper .e-split-btn .e-selected-color, .e-image-editor .e-toolbar .e-toolbar-items .e-colorpicker-wrapper.e-shape-stroke-color .e-split-btn-wrapper .e-split-btn .e-selected-color, .e-image-editor .e-toolbar .e-toolbar-items .e-colorpicker-wrapper.e-text-stroke-color .e-split-btn-wrapper .e-split-btn .e-selected-color, .e-image-editor .e-toolbar .e-toolbar-items .e-colorpicker-wrapper.e-pen-stroke-color .e-split-btn-wrapper .e-split-btn .e-selected-color {
@@ -1 +1,13 @@
1
- @import 'image-editor/highcontrast.scss';
1
+ @import 'ej2-base/styles/definition/highcontrast.scss';
2
+ @import 'ej2-buttons/styles/button/highcontrast-definition.scss';
3
+ @import 'ej2-splitbuttons/styles/drop-down-button/highcontrast-definition.scss';
4
+ @import 'ej2-inputs/styles/numerictextbox/highcontrast-definition.scss';
5
+ @import 'ej2-inputs/styles/textbox/highcontrast-definition.scss';
6
+ @import 'ej2-inputs/styles/uploader/highcontrast-definition.scss';
7
+ @import 'ej2-popups/styles/tooltip/highcontrast-definition.scss';
8
+ @import 'ej2-inputs/styles/color-picker/highcontrast-definition.scss';
9
+ @import 'ej2-navigations/styles/toolbar/highcontrast-definition.scss';
10
+ @import 'ej2-popups/styles/spinner/highcontrast-definition.scss';
11
+ @import 'image-editor/highcontrast-definition.scss';
12
+ @import 'image-editor/icons/highcontrast.scss';
13
+ @import 'image-editor/all.scss';
@@ -19,3 +19,8 @@ $image-editor-bigger-slider-handler: calc(50% - 7px) !default;
19
19
  $image-editor-device-slider-handler: calc(50% - 9px) !default;
20
20
  $image-editor-finetune-value-span: 28% !default;
21
21
  $image-editor-finetune-span: 28% !default;
22
+ $image-editor-button-label: 13px !default;
23
+ $image-editor-save-dlg-big-btn-pad: 0 10px !default;
24
+ $image-editor-save-dlg-grp-btn-padding: 0 12px !default;
25
+ $image-editor-save-dlg-dev-grp-btn-padding: 0 15px !default;
26
+ $image-editor-icon-button: 3px !default;
@@ -19,3 +19,8 @@ $image-editor-bigger-slider-handler: calc(50% - 7px) !default;
19
19
  $image-editor-device-slider-handler: calc(50% - 7px) !default;
20
20
  $image-editor-finetune-value-span: 31% !default;
21
21
  $image-editor-finetune-span: 31% !default;
22
+ $image-editor-save-dlg-big-btn-pad: 0 10px !default;
23
+ $image-editor-save-dlg-grp-btn-padding: 0 12px !default;
24
+ $image-editor-save-dlg-dev-grp-btn-padding: 0 12px !default;
25
+ $image-editor-button-label: 14.2px !default;
26
+ $image-editor-icon-button: 3px !default;
@@ -19,3 +19,8 @@ $image-editor-bigger-slider-handler: calc(50% - 7px) !default;
19
19
  $image-editor-device-slider-handler: calc(50% - 7px) !default;
20
20
  $image-editor-finetune-value-span: 31% !default;
21
21
  $image-editor-finetune-span: 31% !default;
22
+ $image-editor-button-label: 14px !default;
23
+ $image-editor-save-dlg-big-btn-pad: 0 10px !default;
24
+ $image-editor-save-dlg-grp-btn-padding: 0 12px !default;
25
+ $image-editor-save-dlg-dev-grp-btn-padding: 0 12px !default;
26
+ $image-editor-icon-button: 2px !default;
@@ -19,3 +19,8 @@ $image-editor-bigger-slider-handler: calc(50% - 7px) !default;
19
19
  $image-editor-device-slider-handler: calc(50% - 7px) !default;
20
20
  $image-editor-finetune-value-span: 31% !default;
21
21
  $image-editor-finetune-span: 31% !default;
22
+ $image-editor-button-label: 14.5px !default;
23
+ $image-editor-save-dlg-big-btn-pad: 4px 9px !default;
24
+ $image-editor-save-dlg-grp-btn-padding: 4px 12px !default;
25
+ $image-editor-save-dlg-dev-grp-btn-padding: 4px 12px !default;
26
+ $image-editor-icon-button: 2px !default;
@@ -19,3 +19,8 @@ $image-editor-bigger-slider-handler: calc(50% - 6px) !default;
19
19
  $image-editor-device-slider-handler: calc(50% - 8px) !default;
20
20
  $image-editor-finetune-value-span: 29% !default;
21
21
  $image-editor-finetune-span: 29% !default;
22
+ $image-editor-save-dlg-big-btn-pad: 4px 15px !default;
23
+ $image-editor-save-dlg-grp-btn-padding: 4px 12px !default;
24
+ $image-editor-save-dlg-dev-grp-btn-padding: 6px 13px !default;
25
+ $image-editor-button-label: 15px !default;
26
+ $image-editor-icon-button: 4px !default;
@@ -0,0 +1,26 @@
1
+ $image-editor-background: $border-light !default;
2
+ $image-editor-border: 1px solid $content-bg-color-alt2 !default;
3
+ $image-editor-toolbar-icon-color: $icon-color !default;
4
+ $img-editor-cp-preview-border-bottom-color: $black !default;
5
+ $image-editor-icon-sel-bg-color: $secondary-bg-color-focus !default;
6
+ $image-editor-ddbtn-margin-top: -1px !default;
7
+ $image-editor-tbar-height: 40px !default;
8
+ $image-editor-bigger-tbar-height: 46px !default;
9
+ $image-editor-tbar-btn-fontsize: $text-lg !default;
10
+ $image-editor-bigger-tbar-btn-fontsize: $text-xl !default;
11
+ $image-editor-contextual-toolbar: $content-bg-color-alt1 !default;
12
+ $image-editor-drop-border: 2px dashed $icon-color !default;
13
+ $image-editor-dropdown-btn-preview-top: -4px !default;
14
+ $image-editor-dropdown-btn-preview-left: -4px !default;
15
+ $image-editor-bigger-dropdown-btn-preview-top: -4px !default;
16
+ $image-editor-bigger-dropdown-btn-preview-left: -4px !default;
17
+ $image-editor-slider-handler: calc(50% - 5px) !default;
18
+ $image-editor-bigger-slider-handler: calc(50% - 6px) !default;
19
+ $image-editor-device-slider-handler: calc(50% - 8px) !default;
20
+ $image-editor-finetune-value-span: 29% !default;
21
+ $image-editor-finetune-span: 29% !default;
22
+ $image-editor-button-label: 13px !default;
23
+ $image-editor-save-dlg-big-btn-pad: 4px 15px !default;
24
+ $image-editor-save-dlg-grp-btn-padding: 4px 12px !default;
25
+ $image-editor-save-dlg-dev-grp-btn-padding: 6px 13px !default;
26
+ $image-editor-icon-button: 4px !default;
@@ -19,3 +19,8 @@ $image-editor-bigger-slider-handler: calc(50% - 9px) !default;
19
19
  $image-editor-device-slider-handler: calc(50% - 9px) !default;
20
20
  $image-editor-finetune-value-span: 29% !default;
21
21
  $image-editor-finetune-span: 29% !default;
22
+ $image-editor-button-label: 13px !default;
23
+ $image-editor-save-dlg-big-btn-pad: 2px 11px !default;
24
+ $image-editor-save-dlg-grp-btn-padding: 2px 10px !default;
25
+ $image-editor-save-dlg-dev-grp-btn-padding: 2px 8px !default;
26
+ $image-editor-icon-button: 4px !default;
@@ -19,3 +19,8 @@ $image-editor-bigger-slider-handler: calc(50% - 9px) !default;
19
19
  $image-editor-device-slider-handler: calc(50% - 9px) !default;
20
20
  $image-editor-finetune-value-span: 29% !default;
21
21
  $image-editor-finetune-span: 29% !default;
22
+ $image-editor-button-label: 13px !default;
23
+ $image-editor-save-dlg-big-btn-pad: 2px 11px !default;
24
+ $image-editor-save-dlg-grp-btn-padding: 2px 10px !default;
25
+ $image-editor-save-dlg-dev-grp-btn-padding: 2px 8px !default;
26
+ $image-editor-icon-button: 4px !default;
@@ -19,3 +19,8 @@ $image-editor-bigger-slider-handler: calc(50% - 8px) !default;
19
19
  $image-editor-device-slider-handler: calc(50% - 8px) !default;
20
20
  $image-editor-finetune-value-span: 29% !default;
21
21
  $image-editor-finetune-span: 29% !default;
22
+ $image-editor-button-label: 11.9px !default;
23
+ $image-editor-save-dlg-big-btn-pad: 4px 15px !default;
24
+ $image-editor-save-dlg-grp-btn-padding: 4px 11px !default;
25
+ $image-editor-save-dlg-dev-grp-btn-padding: 7px 10px !default;
26
+ $image-editor-icon-button: 5px !default;