@syncfusion/ej2-image-editor 25.2.4 → 26.1.38

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 +2691 -830
  5. package/dist/es6/ej2-image-editor.es2015.js.map +1 -1
  6. package/dist/es6/ej2-image-editor.es5.js +2788 -887
  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 +198 -83
  16. package/src/image-editor/action/export.d.ts +3 -0
  17. package/src/image-editor/action/export.js +99 -41
  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 +385 -53
  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 +1852 -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 +355 -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 +1852 -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 -289
@@ -44,7 +44,7 @@
44
44
  --color-sf-on-warning: 99, 52, 0;
45
45
  --color-sf-on-warning-container: 255, 220, 193;
46
46
  --color-sf-spreadsheet-gridline: 231, 224, 236;
47
- --color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
47
+ --color-sf-shadow-focus-ring1: 0 0 0 1px #000, 0 0 0 3px #fff;
48
48
  --color-sf-success-text: 0, 0, 0;
49
49
  --color-sf-warning-text: 0, 0, 0;
50
50
  --color-sf-info-text: 0, 0, 0;
@@ -53,22 +53,46 @@
53
53
  --color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
54
54
  }
55
55
 
56
- /* stylelint-disable-line no-empty-source */ /*! Toolbar's material3 theme wise override definitions and variables */
56
+ /* stylelint-disable-line no-empty-source */
57
57
  /* stylelint-disable */
58
58
  /* stylelint-disable property-no-vendor-prefix */
59
+ @-webkit-keyframes material-spinner-rotate {
60
+ 0% {
61
+ -webkit-transform: rotate(0deg);
62
+ transform: rotate(0deg);
63
+ }
64
+ 100% {
65
+ -webkit-transform: rotate(360deg);
66
+ transform: rotate(360deg);
67
+ }
68
+ }
59
69
  @keyframes material-spinner-rotate {
60
70
  0% {
71
+ -webkit-transform: rotate(0deg);
72
+ transform: rotate(0deg);
73
+ }
74
+ 100% {
75
+ -webkit-transform: rotate(360deg);
76
+ transform: rotate(360deg);
77
+ }
78
+ }
79
+ @-webkit-keyframes fabric-spinner-rotate {
80
+ 0% {
81
+ -webkit-transform: rotate(0deg);
61
82
  transform: rotate(0deg);
62
83
  }
63
84
  100% {
85
+ -webkit-transform: rotate(360deg);
64
86
  transform: rotate(360deg);
65
87
  }
66
88
  }
67
89
  @keyframes fabric-spinner-rotate {
68
90
  0% {
91
+ -webkit-transform: rotate(0deg);
69
92
  transform: rotate(0deg);
70
93
  }
71
94
  100% {
95
+ -webkit-transform: rotate(360deg);
72
96
  transform: rotate(360deg);
73
97
  }
74
98
  }
@@ -106,10 +130,7 @@
106
130
  content: "\e772";
107
131
  }
108
132
  .e-image-editor .e-btn-save::before {
109
- content: "\e735";
110
- }
111
- .e-image-editor .e-custom::before {
112
- content: "\e8a9";
133
+ content: "\e7c8";
113
134
  }
114
135
  .e-image-editor .e-close::before {
115
136
  content: "\e7e7";
@@ -126,163 +147,108 @@
126
147
  .e-image-editor .e-fill.e-template .e-caret::before {
127
148
  content: "\e783";
128
149
  }
129
- .e-image-editor .e-custom::before {
130
- content: "\e8a9";
131
- }
132
- .e-image-editor .e-circle::before {
133
- content: "\e7ca";
134
- }
135
- .e-image-editor .e-square::before {
136
- content: "\e8aa";
137
- }
138
- .e-image-editor .e-custom-a::before {
139
- content: "\e8ab";
140
- }
141
- .e-image-editor .e-custom-b::before {
142
- content: "\e8ac";
143
- }
144
- .e-image-editor .e-custom-c::before {
145
- content: "\e8ad";
146
- }
147
- .e-image-editor .e-custom-d::before {
148
- content: "\e8ae";
149
- }
150
- .e-image-editor .e-custom-e::before {
151
- content: "\e8af";
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
- }
168
- .e-image-editor .e-horizontal-flip::before {
169
- content: "\e8a3";
170
- }
171
- .e-image-editor .e-vertical-flip::before {
172
- content: "\e8a4";
173
- }
174
- .e-image-editor .e-clock-wise::before {
175
- content: "\e8a6";
176
- }
177
- .e-image-editor .e-anti-clock-wise::before {
178
- content: "\e8a5";
179
- }
180
- .e-image-editor .e-rectangle::before {
181
- content: "\e723";
182
- }
183
- .e-image-editor .e-circle::before {
184
- content: "\e7ca";
185
- }
186
- .e-image-editor .e-triangle::before {
187
- content: "\e89c";
188
- }
189
- .e-image-editor .e-line::before {
190
- content: "\e819";
191
- }
192
- .e-image-editor .e-add-text::before {
193
- content: "\e82e";
194
- }
195
- .e-image-editor .e-free-pen::before {
196
- content: "\e7db";
197
- }
198
- .e-image-editor .e-arrow::before {
199
- content: "\e669";
200
- }
201
- .e-image-editor .e-path::before {
202
- content: "\e931";
203
- }
204
150
 
151
+ .e-image-editor .e-custom::before,
205
152
  .e-dropdown-popup.e-image-popup .e-custom::before {
206
153
  content: "\e8a9";
207
154
  }
155
+ .e-image-editor .e-circle::before,
208
156
  .e-dropdown-popup.e-image-popup .e-circle::before {
209
157
  content: "\e7ca";
210
158
  }
159
+ .e-image-editor .e-square::before,
211
160
  .e-dropdown-popup.e-image-popup .e-square::before {
212
161
  content: "\e8aa";
213
162
  }
163
+ .e-image-editor .e-custom-a::before,
214
164
  .e-dropdown-popup.e-image-popup .e-custom-a::before {
215
165
  content: "\e8ab";
216
166
  }
167
+ .e-image-editor .e-custom-b::before,
217
168
  .e-dropdown-popup.e-image-popup .e-custom-b::before {
218
169
  content: "\e8ac";
219
170
  }
171
+ .e-image-editor .e-custom-c::before,
220
172
  .e-dropdown-popup.e-image-popup .e-custom-c::before {
221
173
  content: "\e8ad";
222
174
  }
175
+ .e-image-editor .e-custom-d::before,
223
176
  .e-dropdown-popup.e-image-popup .e-custom-d::before {
224
177
  content: "\e8ae";
225
178
  }
179
+ .e-image-editor .e-custom-e::before,
226
180
  .e-dropdown-popup.e-image-popup .e-custom-e::before {
227
181
  content: "\e8af";
228
182
  }
183
+ .e-image-editor .e-custom-f::before,
229
184
  .e-dropdown-popup.e-image-popup .e-custom-f::before {
230
185
  content: "\e8dd";
231
186
  }
187
+ .e-image-editor .e-custom-g::before,
232
188
  .e-dropdown-popup.e-image-popup .e-custom-g::before {
233
189
  content: "\e8de";
234
190
  }
191
+ .e-image-editor .e-custom-h::before,
235
192
  .e-dropdown-popup.e-image-popup .e-custom-h::before {
236
193
  content: "\e8df";
237
194
  }
195
+ .e-image-editor .e-custom-i::before,
238
196
  .e-dropdown-popup.e-image-popup .e-custom-i::before {
239
197
  content: "\e8e0";
240
198
  }
199
+ .e-image-editor .e-custom-j::before,
241
200
  .e-dropdown-popup.e-image-popup .e-custom-j::before {
242
201
  content: "\e8e1";
243
202
  }
203
+ .e-image-editor .e-rectangle::before,
244
204
  .e-dropdown-popup.e-image-popup .e-rectangle::before {
245
205
  content: "\e723";
246
206
  }
247
- .e-dropdown-popup.e-image-popup .e-circle::before {
248
- content: "\e7ca";
249
- }
207
+ .e-image-editor .e-triangle::before,
250
208
  .e-dropdown-popup.e-image-popup .e-triangle::before {
251
209
  content: "\e89c";
252
210
  }
211
+ .e-image-editor .e-line::before,
253
212
  .e-dropdown-popup.e-image-popup .e-line::before {
254
213
  content: "\e819";
255
214
  }
215
+ .e-image-editor .e-free-pen::before,
256
216
  .e-dropdown-popup.e-image-popup .e-free-pen::before {
257
217
  content: "\e7db";
258
218
  }
219
+ .e-image-editor .e-horizontal-flip::before,
259
220
  .e-dropdown-popup.e-image-popup .e-horizontal-flip::before {
260
221
  content: "\e8a3";
261
222
  }
223
+ .e-image-editor .e-vertical-flip::before,
262
224
  .e-dropdown-popup.e-image-popup .e-vertical-flip::before {
263
225
  content: "\e8a4";
264
226
  }
265
- .e-dropdown-popup.e-image-popup .e-custom::before {
266
- content: "\e8a9";
267
- }
227
+ .e-image-editor .e-clock-wise::before,
268
228
  .e-dropdown-popup.e-image-popup .e-clock-wise::before {
269
229
  content: "\e8a6";
270
230
  }
231
+ .e-image-editor .e-anti-clock-wise::before,
271
232
  .e-dropdown-popup.e-image-popup .e-anti-clock-wise::before {
272
233
  content: "\e8a5";
273
234
  }
235
+ .e-image-editor .e-add-text::before,
274
236
  .e-dropdown-popup.e-image-popup .e-add-text::before {
275
237
  content: "\e82e";
276
238
  }
239
+ .e-image-editor .e-arrow::before,
277
240
  .e-dropdown-popup.e-image-popup .e-arrow::before {
278
241
  content: "\e669";
279
242
  }
243
+ .e-image-editor .e-path::before,
280
244
  .e-dropdown-popup.e-image-popup .e-path::before {
281
245
  content: "\e931";
282
246
  }
283
247
 
284
248
  .e-ie-toolbar-upload-div.e-hide,
285
- .e-ie-toolbar-upload-btn.e-hide {
249
+ .e-ie-toolbar-upload-btn.e-hide,
250
+ .e-ie-img-quality-slider,
251
+ .e-ie-img-quality-name .e-hide {
286
252
  display: none;
287
253
  }
288
254
 
@@ -299,15 +265,12 @@
299
265
  .e-device.e-image-editor .e-ie-straighten-value-span {
300
266
  margin-left: 15px !important; /* stylelint-disable-line declaration-no-important */
301
267
  }
302
- .e-device.e-image-editor .e-hscroll .e-scroll-nav.e-scroll-right-nav {
268
+ .e-device.e-image-editor .e-hscroll .e-scroll-nav.e-scroll-right-nav, .e-device.e-image-editor .e-scroll-right-overlay {
303
269
  display: none !important; /* stylelint-disable-line declaration-no-important */
304
270
  }
305
271
  .e-device.e-image-editor .e-hscroll.e-scroll-device {
306
272
  padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
307
273
  }
308
- .e-device.e-image-editor .e-scroll-right-overlay {
309
- display: none !important; /* stylelint-disable-line declaration-no-important */
310
- }
311
274
  .e-device.e-image-editor .e-contextual-toolbar-wrapper {
312
275
  border-top: 1px solid rgba(var(--color-sf-outline-variant));
313
276
  border-bottom: none !important; /* stylelint-disable-line declaration-no-important */
@@ -321,6 +284,16 @@
321
284
  .e-device.e-image-editor .e-bottom-toolbar .e-toolbar, .e-device.e-image-editor .e-bottom-toolbar-area .e-toolbar {
322
285
  border-bottom: none;
323
286
  }
287
+ .e-device.e-image-editor .e-ie-img-save-name {
288
+ width: calc(65% - 13px) !important; /* stylelint-disable-line declaration-no-important */
289
+ }
290
+ .e-device.e-image-editor .e-ie-img-size-value-span {
291
+ margin-left: calc(100% - 145px) !important; /* stylelint-disable-line declaration-no-important */
292
+ }
293
+ .e-device.e-image-editor .e-ie-quality-option-container .e-slider-container {
294
+ margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
295
+ height: auto !important; /* stylelint-disable-line declaration-no-important */
296
+ }
324
297
 
325
298
  .e-bigger .e-image-editor .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle,
326
299
  .e-image-editor.e-bigger .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle {
@@ -331,11 +304,8 @@
331
304
  height: 56px !important; /* stylelint-disable-line declaration-no-important */
332
305
  min-height: 56px !important; /* stylelint-disable-line declaration-no-important */
333
306
  }
334
- .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-height span,
335
- .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-height span {
336
- font-size: 16px;
337
- }
338
- .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-width span,
307
+ .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,
308
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-height span,
339
309
  .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-width span {
340
310
  font-size: 16px;
341
311
  }
@@ -393,6 +363,10 @@
393
363
  .e-image-editor.e-bigger .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
394
364
  line-height: 1;
395
365
  }
366
+ .e-bigger .e-image-editor .e-ie-save-dialog .e-ie-img-save-dlg .e-btn,
367
+ .e-image-editor.e-bigger .e-ie-save-dialog .e-ie-img-save-dlg .e-btn {
368
+ margin-top: 5px !important; /* stylelint-disable-line declaration-no-important */
369
+ }
396
370
 
397
371
  .e-image-editor {
398
372
  border: 1px solid rgba(var(--color-sf-outline-variant));
@@ -515,7 +489,6 @@
515
489
  height: inherit !important; /* stylelint-disable-line declaration-no-important */
516
490
  }
517
491
  .e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-toolbar-item {
518
- display: -ms-inline-grid;
519
492
  display: inline-grid;
520
493
  }
521
494
  .e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-toolbar-item > span {
@@ -525,13 +498,14 @@
525
498
  }
526
499
  .e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-dropdown-btn {
527
500
  margin: 0 auto;
501
+ width: -webkit-max-content;
502
+ width: -moz-max-content;
528
503
  width: max-content;
529
504
  }
530
505
  .e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-toolbar {
531
506
  height: inherit !important; /* stylelint-disable-line declaration-no-important */
532
507
  }
533
508
  .e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-toolbar-item:not(.e-hidden) {
534
- display: -ms-inline-grid;
535
509
  display: inline-grid;
536
510
  }
537
511
  .e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-toolbar-item > span {
@@ -541,6 +515,8 @@
541
515
  }
542
516
  .e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-dropdown-btn {
543
517
  margin: 0 auto;
518
+ width: -webkit-max-content;
519
+ width: -moz-max-content;
544
520
  width: max-content;
545
521
  }
546
522
  .e-image-editor .e-contextual-toolbar-wrapper.e-hide {
@@ -566,6 +542,16 @@
566
542
  width: 16px !important; /* stylelint-disable-line declaration-no-important */
567
543
  }
568
544
 
545
+ .e-ie-img-save-dlg .e-btn {
546
+ background: transparent;
547
+ -webkit-box-shadow: none;
548
+ box-shadow: none;
549
+ border: none;
550
+ border-bottom: 1px solid;
551
+ border-radius: 0;
552
+ border-color: rgba(var(--color-sf-outline));
553
+ }
554
+
569
555
  .e-ie-straighten-value-span,
570
556
  .e-ie-straighten-span,
571
557
  .e-ie-toolbar-straighten {
@@ -635,10 +621,226 @@
635
621
  margin-left: calc(50% - 80px) !important; /* stylelint-disable-line declaration-no-important */
636
622
  }
637
623
 
624
+ .e-ie-quality-slider.e-control-wrapper.e-slider-container.e-horizontal,
625
+ .e-ie-quality-option-container .e-slider-container.e-horizontal {
626
+ height: 28px;
627
+ }
628
+
629
+ .e-ie-quality-slider.e-control-wrapper.e-slider-container.e-horizontal .e-slider {
630
+ top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
631
+ }
632
+
633
+ .e-ie-quality-slider.e-slider-container + .e-ie-img-icon-button,
634
+ .e-ie-quality-option-container .e-slider-container.e-horizontal + .e-ie-img-icon-button {
635
+ margin-left: 20px !important; /* stylelint-disable-line declaration-no-important */
636
+ }
637
+
638
+ .e-ie-img-size {
639
+ margin: 10px 10px 0;
640
+ }
641
+
642
+ .e-ie-dlg-img-content {
643
+ width: 40%;
644
+ height: 100%;
645
+ margin-right: 5%;
646
+ display: -webkit-box;
647
+ display: -ms-flexbox;
648
+ display: flex;
649
+ -webkit-box-orient: vertical;
650
+ -webkit-box-direction: normal;
651
+ -ms-flex-direction: column;
652
+ flex-direction: column;
653
+ -webkit-box-pack: center;
654
+ -ms-flex-pack: center;
655
+ justify-content: center;
656
+ -webkit-box-align: center;
657
+ -ms-flex-align: center;
658
+ align-items: center;
659
+ }
660
+
661
+ .e-ie-img-input {
662
+ width: 90% !important; /* stylelint-disable-line declaration-no-important */
663
+ }
664
+
665
+ .e-ie-img-dlg-canvas {
666
+ width: 100%;
667
+ height: 100%;
668
+ }
669
+
670
+ .e-ie-img-size {
671
+ font-size: 14px;
672
+ display: -webkit-box;
673
+ display: -ms-flexbox;
674
+ display: flex;
675
+ -webkit-box-orient: vertical;
676
+ -webkit-box-direction: normal;
677
+ -ms-flex-direction: column;
678
+ flex-direction: column;
679
+ -webkit-box-pack: start;
680
+ -ms-flex-pack: start;
681
+ justify-content: flex-start;
682
+ }
683
+
684
+ .e-ie-dlg-right-content {
685
+ width: 60%;
686
+ }
687
+
688
+ .e-ie-img-save-name {
689
+ display: inline-block;
690
+ margin-right: 10px;
691
+ width: calc(71% - 13px);
692
+ }
693
+
694
+ .e-ie-img-save-dlg {
695
+ display: inline-block;
696
+ width: 90px;
697
+ }
698
+
699
+ .e-ie-img-save-dlg .e-btn {
700
+ width: 100%;
701
+ }
702
+
703
+ .e-ie-img-label-name {
704
+ margin-bottom: 5px;
705
+ display: block;
706
+ }
707
+
708
+ .e-ie-img-quality-name {
709
+ position: relative;
710
+ width: 100% !important; /* stylelint-disable-line declaration-no-important */
711
+ }
712
+
713
+ .e-ie-quality-info {
714
+ margin-bottom: 0;
715
+ margin-top: 0;
716
+ }
717
+
718
+ .e-ie-quality-span {
719
+ margin-left: 5px;
720
+ display: -webkit-inline-box;
721
+ display: -ms-inline-flexbox;
722
+ display: inline-flex;
723
+ }
724
+
725
+ .e-ie-img-quality-label {
726
+ margin-bottom: 3%;
727
+ margin-top: 5%;
728
+ display: -webkit-inline-box;
729
+ display: -ms-inline-flexbox;
730
+ display: inline-flex;
731
+ }
732
+
733
+ .e-ie-img-quality-size {
734
+ margin-top: 5%;
735
+ display: block;
736
+ }
737
+
738
+ .e-ie-img-size-value-span {
739
+ width: 8%;
740
+ text-transform: capitalize;
741
+ margin-left: calc(100% - 194px);
742
+ margin-top: 4px;
743
+ margin-left: calc(100% - 185px);
744
+ }
745
+
746
+ .e-device.e-ie-save-dialog .e-ie-img-size-value-span {
747
+ margin-left: calc(100% - 145px) !important; /* stylelint-disable-line declaration-no-important */
748
+ }
749
+
750
+ .e-bigger .e-ie-save-dialog .e-ie-img-save-name {
751
+ width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
752
+ }
753
+
754
+ .e-device.e-ie-save-dialog .e-ie-img-save-name {
755
+ width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
756
+ }
757
+
758
+ .e-ie-img-icon-button {
759
+ margin-left: 10px;
760
+ width: -webkit-max-content;
761
+ width: -moz-max-content;
762
+ width: max-content;
763
+ margin-bottom: 3px;
764
+ }
765
+
766
+ .e-bigger .e-image-editor .e-dlg-container .e-dialog,
767
+ .e-bigger.e-image-editor .e-dlg-container .e-dialog {
768
+ width: 656px;
769
+ }
770
+
771
+ .e-bigger .e-ie-img-save-dlg {
772
+ width: 106px;
773
+ }
774
+
775
+ .e-bigger .e-image-editor .e-control-wrapper.e-slider-container.e-horizontal,
776
+ .e-bigger.e-image-editor .e-control-wrapper.e-slider-container.e-horizontal {
777
+ width: 217px;
778
+ }
779
+
780
+ .e-ie-quality-option-container .e-btn-group .e-btn {
781
+ padding-left: 13px;
782
+ padding-right: 13px;
783
+ }
784
+
785
+ .e-bigger .e-dialog.e-blr-ie-save-dialog:not(.e-device) {
786
+ width: 620px !important; /* stylelint-disable-line declaration-no-important */
787
+ }
788
+ .e-bigger .e-dialog.e-blr-ie-save-dialog:not(.e-device) .e-ie-img-icon-button {
789
+ padding: 8px 11px;
790
+ }
791
+ .e-blr-ie-save-dialog .e-ie-img-save-name {
792
+ width: calc(67% - 13px);
793
+ }
794
+ .e-blr-ie-save-dialog .e-ie-quality-custom {
795
+ width: calc(65% - 13px);
796
+ }
797
+ .e-blr-ie-save-dialog .e-ie-quality-option-container .e-ie-img-icon-button {
798
+ margin-left: 20px;
799
+ }
800
+ .e-blr-ie-save-dialog .e-ie-quality-option-container .e-slider-container.e-horizontal {
801
+ margin-top: 5px;
802
+ }
803
+ .e-blr-ie-save-dialog .e-ie-img-size-value-span {
804
+ vertical-align: middle;
805
+ margin-left: calc(50% - 55px);
806
+ }
807
+ .e-blr-ie-save-dialog .e-btn-group .e-btn {
808
+ padding: 8px 10.5px;
809
+ }
810
+ .e-blr-ie-save-dialog.e-device .e-ie-img-save-name {
811
+ width: calc(64% - 15px) !important; /* stylelint-disable-line declaration-no-important */
812
+ }
813
+ .e-blr-ie-save-dialog.e-device .e-ie-quality-custom {
814
+ width: 75% !important; /* stylelint-disable-line declaration-no-important */
815
+ }
816
+ .e-blr-ie-save-dialog.e-device .e-ie-quality-option-container .e-ie-img-icon-button {
817
+ margin-left: 0;
818
+ }
819
+ .e-blr-ie-save-dialog.e-device .e-slider-container {
820
+ margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
821
+ height: 28px !important; /* stylelint-disable-line declaration-no-important */
822
+ }
823
+ .e-blr-ie-save-dialog.e-device .e-ie-img-size-value-span {
824
+ margin-left: calc(75% - 100px) !important; /* stylelint-disable-line declaration-no-important */
825
+ }
826
+ .e-blr-ie-save-dialog.e-device .e-btn-group .e-btn {
827
+ padding: 11px 12px;
828
+ }
829
+ .e-bigger .e-ie-save-dialog .e-ie-img-save-name {
830
+ width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
831
+ }
832
+
833
+ .e-ie-save-dialog .e-ie-quality-slider.e-slider-container + .e-ie-img-icon-button,
834
+ .e-ie-save-dialog .e-ie-quality-option-container .e-slider-container.e-horizontal + .e-ie-img-icon-button {
835
+ margin-left: 30px !important; /* stylelint-disable-line declaration-no-important */
836
+ }
837
+
638
838
  .e-image-editor {
839
+ background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.14)), to(rgba(var(--color-sf-primary), 0.14))), rgba(var(--color-sf-surface));
639
840
  background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.14), rgba(var(--color-sf-primary), 0.14)), rgba(var(--color-sf-surface));
640
841
  }
641
842
  .e-image-editor .e-contextual-toolbar-wrapper {
843
+ background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.08)), to(rgba(var(--color-sf-primary), 0.08))), rgba(var(--color-sf-surface));
642
844
  background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
643
845
  }
644
846
  .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 {
@@ -648,32 +850,40 @@
648
850
  color: rgba(var(--color-sf-on-surface-variant));
649
851
  }
650
852
  .e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn.e-selected-btn {
853
+ background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.16)), to(rgba(var(--color-sf-primary), 0.16))), rgba(var(--color-sf-surface)) !important;
651
854
  background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.16), rgba(var(--color-sf-primary), 0.16)), rgba(var(--color-sf-surface)) !important; /* stylelint-disable-line declaration-no-important */
652
855
  }
653
856
  .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn {
654
857
  background: inherit;
655
858
  border: none;
656
859
  margin-top: 0;
860
+ background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.08)), to(rgba(var(--color-sf-primary), 0.08))), rgba(var(--color-sf-surface));
657
861
  background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
658
862
  color: rgba(var(--color-sf-on-surface-variant));
659
- box-shadow: none;
863
+ -webkit-box-shadow: none;
864
+ box-shadow: none;
660
865
  }
661
866
  .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-caret-hide {
662
867
  display: none !important; /* stylelint-disable-line declaration-no-important */
663
868
  }
664
869
  .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
665
870
  background: rgba(var(--color-sf-on-surface), 0.05);
666
- box-shadow: none;
871
+ -webkit-box-shadow: none;
872
+ box-shadow: none;
667
873
  color: rgba(var(--color-sf-on-surface-variant));
668
874
  }
669
875
  .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
876
+ background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-on-surface), 0.08)), to(rgba(var(--color-sf-on-surface), 0.08))), rgba(var(--color-sf-surface));
670
877
  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));
671
- box-shadow: none;
878
+ -webkit-box-shadow: none;
879
+ box-shadow: none;
672
880
  color: rgba(var(--color-sf-on-surface));
673
881
  }
674
882
  .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
883
+ background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-on-surface), 0.12)), to(rgba(var(--color-sf-on-surface), 0.12))), rgba(var(--color-sf-surface));
675
884
  background: linear-gradient(0deg, rgba(var(--color-sf-on-surface), 0.12), rgba(var(--color-sf-on-surface), 0.12)), rgba(var(--color-sf-surface));
676
- box-shadow: none;
885
+ -webkit-box-shadow: none;
886
+ box-shadow: none;
677
887
  color: rgba(var(--color-sf-on-surface));
678
888
  }
679
889
  .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 {
@@ -693,5 +903,6 @@
693
903
  }
694
904
 
695
905
  .e-dropdown-popup .e-selected-btn {
906
+ background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.16)), to(rgba(var(--color-sf-primary), 0.16))), rgba(var(--color-sf-surface)) !important;
696
907
  background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.16), rgba(var(--color-sf-primary), 0.16)), rgba(var(--color-sf-surface)) !important; /* stylelint-disable-line declaration-no-important */
697
908
  }