@syncfusion/ej2-image-editor 27.2.5 → 28.1.39

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