@syncfusion/ej2-image-editor 27.2.3 → 28.1.33

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 (95) hide show
  1. package/README.md +2 -2
  2. package/dist/ej2-image-editor.umd.min.js +3 -3
  3. package/dist/ej2-image-editor.umd.min.js.map +1 -1
  4. package/dist/es6/ej2-image-editor.es2015.js +377 -52
  5. package/dist/es6/ej2-image-editor.es2015.js.map +1 -1
  6. package/dist/es6/ej2-image-editor.es5.js +385 -52
  7. package/dist/es6/ej2-image-editor.es5.js.map +1 -1
  8. package/dist/global/ej2-image-editor.min.js +3 -3
  9. package/dist/global/ej2-image-editor.min.js.map +1 -1
  10. package/dist/global/index.d.ts +2 -2
  11. package/package.json +13 -13
  12. package/src/image-editor/action/draw.d.ts +4 -0
  13. package/src/image-editor/action/draw.js +97 -11
  14. package/src/image-editor/action/export.js +1 -1
  15. package/src/image-editor/action/shape.d.ts +1 -1
  16. package/src/image-editor/action/shape.js +22 -15
  17. package/src/image-editor/action/transform.js +1 -0
  18. package/src/image-editor/base/enum.d.ts +8 -2
  19. package/src/image-editor/base/enum.js +6 -0
  20. package/src/image-editor/base/image-editor-model.d.ts +51 -0
  21. package/src/image-editor/base/image-editor.d.ts +79 -2
  22. package/src/image-editor/base/image-editor.js +223 -12
  23. package/src/image-editor/renderer/toolbar.js +35 -12
  24. package/styles/bds-lite.css +863 -0
  25. package/styles/bds-lite.scss +13 -0
  26. package/styles/bds.css +969 -0
  27. package/styles/bds.scss +14 -0
  28. package/styles/bootstrap-dark-lite.css +5 -3
  29. package/styles/bootstrap-dark.css +5 -3
  30. package/styles/bootstrap-lite.css +5 -3
  31. package/styles/bootstrap.css +5 -3
  32. package/styles/bootstrap4-lite.css +5 -3
  33. package/styles/bootstrap4.css +5 -3
  34. package/styles/bootstrap5-dark-lite.css +5 -3
  35. package/styles/bootstrap5-dark.css +5 -3
  36. package/styles/bootstrap5-lite.css +5 -3
  37. package/styles/bootstrap5.3-lite.css +5 -3
  38. package/styles/bootstrap5.3.css +5 -3
  39. package/styles/bootstrap5.css +5 -3
  40. package/styles/fabric-dark-lite.css +5 -3
  41. package/styles/fabric-dark.css +5 -3
  42. package/styles/fabric-lite.css +5 -3
  43. package/styles/fabric.css +5 -3
  44. package/styles/fluent-dark-lite.css +5 -3
  45. package/styles/fluent-dark.css +5 -3
  46. package/styles/fluent-lite.css +5 -3
  47. package/styles/fluent.css +5 -3
  48. package/styles/fluent2-lite.css +5 -3
  49. package/styles/fluent2.css +5 -3
  50. package/styles/highcontrast-light-lite.css +5 -3
  51. package/styles/highcontrast-light.css +5 -3
  52. package/styles/highcontrast-lite.css +5 -3
  53. package/styles/highcontrast.css +5 -3
  54. package/styles/image-editor/_layout.scss +13 -3
  55. package/styles/image-editor/_tailwind3-definition.scss +29 -0
  56. package/styles/image-editor/bds.css +969 -0
  57. package/styles/image-editor/bds.scss +14 -0
  58. package/styles/image-editor/bootstrap-dark.css +5 -3
  59. package/styles/image-editor/bootstrap.css +5 -3
  60. package/styles/image-editor/bootstrap4.css +5 -3
  61. package/styles/image-editor/bootstrap5-dark.css +5 -3
  62. package/styles/image-editor/bootstrap5.3.css +5 -3
  63. package/styles/image-editor/bootstrap5.css +5 -3
  64. package/styles/image-editor/fabric-dark.css +5 -3
  65. package/styles/image-editor/fabric.css +5 -3
  66. package/styles/image-editor/fluent-dark.css +5 -3
  67. package/styles/image-editor/fluent.css +5 -3
  68. package/styles/image-editor/fluent2.css +5 -3
  69. package/styles/image-editor/highcontrast-light.css +5 -3
  70. package/styles/image-editor/highcontrast.css +5 -3
  71. package/styles/image-editor/icons/_tailwind3.scss +259 -0
  72. package/styles/image-editor/material-dark.css +5 -3
  73. package/styles/image-editor/material.css +5 -3
  74. package/styles/image-editor/material3-dark.css +5 -3
  75. package/styles/image-editor/material3.css +5 -3
  76. package/styles/image-editor/tailwind-dark.css +5 -3
  77. package/styles/image-editor/tailwind.css +5 -3
  78. package/styles/image-editor/tailwind3.css +860 -0
  79. package/styles/image-editor/tailwind3.scss +14 -0
  80. package/styles/material-dark-lite.css +5 -3
  81. package/styles/material-dark.css +5 -3
  82. package/styles/material-lite.css +5 -3
  83. package/styles/material.css +5 -3
  84. package/styles/material3-dark-lite.css +5 -3
  85. package/styles/material3-dark.css +5 -3
  86. package/styles/material3-lite.css +5 -3
  87. package/styles/material3.css +5 -3
  88. package/styles/tailwind-dark-lite.css +5 -3
  89. package/styles/tailwind-dark.css +5 -3
  90. package/styles/tailwind-lite.css +5 -3
  91. package/styles/tailwind.css +5 -3
  92. package/styles/tailwind3-lite.css +755 -0
  93. package/styles/tailwind3-lite.scss +13 -0
  94. package/styles/tailwind3.css +860 -0
  95. package/styles/tailwind3.scss +14 -0
@@ -0,0 +1,969 @@
1
+
2
+
3
+
4
+
5
+ /* stylelint-disable */
6
+ .e-btn.e-primary:focus {
7
+ -webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px var(--color-sf-brand-solid-shadow) !important;
8
+ box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px var(--color-sf-brand-solid-shadow) !important;
9
+ }
10
+
11
+ .e-btn.e-success:focus {
12
+ -webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(23, 177, 105, 0.24) !important;
13
+ box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(23, 177, 105, 0.24) !important;
14
+ }
15
+
16
+ .e-btn.e-info:focus {
17
+ -webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px var(--color-sf-brand-solid-shadow) !important;
18
+ box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px var(--color-sf-brand-solid-shadow) !important;
19
+ }
20
+
21
+ .e-btn.e-warning:focus {
22
+ -webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(247, 143, 8, 0.24) !important;
23
+ box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(247, 143, 8, 0.24) !important;
24
+ }
25
+
26
+ .e-btn.e-danger:focus {
27
+ -webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(240, 68, 55, 0.24) !important;
28
+ box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(240, 68, 55, 0.24) !important;
29
+ }
30
+
31
+ .e-btn.e-outline.e-info {
32
+ background: transparent !important;
33
+ border-color: var(--color-sf-utility-info-border-color) !important;
34
+ color: var(--color-sf-utility-info-text) !important;
35
+ }
36
+
37
+ .e-btn.e-outline.e-info:hover {
38
+ background: var(--color-sf-utility-info-bg-color-hover) !important;
39
+ border-color: var(--color-sf-utility-info-border-color) !important;
40
+ color: var(--color-sf-utility-info-text-hover) !important;
41
+ }
42
+
43
+ .e-btn.e-outline.e-info:active {
44
+ background: var(--color-sf-utility-info-bg-color-pressed) !important;
45
+ border-color: var(--color-sf-utility-info-border-color) !important;
46
+ color: var(--color-sf-utility-info-text-hover) !important;
47
+ }
48
+
49
+ .e-btn.e-flat.e-info {
50
+ color: var(--color-sf-utility-info-text) !important;
51
+ }
52
+
53
+ .e-bigger .e-btn,
54
+ .e-bigger .e-btn,
55
+ .e-bigger .e-css.e-btn,
56
+ .e-bigger.e-css.e-btn {
57
+ font-size: 14px;
58
+ line-height: 1.572em;
59
+ padding: 8px 15px;
60
+ border-radius: 8px !important;
61
+ font-weight: 600;
62
+ }
63
+
64
+ .e-dropdown-popup {
65
+ position: absolute;
66
+ border-radius: 8px;
67
+ margin-top: 4px;
68
+ }
69
+ .e-dropdown-popup ul {
70
+ border: 1px solid var(--color-sf-border-secondary);
71
+ border-radius: 8px;
72
+ -webkit-box-shadow: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.05);
73
+ box-shadow: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.05);
74
+ -webkit-box-sizing: border-box;
75
+ box-sizing: border-box;
76
+ font-size: 14px;
77
+ font-weight: 500;
78
+ list-style-image: none;
79
+ list-style-position: outside;
80
+ list-style-type: none;
81
+ margin: 0;
82
+ min-width: 120px;
83
+ overflow: hidden;
84
+ padding: 4px 0;
85
+ -webkit-user-select: none;
86
+ -moz-user-select: none;
87
+ -ms-user-select: none;
88
+ user-select: none;
89
+ white-space: nowrap;
90
+ }
91
+ .e-dropdown-popup ul .e-item {
92
+ cursor: pointer;
93
+ display: -webkit-box;
94
+ display: -ms-flexbox;
95
+ display: flex;
96
+ height: 32px;
97
+ line-height: 32px;
98
+ padding: 0 12px;
99
+ margin: 0 6px;
100
+ border-radius: 6px;
101
+ }
102
+ .e-dropdown-popup ul .e-item.e-url {
103
+ padding: 0;
104
+ }
105
+
106
+ /* stylelint-disable-line no-empty-source */
107
+ /* stylelint-disable */
108
+ .e-colorpicker-wrapper .e-icon-btn:disabled, .e-colorpicker-wrapper .e-icon-btn.e-disabled {
109
+ background-color: var(--color-sf-bg-disabled) !important;
110
+ }
111
+
112
+ /* stylelint-disable property-no-vendor-prefix */
113
+ @-webkit-keyframes material-spinner-rotate {
114
+ 0% {
115
+ -webkit-transform: rotate(0);
116
+ transform: rotate(0);
117
+ }
118
+ 100% {
119
+ -webkit-transform: rotate(360deg);
120
+ transform: rotate(360deg);
121
+ }
122
+ }
123
+ @keyframes material-spinner-rotate {
124
+ 0% {
125
+ -webkit-transform: rotate(0);
126
+ transform: rotate(0);
127
+ }
128
+ 100% {
129
+ -webkit-transform: rotate(360deg);
130
+ transform: rotate(360deg);
131
+ }
132
+ }
133
+ @-webkit-keyframes fabric-spinner-rotate {
134
+ 0% {
135
+ -webkit-transform: rotate(0);
136
+ transform: rotate(0);
137
+ }
138
+ 100% {
139
+ -webkit-transform: rotate(360deg);
140
+ transform: rotate(360deg);
141
+ }
142
+ }
143
+ @keyframes fabric-spinner-rotate {
144
+ 0% {
145
+ -webkit-transform: rotate(0);
146
+ transform: rotate(0);
147
+ }
148
+ 100% {
149
+ -webkit-transform: rotate(360deg);
150
+ transform: rotate(360deg);
151
+ }
152
+ }
153
+ .e-image-editor .e-upload-icon::before {
154
+ content: "\e760";
155
+ }
156
+ .e-image-editor .e-zoom-in::before {
157
+ content: "\e768";
158
+ }
159
+ .e-image-editor .e-zoom-out::before {
160
+ content: "\e81b";
161
+ }
162
+ .e-image-editor .e-pan::before {
163
+ content: "\e7b1";
164
+ }
165
+ .e-image-editor .e-select::before {
166
+ content: "\e896";
167
+ }
168
+ .e-image-editor .e-transform::before {
169
+ content: "\e8b0";
170
+ }
171
+ .e-image-editor .e-annotation::before {
172
+ content: "\e730";
173
+ }
174
+ .e-image-editor .e-shapes::before {
175
+ content: "\e728";
176
+ }
177
+ .e-image-editor .e-mouse::before {
178
+ content: "\e74e";
179
+ }
180
+ .e-image-editor .e-btn-reset::before {
181
+ content: "\e89b";
182
+ }
183
+ .e-image-editor .e-btn-save::before {
184
+ content: "\e7c8";
185
+ }
186
+ .e-image-editor .e-close::before {
187
+ content: "\e7e7";
188
+ }
189
+ .e-image-editor .e-check::before {
190
+ content: "\e8b1";
191
+ }
192
+ .e-image-editor .e-text-font-color.e-template .e-caret::before {
193
+ content: "\e76f";
194
+ }
195
+ .e-image-editor .e-stroke.e-template .e-caret::before, .e-image-editor .e-frame-stroke.e-template .e-caret::before, .e-image-editor .e-pen-stroke-color.e-template .e-caret::before {
196
+ content: "\e739";
197
+ }
198
+ .e-image-editor .e-fill.e-template .e-caret::before, .e-image-editor .e-text-background-color.e-template .e-caret::before {
199
+ content: "\e783";
200
+ }
201
+ .e-image-editor .e-stroke-text-font-color.e-template .e-caret::before {
202
+ content: "\e908";
203
+ }
204
+
205
+ .e-image-editor .e-custom::before,
206
+ .e-dropdown-popup.e-image-popup .e-custom::before {
207
+ content: "\e8a9";
208
+ }
209
+ .e-image-editor .e-circle::before,
210
+ .e-dropdown-popup.e-image-popup .e-circle::before {
211
+ content: "\e7ca";
212
+ }
213
+ .e-image-editor .e-square::before,
214
+ .e-dropdown-popup.e-image-popup .e-square::before {
215
+ content: "\e8aa";
216
+ }
217
+ .e-image-editor .e-custom-a::before,
218
+ .e-dropdown-popup.e-image-popup .e-custom-a::before {
219
+ content: "\e8ab";
220
+ }
221
+ .e-image-editor .e-custom-b::before,
222
+ .e-dropdown-popup.e-image-popup .e-custom-b::before {
223
+ content: "\e8ac";
224
+ }
225
+ .e-image-editor .e-custom-c::before,
226
+ .e-dropdown-popup.e-image-popup .e-custom-c::before {
227
+ content: "\e8ad";
228
+ }
229
+ .e-image-editor .e-custom-d::before,
230
+ .e-dropdown-popup.e-image-popup .e-custom-d::before {
231
+ content: "\e8ae";
232
+ }
233
+ .e-image-editor .e-custom-e::before,
234
+ .e-dropdown-popup.e-image-popup .e-custom-e::before {
235
+ content: "\e8af";
236
+ }
237
+ .e-image-editor .e-custom-f::before,
238
+ .e-dropdown-popup.e-image-popup .e-custom-f::before {
239
+ content: "\e8dd";
240
+ }
241
+ .e-image-editor .e-custom-g::before,
242
+ .e-dropdown-popup.e-image-popup .e-custom-g::before {
243
+ content: "\e8de";
244
+ }
245
+ .e-image-editor .e-custom-h::before,
246
+ .e-dropdown-popup.e-image-popup .e-custom-h::before {
247
+ content: "\e8df";
248
+ }
249
+ .e-image-editor .e-custom-i::before,
250
+ .e-dropdown-popup.e-image-popup .e-custom-i::before {
251
+ content: "\e8e0";
252
+ }
253
+ .e-image-editor .e-custom-j::before,
254
+ .e-dropdown-popup.e-image-popup .e-custom-j::before {
255
+ content: "\e8e1";
256
+ }
257
+ .e-image-editor .e-rectangle::before,
258
+ .e-dropdown-popup.e-image-popup .e-rectangle::before {
259
+ content: "\e723";
260
+ }
261
+ .e-image-editor .e-triangle::before,
262
+ .e-dropdown-popup.e-image-popup .e-triangle::before {
263
+ content: "\e89c";
264
+ }
265
+ .e-image-editor .e-line::before,
266
+ .e-dropdown-popup.e-image-popup .e-line::before {
267
+ content: "\e819";
268
+ }
269
+ .e-image-editor .e-free-pen::before,
270
+ .e-dropdown-popup.e-image-popup .e-free-pen::before {
271
+ content: "\e7db";
272
+ }
273
+ .e-image-editor .e-horizontal-flip::before,
274
+ .e-dropdown-popup.e-image-popup .e-horizontal-flip::before {
275
+ content: "\e8a3";
276
+ }
277
+ .e-image-editor .e-vertical-flip::before,
278
+ .e-dropdown-popup.e-image-popup .e-vertical-flip::before {
279
+ content: "\e8a4";
280
+ }
281
+ .e-image-editor .e-clock-wise::before,
282
+ .e-dropdown-popup.e-image-popup .e-clock-wise::before {
283
+ content: "\e8a6";
284
+ }
285
+ .e-image-editor .e-anti-clock-wise::before,
286
+ .e-dropdown-popup.e-image-popup .e-anti-clock-wise::before {
287
+ content: "\e8a5";
288
+ }
289
+ .e-image-editor .e-add-text::before,
290
+ .e-dropdown-popup.e-image-popup .e-add-text::before {
291
+ content: "\e82e";
292
+ }
293
+ .e-image-editor .e-arrow::before,
294
+ .e-dropdown-popup.e-image-popup .e-arrow::before {
295
+ content: "\e669";
296
+ }
297
+ .e-image-editor .e-path::before,
298
+ .e-dropdown-popup.e-image-popup .e-path::before {
299
+ content: "\e931";
300
+ }
301
+
302
+ .e-ie-toolbar-upload-div.e-hide,
303
+ .e-ie-toolbar-upload-btn.e-hide,
304
+ .e-ie-img-quality-slider,
305
+ .e-ie-img-quality-name .e-hide {
306
+ display: none;
307
+ }
308
+
309
+ .e-device.e-image-editor .e-img-font-style.e-template {
310
+ margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
311
+ }
312
+ .e-device.e-image-editor .e-slider-container {
313
+ margin-left: calc(50% - 70px) !important; /* stylelint-disable-line declaration-no-important */
314
+ height: 54px !important; /* stylelint-disable-line declaration-no-important */
315
+ }
316
+ .e-device.e-image-editor .e-straighten-slider {
317
+ margin-left: calc(50% - 70px) !important; /* stylelint-disable-line declaration-no-important */
318
+ }
319
+ .e-device.e-image-editor .e-ie-straighten-value-span {
320
+ margin-left: 15px !important; /* stylelint-disable-line declaration-no-important */
321
+ }
322
+ .e-device.e-image-editor .e-hscroll .e-scroll-nav.e-scroll-right-nav, .e-device.e-image-editor .e-scroll-right-overlay {
323
+ display: none !important; /* stylelint-disable-line declaration-no-important */
324
+ }
325
+ .e-device.e-image-editor .e-hscroll.e-scroll-device {
326
+ padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
327
+ }
328
+ .e-device.e-image-editor .e-contextual-toolbar-wrapper {
329
+ border-top: 1px solid var(--color-sf-border-secondary);
330
+ border-bottom: none !important; /* stylelint-disable-line declaration-no-important */
331
+ }
332
+ .e-device.e-image-editor .e-toolbar {
333
+ border-bottom: 1px solid var(--color-sf-border-secondary);
334
+ }
335
+ .e-device.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar {
336
+ border-bottom: none !important; /* stylelint-disable-line declaration-no-important */
337
+ }
338
+ .e-device.e-image-editor .e-bottom-toolbar .e-toolbar, .e-device.e-image-editor .e-bottom-toolbar-area .e-toolbar {
339
+ border-bottom: none;
340
+ }
341
+ .e-device.e-image-editor .e-ie-img-save-name {
342
+ width: calc(65% - 13px) !important; /* stylelint-disable-line declaration-no-important */
343
+ }
344
+ .e-device.e-image-editor .e-ie-img-size-value-span {
345
+ margin-left: calc(100% - 145px) !important; /* stylelint-disable-line declaration-no-important */
346
+ }
347
+ .e-device.e-image-editor .e-ie-quality-option-container .e-slider-container {
348
+ margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
349
+ height: auto !important; /* stylelint-disable-line declaration-no-important */
350
+ }
351
+
352
+ .e-image-editor {
353
+ border: 1px solid var(--color-sf-border-secondary);
354
+ position: relative;
355
+ display: block;
356
+ /* stylelint-disable property-no-vendor-prefix */
357
+ }
358
+ .e-image-editor .no-spin ::-webkit-inner-spin-button, .e-image-editor .no-spin ::-webkit-outer-spin-button {
359
+ -webkit-appearance: none;
360
+ margin: 0;
361
+ }
362
+ .e-image-editor .e-ie-drop-area {
363
+ height: calc(100% - 18px);
364
+ width: calc(100% - 20px);
365
+ border: 2px dashed var(--color-sf-fg-secondary);
366
+ border-radius: 10px;
367
+ margin: 10px;
368
+ }
369
+ .e-image-editor .e-ie-drop-area .e-upload {
370
+ display: none;
371
+ }
372
+ .e-image-editor .e-ie-drop-area .e-image::before {
373
+ font-size: 50px;
374
+ }
375
+ .e-image-editor .e-ie-drop-area .e-ie-drop-icon {
376
+ top: calc(50% - 60px);
377
+ left: calc(50% - 25px);
378
+ }
379
+ .e-image-editor .e-ie-drop-area .e-ie-drop-content {
380
+ top: 50%;
381
+ left: calc(50% - 160px);
382
+ font-size: 14px;
383
+ }
384
+ .e-image-editor .e-ie-drop-area .e-ie-drop-info {
385
+ top: calc(50% + 40px);
386
+ left: 50%;
387
+ -webkit-transform: translate(-50%, -50%);
388
+ transform: translate(-50%, -50%);
389
+ position: absolute;
390
+ font-size: 14px;
391
+ }
392
+ .e-image-editor .e-ie-drop-area .e-ie-min-drop-content {
393
+ left: calc(50% - 120px);
394
+ top: 50%;
395
+ font-size: 14px;
396
+ }
397
+ .e-image-editor .e-toolbar {
398
+ border: none;
399
+ border-bottom: 1px solid var(--color-sf-border-secondary);
400
+ height: 48px !important; /* stylelint-disable-line declaration-no-important */
401
+ min-height: 48px !important; /* stylelint-disable-line declaration-no-important */
402
+ }
403
+ .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-height {
404
+ margin-left: 20px;
405
+ min-width: 28px !important; /* stylelint-disable-line declaration-no-important */
406
+ }
407
+ .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-width {
408
+ min-width: 28px !important; /* stylelint-disable-line declaration-no-important */
409
+ }
410
+ .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
411
+ font-size: 18px;
412
+ }
413
+ .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
414
+ font-size: 18px;
415
+ }
416
+ .e-image-editor .e-toolbar .e-toolbar-items .e-upload {
417
+ border: none;
418
+ }
419
+ .e-image-editor .e-toolbar .e-toolbar-items .e-file-select-wrap {
420
+ padding: 0;
421
+ }
422
+ .e-image-editor .e-toolbar .e-toolbar-items .e-image-upload .e-file-select, .e-image-editor .e-toolbar .e-toolbar-items .e-image-upload .e-file-drop, .e-image-editor .e-toolbar .e-toolbar-items .e-image-upload .e-upload-files {
423
+ display: none;
424
+ }
425
+ .e-image-editor .e-toolbar .e-toolbar-items .e-image-upload .e-image-upload .e-upload {
426
+ border: none;
427
+ }
428
+ .e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-frame-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-text-background-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-stroke-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret {
429
+ font-size: 18px;
430
+ }
431
+ .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret {
432
+ margin-top: -4px;
433
+ }
434
+ .e-image-editor .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview {
435
+ height: 18px;
436
+ width: 18px;
437
+ margin-top: -2px !important; /* stylelint-disable-line declaration-no-important */
438
+ margin-left: -6px;
439
+ }
440
+ .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform {
441
+ font-size: 18px;
442
+ }
443
+ .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform .e-icons.e-caret {
444
+ font-size: 10px !important; /* stylelint-disable-line declaration-no-important */
445
+ }
446
+ .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save {
447
+ font-size: 18px;
448
+ }
449
+ .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save .e-icons.e-caret {
450
+ font-size: 10px !important; /* stylelint-disable-line declaration-no-important */
451
+ }
452
+ .e-image-editor .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
453
+ line-height: 1;
454
+ }
455
+ .e-image-editor .e-toolbar-area + .e-canvas-wrapper .e-textarea {
456
+ line-height: initial !important; /* stylelint-disable-line declaration-no-important */
457
+ }
458
+ .e-image-editor .e-bottom-toolbar, .e-image-editor .e-bottom-toolbar-area {
459
+ border-top: 1px solid var(--color-sf-border-secondary);
460
+ }
461
+ .e-image-editor .e-contextual-toolbar-wrapper {
462
+ border-bottom: 1px solid var(--color-sf-border-secondary);
463
+ width: 100%;
464
+ z-index: 1;
465
+ }
466
+ .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar {
467
+ border-bottom: none !important; /* stylelint-disable-line declaration-no-important */
468
+ height: 130px !important; /* stylelint-disable-line declaration-no-important */
469
+ }
470
+ .e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-toolbar {
471
+ height: inherit !important; /* stylelint-disable-line declaration-no-important */
472
+ }
473
+ .e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-toolbar-item {
474
+ display: inline-grid;
475
+ }
476
+ .e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-toolbar-item > span {
477
+ font-weight: 500;
478
+ margin: 4px;
479
+ text-align: center;
480
+ }
481
+ .e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-dropdown-btn {
482
+ margin: 0 auto;
483
+ width: -webkit-max-content;
484
+ width: -moz-max-content;
485
+ width: max-content;
486
+ }
487
+ .e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-toolbar {
488
+ height: inherit !important; /* stylelint-disable-line declaration-no-important */
489
+ }
490
+ .e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-toolbar-item:not(.e-hidden) {
491
+ display: inline-grid;
492
+ }
493
+ .e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-toolbar-item > span {
494
+ font-weight: 500;
495
+ margin: 4px;
496
+ text-align: center;
497
+ }
498
+ .e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-dropdown-btn {
499
+ margin: 0 auto;
500
+ width: -webkit-max-content;
501
+ width: -moz-max-content;
502
+ width: max-content;
503
+ }
504
+ .e-image-editor .e-contextual-toolbar-wrapper.e-hide {
505
+ display: none;
506
+ }
507
+ .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
508
+ height: auto !important; /* stylelint-disable-line declaration-no-important */
509
+ }
510
+ .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper canvas {
511
+ border: 2px solid transparent;
512
+ height: 100px;
513
+ }
514
+ .e-image-editor .e-contextual-toolbar-wrapper .e-slider-container {
515
+ margin-left: calc(50% - 137px);
516
+ height: 54px !important; /* stylelint-disable-line declaration-no-important */
517
+ }
518
+ .e-ie-straighten-value-span,
519
+ .e-ie-straighten-span,
520
+ .e-ie-toolbar-straighten {
521
+ font-size: 14px !important; /* stylelint-disable-line declaration-no-important */
522
+ padding-left: 10px !important; /* stylelint-disable-line declaration-no-important */
523
+ padding-right: 10px !important; /* stylelint-disable-line declaration-no-important */
524
+ }
525
+
526
+ .e-straighten .e-control-wrapper.e-slider-container.e-horizontal {
527
+ height: auto;
528
+ margin-left: 8px;
529
+ padding-right: 2px;
530
+ }
531
+
532
+ .e-straighten .e-control-wrapper.e-slider-container.e-horizontal .e-slider {
533
+ top: calc(50% - 20px) !important; /* stylelint-disable-line declaration-no-important */
534
+ }
535
+
536
+ .e-straighten .e-control-wrapper.e-slider-container.e-horizontal .e-slider-track,
537
+ .e-straighten .e-control-wrapper.e-slider-container.e-horizontal .e-range {
538
+ top: calc(50% - 2px) !important; /* stylelint-disable-line declaration-no-important */
539
+ }
540
+
541
+ .e-straighten .e-control-wrapper.e-slider-container .e-slider .e-handle {
542
+ top: calc(50% - 6px) !important; /* stylelint-disable-line declaration-no-important */
543
+ }
544
+
545
+ .e-ie-finetune-value-span {
546
+ top: 28% !important; /* stylelint-disable-line declaration-no-important */
547
+ }
548
+
549
+ .e-ie-finetune-slider-label {
550
+ top: 28% !important; /* stylelint-disable-line declaration-no-important */
551
+ }
552
+
553
+ .e-ie-finetune-slider-wrap {
554
+ top: calc(50% - 12px) !important; /* stylelint-disable-line declaration-no-important */
555
+ }
556
+
557
+ .e-transparency-slider-wrap {
558
+ top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
559
+ }
560
+
561
+ .e-ie-slider-wrap {
562
+ top: calc(50% - 10px) !important; /* stylelint-disable-line declaration-no-important */
563
+ }
564
+
565
+ .e-dropdown-popup.e-ie-crop-ddb-popup ul {
566
+ max-height: 250px;
567
+ overflow-y: auto;
568
+ }
569
+
570
+ .e-dropdown-popup.e-ie-ddb-popup {
571
+ background: none !important; /* stylelint-disable-line declaration-no-important */
572
+ }
573
+
574
+ .e-device.e-image-editor .e-ie-device-transparency-slider {
575
+ margin-left: calc(50% - 80px) !important; /* stylelint-disable-line declaration-no-important */
576
+ }
577
+
578
+ .e-ie-quality-slider.e-control-wrapper.e-slider-container.e-horizontal,
579
+ .e-ie-quality-option-container .e-slider-container.e-horizontal {
580
+ height: 28px;
581
+ }
582
+
583
+ .e-ie-quality-slider.e-control-wrapper.e-slider-container.e-horizontal .e-slider {
584
+ top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
585
+ }
586
+
587
+ .e-ie-quality-slider.e-slider-container + .e-ie-img-icon-button,
588
+ .e-ie-quality-option-container .e-slider-container.e-horizontal + .e-ie-img-icon-button {
589
+ margin-left: 20px !important; /* stylelint-disable-line declaration-no-important */
590
+ }
591
+
592
+ .e-ie-img-size {
593
+ margin: 10px 10px 0;
594
+ }
595
+
596
+ .e-ie-dlg-img-content {
597
+ width: 40%;
598
+ height: 100%;
599
+ margin-right: 5%;
600
+ display: -webkit-box;
601
+ display: -ms-flexbox;
602
+ display: flex;
603
+ -webkit-box-orient: vertical;
604
+ -webkit-box-direction: normal;
605
+ -ms-flex-direction: column;
606
+ flex-direction: column;
607
+ -webkit-box-pack: center;
608
+ -ms-flex-pack: center;
609
+ justify-content: center;
610
+ -webkit-box-align: center;
611
+ -ms-flex-align: center;
612
+ align-items: center;
613
+ }
614
+
615
+ .e-ie-img-input {
616
+ width: 90% !important; /* stylelint-disable-line declaration-no-important */
617
+ }
618
+
619
+ .e-ie-img-dlg-canvas {
620
+ width: 100%;
621
+ height: 100%;
622
+ }
623
+
624
+ .e-ie-img-size {
625
+ font-size: 14px;
626
+ display: -webkit-box;
627
+ display: -ms-flexbox;
628
+ display: flex;
629
+ -webkit-box-orient: vertical;
630
+ -webkit-box-direction: normal;
631
+ -ms-flex-direction: column;
632
+ flex-direction: column;
633
+ -webkit-box-pack: start;
634
+ -ms-flex-pack: start;
635
+ justify-content: flex-start;
636
+ }
637
+
638
+ .e-ie-dlg-right-content {
639
+ width: 60%;
640
+ }
641
+
642
+ .e-ie-img-save-name {
643
+ display: inline-block;
644
+ margin-right: 10px;
645
+ width: calc(69% - 13px);
646
+ }
647
+
648
+ .e-ie-img-save-dlg {
649
+ display: inline-block;
650
+ width: 92px;
651
+ }
652
+
653
+ .e-ie-img-save-dlg .e-btn {
654
+ width: 100%;
655
+ }
656
+
657
+ .e-ie-img-label-name {
658
+ margin-bottom: 5px;
659
+ display: block;
660
+ }
661
+
662
+ .e-ie-img-quality-name {
663
+ position: relative;
664
+ width: 100% !important; /* stylelint-disable-line declaration-no-important */
665
+ }
666
+
667
+ .e-ie-quality-info {
668
+ margin-bottom: 0;
669
+ margin-top: 0;
670
+ }
671
+
672
+ .e-ie-quality-span {
673
+ margin-left: 5px;
674
+ display: -webkit-inline-box;
675
+ display: -ms-inline-flexbox;
676
+ display: inline-flex;
677
+ }
678
+
679
+ .e-ie-img-quality-label {
680
+ margin-bottom: 3%;
681
+ margin-top: 5%;
682
+ display: -webkit-inline-box;
683
+ display: -ms-inline-flexbox;
684
+ display: inline-flex;
685
+ }
686
+
687
+ .e-ie-img-quality-size {
688
+ margin-top: 5%;
689
+ display: block;
690
+ }
691
+
692
+ .e-ie-img-size-value-span {
693
+ width: 8%;
694
+ text-transform: capitalize;
695
+ margin-left: calc(100% - 194px);
696
+ margin-top: 4px;
697
+ }
698
+
699
+ .e-device.e-ie-save-dialog .e-ie-img-size-value-span {
700
+ margin-left: calc(100% - 145px) !important; /* stylelint-disable-line declaration-no-important */
701
+ margin-left: calc(100% - 163px) !important; /* stylelint-disable-line declaration-no-important */
702
+ }
703
+
704
+ .e-device.e-ie-save-dialog .e-ie-img-save-name {
705
+ width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
706
+ width: calc(71% - 31px) !important; /* stylelint-disable-line declaration-no-important */
707
+ }
708
+
709
+ .e-ie-img-icon-button {
710
+ margin-left: 10px;
711
+ width: -webkit-max-content;
712
+ width: -moz-max-content;
713
+ width: max-content;
714
+ margin-bottom: 3px;
715
+ padding-top: 4px;
716
+ padding-bottom: 4px;
717
+ }
718
+
719
+ .e-ie-quality-option-container .e-btn-group .e-btn {
720
+ padding-left: 13px;
721
+ padding-right: 13px;
722
+ }
723
+
724
+ .e-blr-ie-save-dialog .e-ie-img-save-name {
725
+ width: calc(67% - 13px);
726
+ }
727
+ .e-blr-ie-save-dialog .e-ie-quality-custom {
728
+ width: calc(65% - 13px);
729
+ }
730
+ .e-blr-ie-save-dialog .e-ie-quality-option-container .e-ie-img-icon-button {
731
+ margin-left: 20px;
732
+ }
733
+ .e-blr-ie-save-dialog .e-ie-img-size-value-span {
734
+ vertical-align: middle;
735
+ margin-left: calc(50% - 55px);
736
+ }
737
+ .e-blr-ie-save-dialog .e-btn-group .e-btn {
738
+ padding: 0 12px;
739
+ }
740
+ .e-blr-ie-save-dialog.e-device .e-ie-img-save-name {
741
+ width: calc(64% - 15px) !important; /* stylelint-disable-line declaration-no-important */
742
+ }
743
+ .e-blr-ie-save-dialog.e-device .e-ie-quality-custom {
744
+ width: 75% !important; /* stylelint-disable-line declaration-no-important */
745
+ }
746
+ .e-blr-ie-save-dialog.e-device .e-ie-quality-option-container .e-ie-img-icon-button {
747
+ margin-left: 0;
748
+ }
749
+ .e-blr-ie-save-dialog.e-device .e-slider-container {
750
+ margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
751
+ height: 28px !important; /* stylelint-disable-line declaration-no-important */
752
+ }
753
+ .e-blr-ie-save-dialog.e-device .e-ie-img-size-value-span {
754
+ margin-left: calc(67% - 100px) !important; /* stylelint-disable-line declaration-no-important */
755
+ }
756
+ .e-blr-ie-save-dialog.e-device .e-btn-group .e-btn {
757
+ padding: 0 15px;
758
+ }
759
+ .e-ie-straighten-value-span {
760
+ margin-left: 7px !important; /* stylelint-disable-line declaration-no-important */
761
+ }
762
+
763
+ .e-device.e-image-editor .e-ie-straighten-value-span {
764
+ margin-left: 15px !important; /* stylelint-disable-line declaration-no-important */
765
+ }
766
+
767
+ @media only screen and (max-width: 390px) {
768
+ .e-device.e-image-editor .e-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-ie-img-quality-name .e-btn-group .e-btn {
769
+ padding-left: 9px;
770
+ padding-right: 9px;
771
+ }
772
+ .e-device.e-image-editor .e-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-ie-img-save-name {
773
+ width: calc(65% - 30px) !important; /* stylelint-disable-line declaration-no-important */
774
+ }
775
+ }
776
+ .e-device.e-image-editor .e-contextual-toolbar-wrapper .e-ie-finetune-slider-label {
777
+ left: calc(50% - 145px) !important; /* stylelint-disable-line declaration-no-important */
778
+ }
779
+
780
+ .e-device.e-image-editor .e-contextual-toolbar-wrapper .e-slider-container {
781
+ width: 170px !important; /* stylelint-disable-line declaration-no-important */
782
+ margin-left: calc(50% - 62px) !important; /* stylelint-disable-line declaration-no-important */
783
+ }
784
+
785
+ .e-device.e-image-editor .e-contextual-toolbar-wrapper .e-ie-finetune-value-span {
786
+ margin-left: 10px !important; /* stylelint-disable-line declaration-no-important */
787
+ }
788
+
789
+ .e-image-editor {
790
+ background: var(--color-sf-border-secondary);
791
+ }
792
+ .e-image-editor .e-contextual-toolbar-wrapper {
793
+ background: var(--color-sf-bg-secondary);
794
+ }
795
+ .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item:hover .filterwrapper canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filterwrapper canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item:hover .filter-wrapper canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filter-wrapper canvas {
796
+ border-color: var(--color-sf-utility-secondary-bg-color-pressed) !important; /* stylelint-disable-line declaration-no-important */
797
+ }
798
+ .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filterwrapper:focus canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filter-wrapper:focus canvas {
799
+ border-color: var(--color-sf-utility-secondary-bg-color-pressed) !important; /* stylelint-disable-line declaration-no-important */
800
+ }
801
+ .e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn .e-icons {
802
+ color: var(--color-sf-fg-secondary);
803
+ }
804
+ .e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn.e-selected-btn {
805
+ background: var(--color-sf-bg-tertiary) !important; /* stylelint-disable-line declaration-no-important */
806
+ }
807
+ .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn {
808
+ background: inherit;
809
+ border: none;
810
+ margin-top: 2px;
811
+ }
812
+ .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-caret-hide {
813
+ display: none !important; /* stylelint-disable-line declaration-no-important */
814
+ }
815
+ .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
816
+ background: var(--color-sf-bg-quaternary);
817
+ -webkit-box-shadow: none;
818
+ box-shadow: none;
819
+ color: var(--color-sf-text-tertiary);
820
+ }
821
+ .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
822
+ background: var(--color-sf-utility-secondary-bg-color-hover);
823
+ -webkit-box-shadow: none;
824
+ box-shadow: none;
825
+ color: var(--color-sf-utility-secondary-text-color-hover);
826
+ -webkit-box-shadow: 0 0 0 1px #4f46e5 !important;
827
+ box-shadow: 0 0 0 1px #4f46e5 !important; /* stylelint-disable-line declaration-no-important */
828
+ }
829
+ .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
830
+ background: var(--color-sf-utility-secondary-bg-color-pressed);
831
+ -webkit-box-shadow: none;
832
+ box-shadow: none;
833
+ color: var(--color-sf-utility-secondary-text-color-pressed);
834
+ }
835
+ .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 {
836
+ background: none;
837
+ border-bottom-style: solid;
838
+ border-bottom-width: 3px;
839
+ width: 14px;
840
+ margin: 0 2px;
841
+ border-bottom-color: var(--color-sf-base-black);
842
+ }
843
+ .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-split-preview, .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-split-preview, .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-split-preview, .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 .e-split-preview {
844
+ display: none;
845
+ }
846
+ .e-image-editor .e-toolbar .e-toolbar-items .e-nocolor-item {
847
+ background: transparent url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjZweCIgdmlld0JveD0iMCAwIDYgNiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KICAgIDwhLS0gR2VuZXJhdG9yOiBTa2V0Y2ggNTAgKDU0OTgzKSAtIGh0dHA6Ly93d3cuYm9oZW1pYW5jb2RpbmcuY29tL3NrZXRjaCAtLT4KICAgIDx0aXRsZT5Hcm91cCA5PC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGRlZnM+PC9kZWZzPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9Ikdyb3VwLTkiPgogICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLTExIiBmaWxsPSIjRTBFMEUwIiB4PSIwIiB5PSIwIiB3aWR0aD0iMyIgaGVpZ2h0PSIzIj48L3JlY3Q+CiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUtMTEtQ29weS0yIiBmaWxsPSIjRkZGRkZGIiB4PSIwIiB5PSIzIiB3aWR0aD0iMyIgaGVpZ2h0PSIzIj48L3JlY3Q+CiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUtMTEtQ29weSIgZmlsbD0iI0ZGRkZGRiIgeD0iMyIgeT0iMCIgd2lkdGg9IjMiIGhlaWdodD0iMyI+PC9yZWN0PgogICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLTExLUNvcHktMyIgZmlsbD0iI0UwRTBFMCIgeD0iMyIgeT0iMyIgd2lkdGg9IjMiIGhlaWdodD0iMyI+PC9yZWN0PgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+") !important; /* stylelint-disable-line declaration-no-important */
848
+ background-size: 8px !important; /* stylelint-disable-line declaration-no-important */
849
+ }
850
+ .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item.e-overlay .e-btn {
851
+ -webkit-box-shadow: none !important;
852
+ box-shadow: none !important; /* stylelint-disable-line declaration-no-important */
853
+ }
854
+
855
+ .e-dropdown-popup .e-selected-btn {
856
+ background: var(--color-sf-bg-tertiary) !important; /* stylelint-disable-line declaration-no-important */
857
+ }
858
+ .e-ie-filter-canvas:focus,
859
+ .filter-wrapper:focus .e-ie-filter-canvas,
860
+ .filter-wrapper:focus canvas,
861
+ .filter-wrapper canvas:focus {
862
+ border-color: #fcfcfd !important; /* stylelint-disable-line declaration-no-important */
863
+ }
864
+
865
+ .e-bigger .e-image-editor .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle,
866
+ .e-image-editor.e-bigger .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle {
867
+ top: calc(50% - 9px) !important; /* stylelint-disable-line declaration-no-important */
868
+ }
869
+ .e-bigger .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar,
870
+ .e-image-editor.e-bigger .e-contextual-toolbar-wrapper .e-toolbar {
871
+ height: 130px !important; /* stylelint-disable-line declaration-no-important */
872
+ }
873
+ .e-bigger .e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-toolbar, .e-bigger .e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-toolbar,
874
+ .e-image-editor.e-bigger .e-contextual-toolbar-wrapper .e-frame-wrapper .e-toolbar,
875
+ .e-image-editor.e-bigger .e-contextual-toolbar-wrapper.e-frame-wrapper .e-toolbar {
876
+ height: inherit !important; /* stylelint-disable-line declaration-no-important */
877
+ }
878
+ .e-bigger .e-image-editor .e-toolbar,
879
+ .e-image-editor.e-bigger .e-toolbar {
880
+ height: 56px !important; /* stylelint-disable-line declaration-no-important */
881
+ min-height: 56px !important; /* stylelint-disable-line declaration-no-important */
882
+ }
883
+ .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,
884
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-height span,
885
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-width span {
886
+ font-size: 16px;
887
+ }
888
+ .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon,
889
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
890
+ font-size: 20px;
891
+ }
892
+ .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon,
893
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
894
+ font-size: 20px;
895
+ }
896
+ .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-frame-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret,
897
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret,
898
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret,
899
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-frame-stroke.e-template .e-dropdown-btn .e-icons.e-caret,
900
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret,
901
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret,
902
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret {
903
+ font-size: 20px;
904
+ }
905
+ .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret,
906
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret {
907
+ margin-top: -4px;
908
+ }
909
+ .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview,
910
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview {
911
+ margin-top: -2px !important; /* stylelint-disable-line declaration-no-important */
912
+ margin-left: -6px;
913
+ }
914
+ .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform,
915
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select,
916
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation,
917
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform {
918
+ font-size: 20px;
919
+ }
920
+ .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform .e-icons.e-caret,
921
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select .e-icons.e-caret,
922
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation .e-icons.e-caret,
923
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform .e-icons.e-caret {
924
+ font-size: 10px;
925
+ }
926
+ .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save,
927
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save {
928
+ font-size: 20px;
929
+ }
930
+ .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save .e-icons.e-caret,
931
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save .e-icons.e-caret {
932
+ font-size: 10px;
933
+ }
934
+ .e-bigger .e-image-editor .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left,
935
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
936
+ line-height: 1;
937
+ }
938
+ .e-bigger .e-straighten .e-control-wrapper.e-slider-container .e-slider .e-handle {
939
+ top: calc(50% - 7px) !important; /* stylelint-disable-line declaration-no-important */
940
+ }
941
+
942
+ .e-bigger .e-ie-save-dialog .e-ie-img-save-name {
943
+ width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
944
+ }
945
+
946
+ .e-bigger .e-image-editor .e-dlg-container .e-dialog,
947
+ .e-bigger.e-image-editor .e-dlg-container .e-dialog {
948
+ width: 656px;
949
+ }
950
+
951
+ .e-bigger .e-ie-img-save-dlg {
952
+ width: 100px;
953
+ }
954
+
955
+ .e-bigger .e-image-editor .e-control-wrapper.e-slider-container.e-horizontal,
956
+ .e-bigger.e-image-editor .e-control-wrapper.e-slider-container.e-horizontal {
957
+ width: 217px;
958
+ }
959
+
960
+ .e-bigger .e-dialog.e-blr-ie-save-dialog:not(.e-device) {
961
+ width: 625px !important; /* stylelint-disable-line declaration-no-important */
962
+ }
963
+ .e-bigger .e-dialog.e-blr-ie-save-dialog:not(.e-device) .e-ie-img-icon-button {
964
+ padding: 0 10px;
965
+ }
966
+ .e-bigger .e-ie-save-dialog .e-ie-img-save-name {
967
+ width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
968
+ width: calc(65% - 13px) !important; /* stylelint-disable-line declaration-no-important */
969
+ }