@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.
- package/README.md +2 -2
- package/dist/ej2-image-editor.umd.min.js +3 -3
- package/dist/ej2-image-editor.umd.min.js.map +1 -1
- package/dist/es6/ej2-image-editor.es2015.js +380 -52
- package/dist/es6/ej2-image-editor.es2015.js.map +1 -1
- package/dist/es6/ej2-image-editor.es5.js +388 -52
- package/dist/es6/ej2-image-editor.es5.js.map +1 -1
- package/dist/global/ej2-image-editor.min.js +3 -3
- package/dist/global/ej2-image-editor.min.js.map +1 -1
- package/dist/global/index.d.ts +2 -2
- package/package.json +13 -13
- package/src/image-editor/action/draw.d.ts +4 -0
- package/src/image-editor/action/draw.js +97 -11
- package/src/image-editor/action/export.js +1 -1
- package/src/image-editor/action/shape.d.ts +1 -1
- package/src/image-editor/action/shape.js +22 -15
- package/src/image-editor/action/transform.js +1 -0
- package/src/image-editor/base/enum.d.ts +8 -2
- package/src/image-editor/base/enum.js +6 -0
- package/src/image-editor/base/image-editor-model.d.ts +51 -0
- package/src/image-editor/base/image-editor.d.ts +79 -2
- package/src/image-editor/base/image-editor.js +223 -12
- package/src/image-editor/renderer/toolbar.js +38 -12
- package/styles/bds-lite.css +867 -0
- package/styles/bds-lite.scss +13 -0
- package/styles/bds.css +973 -0
- package/styles/bds.scss +14 -0
- package/styles/bootstrap-dark-lite.css +9 -3
- package/styles/bootstrap-dark.css +9 -3
- package/styles/bootstrap-lite.css +9 -3
- package/styles/bootstrap.css +9 -3
- package/styles/bootstrap4-lite.css +9 -3
- package/styles/bootstrap4.css +9 -3
- package/styles/bootstrap5-dark-lite.css +9 -3
- package/styles/bootstrap5-dark.css +9 -3
- package/styles/bootstrap5-lite.css +9 -3
- package/styles/bootstrap5.3-lite.css +9 -3
- package/styles/bootstrap5.3.css +9 -3
- package/styles/bootstrap5.css +9 -3
- package/styles/fabric-dark-lite.css +9 -3
- package/styles/fabric-dark.css +9 -3
- package/styles/fabric-lite.css +9 -3
- package/styles/fabric.css +9 -3
- package/styles/fluent-dark-lite.css +9 -3
- package/styles/fluent-dark.css +9 -3
- package/styles/fluent-lite.css +9 -3
- package/styles/fluent.css +9 -3
- package/styles/fluent2-lite.css +9 -3
- package/styles/fluent2.css +9 -3
- package/styles/highcontrast-light-lite.css +9 -3
- package/styles/highcontrast-light.css +9 -3
- package/styles/highcontrast-lite.css +9 -3
- package/styles/highcontrast.css +9 -3
- package/styles/image-editor/_layout.scss +18 -4
- package/styles/image-editor/_tailwind3-definition.scss +29 -0
- package/styles/image-editor/bds.css +973 -0
- package/styles/image-editor/bds.scss +14 -0
- package/styles/image-editor/bootstrap-dark.css +9 -3
- package/styles/image-editor/bootstrap.css +9 -3
- package/styles/image-editor/bootstrap4.css +9 -3
- package/styles/image-editor/bootstrap5-dark.css +9 -3
- package/styles/image-editor/bootstrap5.3.css +9 -3
- package/styles/image-editor/bootstrap5.css +9 -3
- package/styles/image-editor/fabric-dark.css +9 -3
- package/styles/image-editor/fabric.css +9 -3
- package/styles/image-editor/fluent-dark.css +9 -3
- package/styles/image-editor/fluent.css +9 -3
- package/styles/image-editor/fluent2.css +9 -3
- package/styles/image-editor/highcontrast-light.css +9 -3
- package/styles/image-editor/highcontrast.css +9 -3
- package/styles/image-editor/icons/_tailwind3.scss +259 -0
- package/styles/image-editor/material-dark.css +9 -3
- package/styles/image-editor/material.css +9 -3
- package/styles/image-editor/material3-dark.css +9 -3
- package/styles/image-editor/material3.css +9 -3
- package/styles/image-editor/tailwind-dark.css +9 -3
- package/styles/image-editor/tailwind.css +9 -3
- package/styles/image-editor/tailwind3.css +864 -0
- package/styles/image-editor/tailwind3.scss +14 -0
- package/styles/material-dark-lite.css +9 -3
- package/styles/material-dark.css +9 -3
- package/styles/material-lite.css +9 -3
- package/styles/material.css +9 -3
- package/styles/material3-dark-lite.css +9 -3
- package/styles/material3-dark.css +9 -3
- package/styles/material3-lite.css +9 -3
- package/styles/material3.css +9 -3
- package/styles/tailwind-dark-lite.css +9 -3
- package/styles/tailwind-dark.css +9 -3
- package/styles/tailwind-lite.css +9 -3
- package/styles/tailwind.css +9 -3
- package/styles/tailwind3-lite.css +759 -0
- package/styles/tailwind3-lite.scss +13 -0
- package/styles/tailwind3.css +864 -0
- package/styles/tailwind3.scss +14 -0
|
@@ -0,0 +1,259 @@
|
|
|
1
|
+
@include export-module('image-editor-tailwind3-icons') {
|
|
2
|
+
.e-image-editor {
|
|
3
|
+
& .e-upload-icon {
|
|
4
|
+
&::before {
|
|
5
|
+
content: '\e760';
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
& .e-zoom-in {
|
|
10
|
+
&::before {
|
|
11
|
+
content: '\e768';
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
& .e-zoom-out {
|
|
16
|
+
&::before {
|
|
17
|
+
content: '\e81b';
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
& .e-pan {
|
|
22
|
+
&::before {
|
|
23
|
+
content: '\e7b1';
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
& .e-select {
|
|
28
|
+
&::before {
|
|
29
|
+
content: '\e896';
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
& .e-transform {
|
|
34
|
+
&::before {
|
|
35
|
+
content: '\e8b0';
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
& .e-annotation {
|
|
40
|
+
&::before {
|
|
41
|
+
content: '\e730';
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
& .e-shapes {
|
|
46
|
+
&::before {
|
|
47
|
+
content: '\e728';
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
& .e-mouse {
|
|
52
|
+
&::before {
|
|
53
|
+
content: '\e74e';
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
& .e-btn-reset {
|
|
58
|
+
&::before {
|
|
59
|
+
content: '\e89b';
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
& .e-btn-save {
|
|
64
|
+
&::before {
|
|
65
|
+
content: '\e7c8';
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
& .e-close {
|
|
70
|
+
&::before {
|
|
71
|
+
content: '\e7e7';
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
& .e-check {
|
|
76
|
+
&::before {
|
|
77
|
+
content: '\e8b1';
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
& .e-text-font-color.e-template {
|
|
82
|
+
& .e-caret::before {
|
|
83
|
+
content: '\e76f';
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
& .e-stroke.e-template,
|
|
88
|
+
& .e-frame-stroke.e-template,
|
|
89
|
+
& .e-pen-stroke-color.e-template {
|
|
90
|
+
& .e-caret::before {
|
|
91
|
+
content: '\e739';
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
& .e-fill.e-template,
|
|
96
|
+
& .e-text-background-color.e-template {
|
|
97
|
+
& .e-caret {
|
|
98
|
+
&::before {
|
|
99
|
+
content: '\e783';
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
& .e-stroke-text-font-color.e-template {
|
|
105
|
+
& .e-caret {
|
|
106
|
+
&::before {
|
|
107
|
+
content: '\e908';
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.e-image-editor,
|
|
115
|
+
.e-dropdown-popup.e-image-popup {
|
|
116
|
+
& .e-custom {
|
|
117
|
+
&::before {
|
|
118
|
+
content: '\e8a9';
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
& .e-circle {
|
|
123
|
+
&::before {
|
|
124
|
+
content: '\e7ca';
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
& .e-square{
|
|
129
|
+
&::before {
|
|
130
|
+
content: '\e8aa';
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
& .e-custom-a {
|
|
135
|
+
&::before {
|
|
136
|
+
content: '\e8ab';
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
& .e-custom-b {
|
|
141
|
+
&::before {
|
|
142
|
+
content: '\e8ac';
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
& .e-custom-c {
|
|
147
|
+
&::before {
|
|
148
|
+
content: '\e8ad';
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
& .e-custom-d {
|
|
153
|
+
&::before {
|
|
154
|
+
content: '\e8ae';
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
& .e-custom-e {
|
|
159
|
+
&::before {
|
|
160
|
+
content: '\e8af';
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
& .e-custom-f {
|
|
165
|
+
&::before {
|
|
166
|
+
content: '\e8dd';
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
& .e-custom-g {
|
|
171
|
+
&::before {
|
|
172
|
+
content: '\e8de';
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
& .e-custom-h {
|
|
177
|
+
&::before {
|
|
178
|
+
content: '\e8df';
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
& .e-custom-i {
|
|
183
|
+
&::before {
|
|
184
|
+
content: '\e8e0';
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
& .e-custom-j {
|
|
189
|
+
&::before {
|
|
190
|
+
content: '\e8e1';
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
& .e-rectangle {
|
|
195
|
+
&::before {
|
|
196
|
+
content: '\e723';
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
& .e-triangle {
|
|
201
|
+
&::before {
|
|
202
|
+
content: '\e89c';
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
& .e-line {
|
|
207
|
+
&::before {
|
|
208
|
+
content: '\e819';
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
& .e-free-pen {
|
|
213
|
+
&::before {
|
|
214
|
+
content: '\e7db';
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
& .e-horizontal-flip {
|
|
219
|
+
&::before {
|
|
220
|
+
content: '\e8a3';
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
& .e-vertical-flip {
|
|
225
|
+
&::before {
|
|
226
|
+
content: '\e8a4';
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
& .e-clock-wise {
|
|
231
|
+
&::before {
|
|
232
|
+
content: '\e8a6';
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
& .e-anti-clock-wise {
|
|
237
|
+
&::before {
|
|
238
|
+
content: '\e8a5';
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
& .e-add-text {
|
|
243
|
+
&::before {
|
|
244
|
+
content: '\e82e';
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
& .e-arrow {
|
|
249
|
+
&::before {
|
|
250
|
+
content: '\e669';
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
& .e-path {
|
|
255
|
+
&::before {
|
|
256
|
+
content: '\e931';
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
}
|
|
@@ -295,7 +295,9 @@
|
|
|
295
295
|
}
|
|
296
296
|
.e-image-editor .e-ie-drop-area .e-ie-drop-info {
|
|
297
297
|
top: calc(50% + 40px);
|
|
298
|
-
left:
|
|
298
|
+
left: 50%;
|
|
299
|
+
-webkit-transform: translate(-50%, -50%);
|
|
300
|
+
transform: translate(-50%, -50%);
|
|
299
301
|
position: absolute;
|
|
300
302
|
font-size: 14px;
|
|
301
303
|
}
|
|
@@ -552,12 +554,12 @@
|
|
|
552
554
|
.e-ie-img-save-name {
|
|
553
555
|
display: inline-block;
|
|
554
556
|
margin-right: 10px;
|
|
555
|
-
width: calc(
|
|
557
|
+
width: calc(69% - 13px);
|
|
556
558
|
}
|
|
557
559
|
|
|
558
560
|
.e-ie-img-save-dlg {
|
|
559
561
|
display: inline-block;
|
|
560
|
-
width:
|
|
562
|
+
width: 92px;
|
|
561
563
|
}
|
|
562
564
|
|
|
563
565
|
.e-ie-img-save-dlg .e-btn {
|
|
@@ -692,6 +694,10 @@
|
|
|
692
694
|
margin-left: 10px !important; /* stylelint-disable-line declaration-no-important */
|
|
693
695
|
}
|
|
694
696
|
|
|
697
|
+
.e-device.e-image-editor .e-ie-drop-area .e-ie-drop-info {
|
|
698
|
+
top: calc(50% + 60px);
|
|
699
|
+
}
|
|
700
|
+
|
|
695
701
|
.e-image-editor {
|
|
696
702
|
background: #292929;
|
|
697
703
|
}
|
|
@@ -295,7 +295,9 @@
|
|
|
295
295
|
}
|
|
296
296
|
.e-image-editor .e-ie-drop-area .e-ie-drop-info {
|
|
297
297
|
top: calc(50% + 40px);
|
|
298
|
-
left:
|
|
298
|
+
left: 50%;
|
|
299
|
+
-webkit-transform: translate(-50%, -50%);
|
|
300
|
+
transform: translate(-50%, -50%);
|
|
299
301
|
position: absolute;
|
|
300
302
|
font-size: 14px;
|
|
301
303
|
}
|
|
@@ -552,12 +554,12 @@
|
|
|
552
554
|
.e-ie-img-save-name {
|
|
553
555
|
display: inline-block;
|
|
554
556
|
margin-right: 10px;
|
|
555
|
-
width: calc(
|
|
557
|
+
width: calc(69% - 13px);
|
|
556
558
|
}
|
|
557
559
|
|
|
558
560
|
.e-ie-img-save-dlg {
|
|
559
561
|
display: inline-block;
|
|
560
|
-
width:
|
|
562
|
+
width: 92px;
|
|
561
563
|
}
|
|
562
564
|
|
|
563
565
|
.e-ie-img-save-dlg .e-btn {
|
|
@@ -694,6 +696,10 @@
|
|
|
694
696
|
margin-left: 10px !important; /* stylelint-disable-line declaration-no-important */
|
|
695
697
|
}
|
|
696
698
|
|
|
699
|
+
.e-device.e-image-editor .e-ie-drop-area .e-ie-drop-info {
|
|
700
|
+
top: calc(50% + 60px);
|
|
701
|
+
}
|
|
702
|
+
|
|
697
703
|
.e-image-editor {
|
|
698
704
|
background: #eee;
|
|
699
705
|
}
|
|
@@ -282,7 +282,9 @@
|
|
|
282
282
|
}
|
|
283
283
|
.e-image-editor .e-ie-drop-area .e-ie-drop-info {
|
|
284
284
|
top: calc(50% + 40px);
|
|
285
|
-
left:
|
|
285
|
+
left: 50%;
|
|
286
|
+
-webkit-transform: translate(-50%, -50%);
|
|
287
|
+
transform: translate(-50%, -50%);
|
|
286
288
|
position: absolute;
|
|
287
289
|
font-size: 14px;
|
|
288
290
|
}
|
|
@@ -564,12 +566,12 @@
|
|
|
564
566
|
.e-ie-img-save-name {
|
|
565
567
|
display: inline-block;
|
|
566
568
|
margin-right: 10px;
|
|
567
|
-
width: calc(
|
|
569
|
+
width: calc(69% - 13px);
|
|
568
570
|
}
|
|
569
571
|
|
|
570
572
|
.e-ie-img-save-dlg {
|
|
571
573
|
display: inline-block;
|
|
572
|
-
width:
|
|
574
|
+
width: 92px;
|
|
573
575
|
}
|
|
574
576
|
|
|
575
577
|
.e-ie-img-save-dlg .e-btn {
|
|
@@ -714,6 +716,10 @@
|
|
|
714
716
|
margin-left: 10px !important; /* stylelint-disable-line declaration-no-important */
|
|
715
717
|
}
|
|
716
718
|
|
|
719
|
+
.e-device.e-image-editor .e-ie-drop-area .e-ie-drop-info {
|
|
720
|
+
top: calc(50% + 60px);
|
|
721
|
+
}
|
|
722
|
+
|
|
717
723
|
.e-image-editor {
|
|
718
724
|
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.14)), to(rgba(var(--color-sf-primary), 0.14))), rgba(var(--color-sf-surface));
|
|
719
725
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.14), rgba(var(--color-sf-primary), 0.14)), rgba(var(--color-sf-surface));
|
|
@@ -284,7 +284,9 @@
|
|
|
284
284
|
}
|
|
285
285
|
.e-image-editor .e-ie-drop-area .e-ie-drop-info {
|
|
286
286
|
top: calc(50% + 40px);
|
|
287
|
-
left:
|
|
287
|
+
left: 50%;
|
|
288
|
+
-webkit-transform: translate(-50%, -50%);
|
|
289
|
+
transform: translate(-50%, -50%);
|
|
288
290
|
position: absolute;
|
|
289
291
|
font-size: 14px;
|
|
290
292
|
}
|
|
@@ -566,12 +568,12 @@
|
|
|
566
568
|
.e-ie-img-save-name {
|
|
567
569
|
display: inline-block;
|
|
568
570
|
margin-right: 10px;
|
|
569
|
-
width: calc(
|
|
571
|
+
width: calc(69% - 13px);
|
|
570
572
|
}
|
|
571
573
|
|
|
572
574
|
.e-ie-img-save-dlg {
|
|
573
575
|
display: inline-block;
|
|
574
|
-
width:
|
|
576
|
+
width: 92px;
|
|
575
577
|
}
|
|
576
578
|
|
|
577
579
|
.e-ie-img-save-dlg .e-btn {
|
|
@@ -716,6 +718,10 @@
|
|
|
716
718
|
margin-left: 10px !important; /* stylelint-disable-line declaration-no-important */
|
|
717
719
|
}
|
|
718
720
|
|
|
721
|
+
.e-device.e-image-editor .e-ie-drop-area .e-ie-drop-info {
|
|
722
|
+
top: calc(50% + 60px);
|
|
723
|
+
}
|
|
724
|
+
|
|
719
725
|
.e-image-editor {
|
|
720
726
|
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.14)), to(rgba(var(--color-sf-primary), 0.14))), rgba(var(--color-sf-surface));
|
|
721
727
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.14), rgba(var(--color-sf-primary), 0.14)), rgba(var(--color-sf-surface));
|
|
@@ -273,7 +273,9 @@
|
|
|
273
273
|
}
|
|
274
274
|
.e-image-editor .e-ie-drop-area .e-ie-drop-info {
|
|
275
275
|
top: calc(50% + 40px);
|
|
276
|
-
left:
|
|
276
|
+
left: 50%;
|
|
277
|
+
-webkit-transform: translate(-50%, -50%);
|
|
278
|
+
transform: translate(-50%, -50%);
|
|
277
279
|
position: absolute;
|
|
278
280
|
font-size: 14px;
|
|
279
281
|
}
|
|
@@ -530,12 +532,12 @@
|
|
|
530
532
|
.e-ie-img-save-name {
|
|
531
533
|
display: inline-block;
|
|
532
534
|
margin-right: 10px;
|
|
533
|
-
width: calc(
|
|
535
|
+
width: calc(69% - 13px);
|
|
534
536
|
}
|
|
535
537
|
|
|
536
538
|
.e-ie-img-save-dlg {
|
|
537
539
|
display: inline-block;
|
|
538
|
-
width:
|
|
540
|
+
width: 92px;
|
|
539
541
|
}
|
|
540
542
|
|
|
541
543
|
.e-ie-img-save-dlg .e-btn {
|
|
@@ -674,6 +676,10 @@
|
|
|
674
676
|
margin-left: 10px !important; /* stylelint-disable-line declaration-no-important */
|
|
675
677
|
}
|
|
676
678
|
|
|
679
|
+
.e-device.e-image-editor .e-ie-drop-area .e-ie-drop-info {
|
|
680
|
+
top: calc(50% + 60px);
|
|
681
|
+
}
|
|
682
|
+
|
|
677
683
|
.e-image-editor {
|
|
678
684
|
background: #4b5563;
|
|
679
685
|
}
|
|
@@ -273,7 +273,9 @@
|
|
|
273
273
|
}
|
|
274
274
|
.e-image-editor .e-ie-drop-area .e-ie-drop-info {
|
|
275
275
|
top: calc(50% + 40px);
|
|
276
|
-
left:
|
|
276
|
+
left: 50%;
|
|
277
|
+
-webkit-transform: translate(-50%, -50%);
|
|
278
|
+
transform: translate(-50%, -50%);
|
|
277
279
|
position: absolute;
|
|
278
280
|
font-size: 14px;
|
|
279
281
|
}
|
|
@@ -530,12 +532,12 @@
|
|
|
530
532
|
.e-ie-img-save-name {
|
|
531
533
|
display: inline-block;
|
|
532
534
|
margin-right: 10px;
|
|
533
|
-
width: calc(
|
|
535
|
+
width: calc(69% - 13px);
|
|
534
536
|
}
|
|
535
537
|
|
|
536
538
|
.e-ie-img-save-dlg {
|
|
537
539
|
display: inline-block;
|
|
538
|
-
width:
|
|
540
|
+
width: 92px;
|
|
539
541
|
}
|
|
540
542
|
|
|
541
543
|
.e-ie-img-save-dlg .e-btn {
|
|
@@ -674,6 +676,10 @@
|
|
|
674
676
|
margin-left: 10px !important; /* stylelint-disable-line declaration-no-important */
|
|
675
677
|
}
|
|
676
678
|
|
|
679
|
+
.e-device.e-image-editor .e-ie-drop-area .e-ie-drop-info {
|
|
680
|
+
top: calc(50% + 60px);
|
|
681
|
+
}
|
|
682
|
+
|
|
677
683
|
.e-image-editor {
|
|
678
684
|
background: #e5e7eb;
|
|
679
685
|
}
|