@syncfusion/ej2-image-editor 20.4.51 → 21.1.36
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/.eslintrc.json +1 -0
- package/CHANGELOG.md +55 -5
- package/dist/ej2-image-editor.umd.min.js +2 -2
- package/dist/ej2-image-editor.umd.min.js.map +1 -1
- package/dist/es6/ej2-image-editor.es2015.js +20032 -11350
- package/dist/es6/ej2-image-editor.es2015.js.map +1 -1
- package/dist/es6/ej2-image-editor.es5.js +20027 -11313
- package/dist/es6/ej2-image-editor.es5.js.map +1 -1
- package/dist/global/ej2-image-editor.min.js +2 -2
- package/dist/global/ej2-image-editor.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +12 -12
- package/src/image-editor/action/crop.d.ts +36 -0
- package/src/image-editor/action/crop.js +829 -0
- package/src/image-editor/action/draw.d.ts +125 -0
- package/src/image-editor/action/draw.js +3263 -0
- package/src/image-editor/action/export.d.ts +23 -0
- package/src/image-editor/action/export.js +364 -0
- package/src/image-editor/action/filter.d.ts +35 -0
- package/src/image-editor/action/filter.js +699 -0
- package/src/image-editor/action/freehand-draw.d.ts +61 -0
- package/src/image-editor/action/freehand-draw.js +1015 -0
- package/src/image-editor/action/index.d.ts +9 -0
- package/src/image-editor/action/index.js +9 -0
- package/src/image-editor/action/selection.d.ts +139 -0
- package/src/image-editor/action/selection.js +4518 -0
- package/src/image-editor/action/shape.d.ts +94 -0
- package/src/image-editor/action/shape.js +2745 -0
- package/src/image-editor/action/transform.d.ts +67 -0
- package/src/image-editor/action/transform.js +1859 -0
- package/src/image-editor/action/undo-redo.d.ts +43 -0
- package/src/image-editor/action/undo-redo.js +800 -0
- package/src/image-editor/base/enum.d.ts +189 -0
- package/src/image-editor/base/enum.js +198 -0
- package/src/image-editor/base/image-editor-model.d.ts +626 -0
- package/src/image-editor/base/image-editor.d.ts +1300 -0
- package/src/image-editor/base/image-editor.js +2270 -0
- package/src/image-editor/base/index.d.ts +4 -0
- package/src/image-editor/base/index.js +2 -0
- package/src/image-editor/base/interface.d.ts +1128 -0
- package/src/image-editor/base/interface.js +1 -0
- package/src/image-editor/index.d.ts +3 -5
- package/src/image-editor/index.js +3 -4
- package/src/image-editor/renderer/index.d.ts +1 -0
- package/src/image-editor/renderer/index.js +1 -0
- package/src/image-editor/renderer/toolbar.d.ts +105 -0
- package/src/image-editor/renderer/toolbar.js +3018 -0
- package/styles/bootstrap-dark.css +79 -8
- package/styles/bootstrap.css +79 -8
- package/styles/bootstrap4.css +79 -8
- package/styles/bootstrap5-dark.css +81 -11
- package/styles/bootstrap5.css +81 -11
- package/styles/fabric-dark.css +79 -8
- package/styles/fabric.css +79 -8
- package/styles/fluent-dark.css +79 -8
- package/styles/fluent.css +79 -8
- package/styles/highcontrast-light.css +81 -10
- package/styles/highcontrast.css +82 -10
- package/styles/image-editor/_highcontrast-definition.scss +1 -1
- package/styles/image-editor/_highcontrast-light-definition.scss +1 -1
- package/styles/image-editor/_layout.scss +28 -18
- package/styles/image-editor/_material3-dark-definition.scss +1 -0
- package/styles/image-editor/_material3-definition.scss +10 -10
- package/styles/image-editor/_theme.scss +11 -6
- package/styles/image-editor/bootstrap-dark.css +79 -8
- package/styles/image-editor/bootstrap.css +79 -8
- package/styles/image-editor/bootstrap4.css +79 -8
- package/styles/image-editor/bootstrap5-dark.css +81 -11
- package/styles/image-editor/bootstrap5.css +81 -11
- package/styles/image-editor/fabric-dark.css +79 -8
- package/styles/image-editor/fabric.css +79 -8
- package/styles/image-editor/fluent-dark.css +79 -8
- package/styles/image-editor/fluent.css +79 -8
- package/styles/image-editor/highcontrast-light.css +81 -10
- package/styles/image-editor/highcontrast.css +82 -10
- package/styles/image-editor/icons/_bootstrap-dark.scss +132 -0
- package/styles/image-editor/icons/_bootstrap.scss +132 -0
- package/styles/image-editor/icons/_bootstrap4.scss +132 -0
- package/styles/image-editor/icons/_bootstrap5.scss +132 -0
- package/styles/image-editor/icons/_fabric-dark.scss +132 -0
- package/styles/image-editor/icons/_fabric.scss +132 -0
- package/styles/image-editor/icons/_fluent.scss +132 -0
- package/styles/image-editor/icons/_fusionnew.scss +132 -0
- package/styles/image-editor/icons/_highcontrast-light.scss +132 -0
- package/styles/image-editor/icons/_highcontrast.scss +132 -0
- package/styles/image-editor/icons/_material-dark.scss +132 -0
- package/styles/image-editor/icons/_material.scss +132 -0
- package/styles/image-editor/icons/_material3-dark.scss +1 -0
- package/styles/image-editor/icons/_material3.scss +133 -1
- package/styles/image-editor/icons/_tailwind.scss +132 -0
- package/styles/image-editor/material-dark.css +79 -16
- package/styles/image-editor/material.css +79 -11
- package/styles/image-editor/material3-dark.css +453 -0
- package/styles/image-editor/material3-dark.scss +14 -0
- package/styles/image-editor/material3.css +509 -0
- package/styles/image-editor/material3.scss +14 -0
- package/styles/image-editor/tailwind-dark.css +79 -8
- package/styles/image-editor/tailwind.css +79 -8
- package/styles/material-dark.css +79 -16
- package/styles/material.css +79 -11
- package/styles/material3-dark.css +453 -0
- package/styles/material3-dark.scss +3 -0
- package/styles/material3.css +509 -0
- package/styles/material3.scss +3 -0
- package/styles/tailwind-dark.css +79 -8
- package/styles/tailwind.css +79 -8
- package/GitLeaksReport.json +0 -1
- package/gitleaks-ci/gitleaks +0 -0
- package/gitleaks-ci.tar.gz +0 -0
- package/src/image-editor/image-editor-model.d.ts +0 -331
- package/src/image-editor/image-editor.d.ts +0 -1428
- package/src/image-editor/image-editor.js +0 -12849
|
@@ -104,6 +104,126 @@
|
|
|
104
104
|
}
|
|
105
105
|
}
|
|
106
106
|
}
|
|
107
|
+
|
|
108
|
+
& .e-custom {
|
|
109
|
+
&::before {
|
|
110
|
+
content: '\e964';
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
& .e-circle {
|
|
115
|
+
&::before {
|
|
116
|
+
content: '\e671';
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
& .e-square{
|
|
121
|
+
&::before {
|
|
122
|
+
content: '\e965';
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
& .e-custom-a {
|
|
127
|
+
&::before {
|
|
128
|
+
content: '\e966';
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
& .e-custom-b {
|
|
133
|
+
&::before {
|
|
134
|
+
content: '\e967';
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
& .e-custom-c {
|
|
139
|
+
&::before {
|
|
140
|
+
content: '\e968';
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
& .e-custom-d {
|
|
145
|
+
&::before {
|
|
146
|
+
content: '\e96a';
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
& .e-custom-e {
|
|
151
|
+
&::before {
|
|
152
|
+
content: '\e96b';
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
& .e-horizontal-flip {
|
|
157
|
+
&::before {
|
|
158
|
+
content: '\e95c';
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
& .e-vertical-flip {
|
|
163
|
+
&::before {
|
|
164
|
+
content: '\e95d';
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
& .e-clock-wise {
|
|
169
|
+
&::before {
|
|
170
|
+
content: '\e960';
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
& .e-anti-clock-wise {
|
|
175
|
+
&::before {
|
|
176
|
+
content: '\e95f';
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
& .e-rectangle {
|
|
181
|
+
&::before {
|
|
182
|
+
content: '\e670';
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
& .e-circle {
|
|
187
|
+
&::before {
|
|
188
|
+
content: '\e671';
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
& .e-triangle {
|
|
193
|
+
&::before {
|
|
194
|
+
content: '\e954';
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
& .e-line {
|
|
199
|
+
&::before {
|
|
200
|
+
content: '\e668';
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
& .e-add-text {
|
|
205
|
+
&::before {
|
|
206
|
+
content: '\e35b';
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
& .e-free-pen {
|
|
211
|
+
&::before {
|
|
212
|
+
content: '\e737';
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
& .e-arrow {
|
|
217
|
+
&::before {
|
|
218
|
+
content: '\e669';
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
& .e-path {
|
|
223
|
+
&::before {
|
|
224
|
+
content: '\e931';
|
|
225
|
+
}
|
|
226
|
+
}
|
|
107
227
|
}
|
|
108
228
|
}
|
|
109
229
|
|
|
@@ -215,4 +335,16 @@
|
|
|
215
335
|
content: '\e95d';
|
|
216
336
|
}
|
|
217
337
|
}
|
|
338
|
+
|
|
339
|
+
& .e-arrow {
|
|
340
|
+
&::before {
|
|
341
|
+
content: '\e669';
|
|
342
|
+
}
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
& .e-path {
|
|
346
|
+
&::before {
|
|
347
|
+
content: '\e931';
|
|
348
|
+
}
|
|
349
|
+
}
|
|
218
350
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './material3.scss';
|
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
& .e-stroke.e-template,
|
|
100
100
|
& .e-pen-stroke-color.e-template {
|
|
101
101
|
& .e-caret::before {
|
|
102
|
-
content: '\
|
|
102
|
+
content: '\e739';
|
|
103
103
|
}
|
|
104
104
|
}
|
|
105
105
|
|
|
@@ -110,6 +110,126 @@
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
}
|
|
113
|
+
|
|
114
|
+
& .e-custom {
|
|
115
|
+
&::before {
|
|
116
|
+
content: '\e8a9';
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
& .e-circle {
|
|
121
|
+
&::before {
|
|
122
|
+
content: '\e7ca';
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
& .e-square{
|
|
127
|
+
&::before {
|
|
128
|
+
content: '\e8aa';
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
& .e-custom-a {
|
|
133
|
+
&::before {
|
|
134
|
+
content: '\e8ab';
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
& .e-custom-b {
|
|
139
|
+
&::before {
|
|
140
|
+
content: '\e8ac';
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
& .e-custom-c {
|
|
145
|
+
&::before {
|
|
146
|
+
content: '\e8ad';
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
& .e-custom-d {
|
|
151
|
+
&::before {
|
|
152
|
+
content: '\e8ae';
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
& .e-custom-e {
|
|
157
|
+
&::before {
|
|
158
|
+
content: '\e8af';
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
& .e-horizontal-flip {
|
|
163
|
+
&::before {
|
|
164
|
+
content: '\e8a3';
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
& .e-vertical-flip {
|
|
169
|
+
&::before {
|
|
170
|
+
content: '\e8a4';
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
& .e-clock-wise {
|
|
175
|
+
&::before {
|
|
176
|
+
content: '\e8a6';
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
& .e-anti-clock-wise {
|
|
181
|
+
&::before {
|
|
182
|
+
content: '\e8a5';
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
& .e-rectangle {
|
|
187
|
+
&::before {
|
|
188
|
+
content: '\e723';
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
& .e-circle {
|
|
193
|
+
&::before {
|
|
194
|
+
content: '\e7ca';
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
& .e-triangle {
|
|
199
|
+
&::before {
|
|
200
|
+
content: '\e89c';
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
& .e-line {
|
|
205
|
+
&::before {
|
|
206
|
+
content: '\e819';
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
& .e-add-text {
|
|
211
|
+
&::before {
|
|
212
|
+
content: '\e82e';
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
& .e-free-pen {
|
|
217
|
+
&::before {
|
|
218
|
+
content: '\e7db';
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
& .e-arrow {
|
|
223
|
+
&::before {
|
|
224
|
+
content: '\e669';
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
& .e-path {
|
|
229
|
+
&::before {
|
|
230
|
+
content: '\e931';
|
|
231
|
+
}
|
|
232
|
+
}
|
|
113
233
|
}
|
|
114
234
|
}
|
|
115
235
|
|
|
@@ -227,4 +347,16 @@
|
|
|
227
347
|
content: '\e82e';
|
|
228
348
|
}
|
|
229
349
|
}
|
|
350
|
+
|
|
351
|
+
& .e-arrow {
|
|
352
|
+
&::before {
|
|
353
|
+
content: '\e669';
|
|
354
|
+
}
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
& .e-path {
|
|
358
|
+
&::before {
|
|
359
|
+
content: '\e931';
|
|
360
|
+
}
|
|
361
|
+
}
|
|
230
362
|
}
|
|
@@ -98,6 +98,126 @@
|
|
|
98
98
|
}
|
|
99
99
|
}
|
|
100
100
|
}
|
|
101
|
+
|
|
102
|
+
& .e-custom {
|
|
103
|
+
&::before {
|
|
104
|
+
content: '\e8a9';
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
& .e-circle {
|
|
109
|
+
&::before {
|
|
110
|
+
content: '\e7ca';
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
& .e-square{
|
|
115
|
+
&::before {
|
|
116
|
+
content: '\e8aa';
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
& .e-custom-a {
|
|
121
|
+
&::before {
|
|
122
|
+
content: '\e8ab';
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
& .e-custom-b {
|
|
127
|
+
&::before {
|
|
128
|
+
content: '\e8ac';
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
& .e-custom-c {
|
|
133
|
+
&::before {
|
|
134
|
+
content: '\e8ad';
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
& .e-custom-d {
|
|
139
|
+
&::before {
|
|
140
|
+
content: '\e8ae';
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
& .e-custom-e {
|
|
145
|
+
&::before {
|
|
146
|
+
content: '\e8af';
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
& .e-horizontal-flip {
|
|
151
|
+
&::before {
|
|
152
|
+
content: '\e8a3';
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
& .e-vertical-flip {
|
|
157
|
+
&::before {
|
|
158
|
+
content: '\e8a4';
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
& .e-clock-wise {
|
|
163
|
+
&::before {
|
|
164
|
+
content: '\e8a6';
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
& .e-anti-clock-wise {
|
|
169
|
+
&::before {
|
|
170
|
+
content: '\e8a5';
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
& .e-rectangle {
|
|
175
|
+
&::before {
|
|
176
|
+
content: '\e723';
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
& .e-circle {
|
|
181
|
+
&::before {
|
|
182
|
+
content: '\e7ca';
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
& .e-triangle {
|
|
187
|
+
&::before {
|
|
188
|
+
content: '\e89c';
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
& .e-line {
|
|
193
|
+
&::before {
|
|
194
|
+
content: '\e819';
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
& .e-add-text {
|
|
199
|
+
&::before {
|
|
200
|
+
content: '\e82e';
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
& .e-free-pen {
|
|
205
|
+
&::before {
|
|
206
|
+
content: '\e7db';
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
& .e-arrow {
|
|
211
|
+
&::before {
|
|
212
|
+
content: '\e669';
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
& .e-path {
|
|
217
|
+
&::before {
|
|
218
|
+
content: '\e931';
|
|
219
|
+
}
|
|
220
|
+
}
|
|
101
221
|
}
|
|
102
222
|
}
|
|
103
223
|
|
|
@@ -215,4 +335,16 @@
|
|
|
215
335
|
content: '\e82e';
|
|
216
336
|
}
|
|
217
337
|
}
|
|
338
|
+
|
|
339
|
+
& .e-arrow {
|
|
340
|
+
&::before {
|
|
341
|
+
content: '\e669';
|
|
342
|
+
}
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
& .e-path {
|
|
346
|
+
&::before {
|
|
347
|
+
content: '\e931';
|
|
348
|
+
}
|
|
349
|
+
}
|
|
218
350
|
}
|
|
@@ -77,6 +77,66 @@
|
|
|
77
77
|
.e-image-editor .e-fill.e-template .e-caret::before {
|
|
78
78
|
content: "\e35c";
|
|
79
79
|
}
|
|
80
|
+
.e-image-editor .e-custom::before {
|
|
81
|
+
content: "\e964";
|
|
82
|
+
}
|
|
83
|
+
.e-image-editor .e-circle::before {
|
|
84
|
+
content: "\e671";
|
|
85
|
+
}
|
|
86
|
+
.e-image-editor .e-square::before {
|
|
87
|
+
content: "\e965";
|
|
88
|
+
}
|
|
89
|
+
.e-image-editor .e-custom-a::before {
|
|
90
|
+
content: "\e966";
|
|
91
|
+
}
|
|
92
|
+
.e-image-editor .e-custom-b::before {
|
|
93
|
+
content: "\e967";
|
|
94
|
+
}
|
|
95
|
+
.e-image-editor .e-custom-c::before {
|
|
96
|
+
content: "\e968";
|
|
97
|
+
}
|
|
98
|
+
.e-image-editor .e-custom-d::before {
|
|
99
|
+
content: "\e96a";
|
|
100
|
+
}
|
|
101
|
+
.e-image-editor .e-custom-e::before {
|
|
102
|
+
content: "\e96b";
|
|
103
|
+
}
|
|
104
|
+
.e-image-editor .e-horizontal-flip::before {
|
|
105
|
+
content: "\e95c";
|
|
106
|
+
}
|
|
107
|
+
.e-image-editor .e-vertical-flip::before {
|
|
108
|
+
content: "\e95d";
|
|
109
|
+
}
|
|
110
|
+
.e-image-editor .e-clock-wise::before {
|
|
111
|
+
content: "\e960";
|
|
112
|
+
}
|
|
113
|
+
.e-image-editor .e-anti-clock-wise::before {
|
|
114
|
+
content: "\e95f";
|
|
115
|
+
}
|
|
116
|
+
.e-image-editor .e-rectangle::before {
|
|
117
|
+
content: "\e670";
|
|
118
|
+
}
|
|
119
|
+
.e-image-editor .e-circle::before {
|
|
120
|
+
content: "\e671";
|
|
121
|
+
}
|
|
122
|
+
.e-image-editor .e-triangle::before {
|
|
123
|
+
content: "\e954";
|
|
124
|
+
}
|
|
125
|
+
.e-image-editor .e-line::before {
|
|
126
|
+
content: "\e668";
|
|
127
|
+
}
|
|
128
|
+
.e-image-editor .e-add-text::before {
|
|
129
|
+
content: "\e35b";
|
|
130
|
+
}
|
|
131
|
+
.e-image-editor .e-free-pen::before {
|
|
132
|
+
content: "\e737";
|
|
133
|
+
}
|
|
134
|
+
.e-image-editor .e-arrow::before {
|
|
135
|
+
content: "\e669";
|
|
136
|
+
}
|
|
137
|
+
.e-image-editor .e-path::before {
|
|
138
|
+
content: "\e931";
|
|
139
|
+
}
|
|
80
140
|
|
|
81
141
|
.e-dropdown-popup.e-image-popup .e-custom::before {
|
|
82
142
|
content: "\e964";
|
|
@@ -132,6 +192,17 @@
|
|
|
132
192
|
.e-dropdown-popup.e-image-popup .e-vertical-flip::before {
|
|
133
193
|
content: "\e95d";
|
|
134
194
|
}
|
|
195
|
+
.e-dropdown-popup.e-image-popup .e-arrow::before {
|
|
196
|
+
content: "\e669";
|
|
197
|
+
}
|
|
198
|
+
.e-dropdown-popup.e-image-popup .e-path::before {
|
|
199
|
+
content: "\e931";
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.e-ie-toolbar-upload-div.e-hide,
|
|
203
|
+
.e-ie-toolbar-upload-btn.e-hide {
|
|
204
|
+
display: none;
|
|
205
|
+
}
|
|
135
206
|
|
|
136
207
|
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
137
208
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
@@ -146,11 +217,6 @@
|
|
|
146
217
|
height: 48px !important; /* stylelint-disable-line declaration-no-important */
|
|
147
218
|
min-height: 48px !important; /* stylelint-disable-line declaration-no-important */
|
|
148
219
|
}
|
|
149
|
-
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items,
|
|
150
|
-
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items {
|
|
151
|
-
height: 48px !important; /* stylelint-disable-line declaration-no-important */
|
|
152
|
-
min-height: 48px !important; /* stylelint-disable-line declaration-no-important */
|
|
153
|
-
}
|
|
154
220
|
.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,
|
|
155
221
|
.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 {
|
|
156
222
|
font-size: 18px;
|
|
@@ -218,9 +284,6 @@
|
|
|
218
284
|
.e-image-editor .e-toolbar .e-toolbar-items .e-image-upload .e-image-upload .e-upload {
|
|
219
285
|
border: none;
|
|
220
286
|
}
|
|
221
|
-
.e-image-editor .e-toolbar .e-toolbar-items .e-image-upload .e-icons.e-upload-icon {
|
|
222
|
-
margin-top: 7px;
|
|
223
|
-
}
|
|
224
287
|
.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-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 {
|
|
225
288
|
font-size: 16px;
|
|
226
289
|
}
|
|
@@ -244,7 +307,7 @@
|
|
|
244
307
|
.e-image-editor .e-toolbar-area + .e-canvas-wrapper {
|
|
245
308
|
border-top: 1px solid #757575;
|
|
246
309
|
}
|
|
247
|
-
.e-image-editor .e-canvas-wrapper .e-textarea {
|
|
310
|
+
.e-image-editor .e-toolbar-area + .e-canvas-wrapper .e-textarea {
|
|
248
311
|
line-height: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
249
312
|
}
|
|
250
313
|
.e-image-editor .e-bottom-toolbar {
|
|
@@ -263,11 +326,11 @@
|
|
|
263
326
|
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
264
327
|
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
265
328
|
}
|
|
266
|
-
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper {
|
|
329
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper {
|
|
267
330
|
border: 2px solid transparent;
|
|
268
331
|
height: 100px;
|
|
269
332
|
}
|
|
270
|
-
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item:hover .filterwrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filterwrapper {
|
|
333
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item:hover .filterwrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item:hover .filter-wrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filterwrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filter-wrapper {
|
|
271
334
|
border-top: 2px solid;
|
|
272
335
|
}
|
|
273
336
|
.e-image-editor .e-contextual-toolbar-wrapper .e-slider-container {
|
|
@@ -283,7 +346,7 @@
|
|
|
283
346
|
border-top: 1px solid #757575;
|
|
284
347
|
border-bottom: 1px solid #757575;
|
|
285
348
|
}
|
|
286
|
-
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item:hover .filterwrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filterwrapper {
|
|
349
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item:hover .filterwrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filterwrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item:hover .filter-wrapper, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filter-wrapper {
|
|
287
350
|
border-color: #7d7d7d;
|
|
288
351
|
}
|
|
289
352
|
.e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn .e-icons {
|
|
@@ -296,24 +359,24 @@
|
|
|
296
359
|
background: inherit;
|
|
297
360
|
border: none;
|
|
298
361
|
margin-top: 0;
|
|
299
|
-
background
|
|
362
|
+
background: #212121;
|
|
300
363
|
color: #fff;
|
|
301
364
|
}
|
|
302
365
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-caret-hide {
|
|
303
366
|
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
304
367
|
}
|
|
305
368
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
|
|
306
|
-
background
|
|
369
|
+
background: #6e6e6e;
|
|
307
370
|
box-shadow: none;
|
|
308
371
|
color: #fff;
|
|
309
372
|
}
|
|
310
373
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
|
|
311
|
-
background
|
|
374
|
+
background: #878787;
|
|
312
375
|
box-shadow: none;
|
|
313
376
|
color: #fff;
|
|
314
377
|
}
|
|
315
378
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
|
|
316
|
-
background
|
|
379
|
+
background: #7d7d7d;
|
|
317
380
|
box-shadow: none;
|
|
318
381
|
color: #fff;
|
|
319
382
|
}
|