@syncfusion/ej2-image-editor 20.4.49 → 21.1.35
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/CHANGELOG.md +16 -0
- 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 +4119 -1956
- package/dist/es6/ej2-image-editor.es2015.js.map +1 -1
- package/dist/es6/ej2-image-editor.es5.js +4227 -2059
- 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/image-editor-model.d.ts +306 -100
- package/src/image-editor/image-editor.d.ts +853 -276
- package/src/image-editor/image-editor.js +4227 -2060
- package/styles/bootstrap-dark.css +10 -5
- package/styles/bootstrap.css +10 -5
- package/styles/bootstrap4.css +10 -5
- package/styles/bootstrap5-dark.css +12 -8
- package/styles/bootstrap5.css +12 -8
- package/styles/fabric-dark.css +10 -5
- package/styles/fabric.css +10 -5
- package/styles/fluent-dark.css +10 -5
- package/styles/fluent.css +10 -5
- package/styles/highcontrast-light.css +10 -5
- package/styles/highcontrast.css +10 -5
- package/styles/image-editor/_layout.scss +7 -11
- package/styles/image-editor/_theme.scss +4 -4
- package/styles/image-editor/bootstrap-dark.css +10 -5
- package/styles/image-editor/bootstrap.css +10 -5
- package/styles/image-editor/bootstrap4.css +10 -5
- package/styles/image-editor/bootstrap5-dark.css +12 -8
- package/styles/image-editor/bootstrap5.css +12 -8
- package/styles/image-editor/fabric-dark.css +10 -5
- package/styles/image-editor/fabric.css +10 -5
- package/styles/image-editor/fluent-dark.css +10 -5
- package/styles/image-editor/fluent.css +10 -5
- package/styles/image-editor/highcontrast-light.css +10 -5
- package/styles/image-editor/highcontrast.css +10 -5
- package/styles/image-editor/material-dark.css +10 -13
- package/styles/image-editor/material.css +10 -8
- package/styles/image-editor/tailwind-dark.css +10 -5
- package/styles/image-editor/tailwind.css +10 -5
- package/styles/material-dark.css +10 -13
- package/styles/material.css +10 -8
- package/styles/tailwind-dark.css +10 -5
- package/styles/tailwind.css +10 -5
- package/styles/image-editor/_material3-definition.scss +0 -11
|
@@ -123,6 +123,11 @@
|
|
|
123
123
|
content: "\e970";
|
|
124
124
|
}
|
|
125
125
|
|
|
126
|
+
.e-ie-toolbar-upload-div.e-hide,
|
|
127
|
+
.e-ie-toolbar-upload-btn.e-hide {
|
|
128
|
+
display: none;
|
|
129
|
+
}
|
|
130
|
+
|
|
126
131
|
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
127
132
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
128
133
|
}
|
|
@@ -228,7 +233,7 @@
|
|
|
228
233
|
.e-image-editor .e-toolbar-area + .e-canvas-wrapper {
|
|
229
234
|
border-top: 1px solid #acacac;
|
|
230
235
|
}
|
|
231
|
-
.e-image-editor .e-canvas-wrapper .e-textarea {
|
|
236
|
+
.e-image-editor .e-toolbar-area + .e-canvas-wrapper .e-textarea {
|
|
232
237
|
line-height: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
233
238
|
}
|
|
234
239
|
.e-image-editor .e-bottom-toolbar {
|
|
@@ -280,24 +285,24 @@
|
|
|
280
285
|
background: inherit;
|
|
281
286
|
border: none;
|
|
282
287
|
margin-top: 2px;
|
|
283
|
-
background
|
|
288
|
+
background: #131313;
|
|
284
289
|
color: #f0f0f0;
|
|
285
290
|
}
|
|
286
291
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-caret-hide {
|
|
287
292
|
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
288
293
|
}
|
|
289
294
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
|
|
290
|
-
background
|
|
295
|
+
background: #313131;
|
|
291
296
|
box-shadow: none;
|
|
292
297
|
color: #f0f0f0;
|
|
293
298
|
}
|
|
294
299
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
|
|
295
|
-
background
|
|
300
|
+
background: #2a2a2a;
|
|
296
301
|
box-shadow: none;
|
|
297
302
|
color: #fff;
|
|
298
303
|
}
|
|
299
304
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
|
|
300
|
-
background
|
|
305
|
+
background: #2a2a2a;
|
|
301
306
|
box-shadow: none;
|
|
302
307
|
color: #fff;
|
|
303
308
|
}
|
|
@@ -123,6 +123,11 @@
|
|
|
123
123
|
content: "\e970";
|
|
124
124
|
}
|
|
125
125
|
|
|
126
|
+
.e-ie-toolbar-upload-div.e-hide,
|
|
127
|
+
.e-ie-toolbar-upload-btn.e-hide {
|
|
128
|
+
display: none;
|
|
129
|
+
}
|
|
130
|
+
|
|
126
131
|
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
127
132
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
128
133
|
}
|
|
@@ -228,7 +233,7 @@
|
|
|
228
233
|
.e-image-editor .e-toolbar-area + .e-canvas-wrapper {
|
|
229
234
|
border-top: 1px solid #ccc;
|
|
230
235
|
}
|
|
231
|
-
.e-image-editor .e-canvas-wrapper .e-textarea {
|
|
236
|
+
.e-image-editor .e-toolbar-area + .e-canvas-wrapper .e-textarea {
|
|
232
237
|
line-height: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
233
238
|
}
|
|
234
239
|
.e-image-editor .e-bottom-toolbar {
|
|
@@ -280,24 +285,24 @@
|
|
|
280
285
|
background: inherit;
|
|
281
286
|
border: none;
|
|
282
287
|
margin-top: 2px;
|
|
283
|
-
background
|
|
288
|
+
background: #f8f8f8;
|
|
284
289
|
color: #333;
|
|
285
290
|
}
|
|
286
291
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-caret-hide {
|
|
287
292
|
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
288
293
|
}
|
|
289
294
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
|
|
290
|
-
background
|
|
295
|
+
background: #e6e6e6;
|
|
291
296
|
box-shadow: none;
|
|
292
297
|
color: #333;
|
|
293
298
|
}
|
|
294
299
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
|
|
295
|
-
background
|
|
300
|
+
background: #e6e6e6;
|
|
296
301
|
box-shadow: none;
|
|
297
302
|
color: #333;
|
|
298
303
|
}
|
|
299
304
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
|
|
300
|
-
background
|
|
305
|
+
background: #e6e6e6;
|
|
301
306
|
box-shadow: none;
|
|
302
307
|
color: #333;
|
|
303
308
|
}
|
|
@@ -123,6 +123,11 @@
|
|
|
123
123
|
content: "\e95f";
|
|
124
124
|
}
|
|
125
125
|
|
|
126
|
+
.e-ie-toolbar-upload-div.e-hide,
|
|
127
|
+
.e-ie-toolbar-upload-btn.e-hide {
|
|
128
|
+
display: none;
|
|
129
|
+
}
|
|
130
|
+
|
|
126
131
|
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
127
132
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
128
133
|
}
|
|
@@ -226,7 +231,7 @@
|
|
|
226
231
|
.e-image-editor .e-toolbar-area + .e-canvas-wrapper {
|
|
227
232
|
border-top: 1px solid #dee2e6;
|
|
228
233
|
}
|
|
229
|
-
.e-image-editor .e-canvas-wrapper .e-textarea {
|
|
234
|
+
.e-image-editor .e-toolbar-area + .e-canvas-wrapper .e-textarea {
|
|
230
235
|
line-height: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
231
236
|
}
|
|
232
237
|
.e-image-editor .e-bottom-toolbar {
|
|
@@ -275,24 +280,24 @@
|
|
|
275
280
|
background: inherit;
|
|
276
281
|
border: none;
|
|
277
282
|
margin-top: 2px;
|
|
278
|
-
background
|
|
283
|
+
background: #f8f9fa;
|
|
279
284
|
color: #495057;
|
|
280
285
|
}
|
|
281
286
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-caret-hide {
|
|
282
287
|
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
283
288
|
}
|
|
284
289
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
|
|
285
|
-
background
|
|
290
|
+
background: #5a6268;
|
|
286
291
|
box-shadow: none;
|
|
287
292
|
color: #fff;
|
|
288
293
|
}
|
|
289
294
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
|
|
290
|
-
background
|
|
295
|
+
background: #6c757d;
|
|
291
296
|
box-shadow: none;
|
|
292
297
|
color: #fff;
|
|
293
298
|
}
|
|
294
299
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
|
|
295
|
-
background
|
|
300
|
+
background: #545b62;
|
|
296
301
|
box-shadow: none;
|
|
297
302
|
color: #fff;
|
|
298
303
|
}
|
|
@@ -134,6 +134,11 @@
|
|
|
134
134
|
content: "\e82e";
|
|
135
135
|
}
|
|
136
136
|
|
|
137
|
+
.e-ie-toolbar-upload-div.e-hide,
|
|
138
|
+
.e-ie-toolbar-upload-btn.e-hide {
|
|
139
|
+
display: none;
|
|
140
|
+
}
|
|
141
|
+
|
|
137
142
|
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
138
143
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
139
144
|
}
|
|
@@ -155,6 +160,7 @@
|
|
|
155
160
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
156
161
|
font-size: 20px;
|
|
157
162
|
padding-top: 4px;
|
|
163
|
+
padding-bottom: 4px;
|
|
158
164
|
}
|
|
159
165
|
.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-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,
|
|
160
166
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
@@ -203,6 +209,7 @@
|
|
|
203
209
|
.e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
204
210
|
font-size: 18px;
|
|
205
211
|
padding-top: 4px;
|
|
212
|
+
padding-bottom: 4px;
|
|
206
213
|
}
|
|
207
214
|
.e-image-editor .e-toolbar .e-toolbar-items .e-upload {
|
|
208
215
|
border: none;
|
|
@@ -210,9 +217,6 @@
|
|
|
210
217
|
.e-image-editor .e-toolbar .e-toolbar-items .e-file-select-wrap {
|
|
211
218
|
padding: 0;
|
|
212
219
|
}
|
|
213
|
-
.e-image-editor .e-toolbar .e-toolbar-items .e-file-select-wrap .e-btn-icon {
|
|
214
|
-
margin-top: -2px !important; /* stylelint-disable-line declaration-no-important */
|
|
215
|
-
}
|
|
216
220
|
.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 {
|
|
217
221
|
display: none;
|
|
218
222
|
}
|
|
@@ -245,7 +249,7 @@
|
|
|
245
249
|
.e-image-editor .e-toolbar-area + .e-canvas-wrapper {
|
|
246
250
|
border-top: 1px solid #343a40;
|
|
247
251
|
}
|
|
248
|
-
.e-image-editor .e-canvas-wrapper .e-textarea {
|
|
252
|
+
.e-image-editor .e-toolbar-area + .e-canvas-wrapper .e-textarea {
|
|
249
253
|
line-height: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
250
254
|
}
|
|
251
255
|
.e-image-editor .e-bottom-toolbar {
|
|
@@ -297,24 +301,24 @@
|
|
|
297
301
|
background: inherit;
|
|
298
302
|
border: none;
|
|
299
303
|
margin-top: -1px;
|
|
300
|
-
background
|
|
304
|
+
background: #282d31;
|
|
301
305
|
color: #adb5bd;
|
|
302
306
|
}
|
|
303
307
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-caret-hide {
|
|
304
308
|
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
305
309
|
}
|
|
306
310
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
|
|
307
|
-
background
|
|
311
|
+
background: #5c636a;
|
|
308
312
|
box-shadow: none;
|
|
309
313
|
color: #fff;
|
|
310
314
|
}
|
|
311
315
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
|
|
312
|
-
background
|
|
316
|
+
background: #5c636a;
|
|
313
317
|
box-shadow: none;
|
|
314
318
|
color: #fff;
|
|
315
319
|
}
|
|
316
320
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
|
|
317
|
-
background
|
|
321
|
+
background: #565e64;
|
|
318
322
|
box-shadow: none;
|
|
319
323
|
color: #fff;
|
|
320
324
|
}
|
|
@@ -134,6 +134,11 @@
|
|
|
134
134
|
content: "\e82e";
|
|
135
135
|
}
|
|
136
136
|
|
|
137
|
+
.e-ie-toolbar-upload-div.e-hide,
|
|
138
|
+
.e-ie-toolbar-upload-btn.e-hide {
|
|
139
|
+
display: none;
|
|
140
|
+
}
|
|
141
|
+
|
|
137
142
|
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
138
143
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
139
144
|
}
|
|
@@ -155,6 +160,7 @@
|
|
|
155
160
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
156
161
|
font-size: 20px;
|
|
157
162
|
padding-top: 4px;
|
|
163
|
+
padding-bottom: 4px;
|
|
158
164
|
}
|
|
159
165
|
.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-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,
|
|
160
166
|
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
@@ -203,6 +209,7 @@
|
|
|
203
209
|
.e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
204
210
|
font-size: 18px;
|
|
205
211
|
padding-top: 4px;
|
|
212
|
+
padding-bottom: 4px;
|
|
206
213
|
}
|
|
207
214
|
.e-image-editor .e-toolbar .e-toolbar-items .e-upload {
|
|
208
215
|
border: none;
|
|
@@ -210,9 +217,6 @@
|
|
|
210
217
|
.e-image-editor .e-toolbar .e-toolbar-items .e-file-select-wrap {
|
|
211
218
|
padding: 0;
|
|
212
219
|
}
|
|
213
|
-
.e-image-editor .e-toolbar .e-toolbar-items .e-file-select-wrap .e-btn-icon {
|
|
214
|
-
margin-top: -2px !important; /* stylelint-disable-line declaration-no-important */
|
|
215
|
-
}
|
|
216
220
|
.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 {
|
|
217
221
|
display: none;
|
|
218
222
|
}
|
|
@@ -245,7 +249,7 @@
|
|
|
245
249
|
.e-image-editor .e-toolbar-area + .e-canvas-wrapper {
|
|
246
250
|
border-top: 1px solid #e9ecef;
|
|
247
251
|
}
|
|
248
|
-
.e-image-editor .e-canvas-wrapper .e-textarea {
|
|
252
|
+
.e-image-editor .e-toolbar-area + .e-canvas-wrapper .e-textarea {
|
|
249
253
|
line-height: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
250
254
|
}
|
|
251
255
|
.e-image-editor .e-bottom-toolbar {
|
|
@@ -297,24 +301,24 @@
|
|
|
297
301
|
background: inherit;
|
|
298
302
|
border: none;
|
|
299
303
|
margin-top: -1px;
|
|
300
|
-
background
|
|
304
|
+
background: #f8f9fa;
|
|
301
305
|
color: #6c757d;
|
|
302
306
|
}
|
|
303
307
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-caret-hide {
|
|
304
308
|
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
305
309
|
}
|
|
306
310
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
|
|
307
|
-
background
|
|
311
|
+
background: #5c636a;
|
|
308
312
|
box-shadow: none;
|
|
309
313
|
color: #fff;
|
|
310
314
|
}
|
|
311
315
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
|
|
312
|
-
background
|
|
316
|
+
background: #5c636a;
|
|
313
317
|
box-shadow: none;
|
|
314
318
|
color: #fff;
|
|
315
319
|
}
|
|
316
320
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
|
|
317
|
-
background
|
|
321
|
+
background: #565e64;
|
|
318
322
|
box-shadow: none;
|
|
319
323
|
color: #fff;
|
|
320
324
|
}
|
|
@@ -123,6 +123,11 @@
|
|
|
123
123
|
content: "\e952";
|
|
124
124
|
}
|
|
125
125
|
|
|
126
|
+
.e-ie-toolbar-upload-div.e-hide,
|
|
127
|
+
.e-ie-toolbar-upload-btn.e-hide {
|
|
128
|
+
display: none;
|
|
129
|
+
}
|
|
130
|
+
|
|
126
131
|
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
127
132
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
128
133
|
}
|
|
@@ -228,7 +233,7 @@
|
|
|
228
233
|
.e-image-editor .e-toolbar-area + .e-canvas-wrapper {
|
|
229
234
|
border-top: 1px solid #414040;
|
|
230
235
|
}
|
|
231
|
-
.e-image-editor .e-canvas-wrapper .e-textarea {
|
|
236
|
+
.e-image-editor .e-toolbar-area + .e-canvas-wrapper .e-textarea {
|
|
232
237
|
line-height: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
233
238
|
}
|
|
234
239
|
.e-image-editor .e-bottom-toolbar {
|
|
@@ -280,24 +285,24 @@
|
|
|
280
285
|
background: inherit;
|
|
281
286
|
border: none;
|
|
282
287
|
margin-top: 0;
|
|
283
|
-
background
|
|
288
|
+
background: #333232;
|
|
284
289
|
color: #dadada;
|
|
285
290
|
}
|
|
286
291
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-caret-hide {
|
|
287
292
|
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
288
293
|
}
|
|
289
294
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
|
|
290
|
-
background
|
|
295
|
+
background: #514f4f;
|
|
291
296
|
box-shadow: none;
|
|
292
297
|
color: #fff;
|
|
293
298
|
}
|
|
294
299
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
|
|
295
|
-
background
|
|
300
|
+
background: #414040;
|
|
296
301
|
box-shadow: none;
|
|
297
302
|
color: #fff;
|
|
298
303
|
}
|
|
299
304
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
|
|
300
|
-
background
|
|
305
|
+
background: #6f6c6c;
|
|
301
306
|
box-shadow: none;
|
|
302
307
|
color: #fff;
|
|
303
308
|
}
|
|
@@ -123,6 +123,11 @@
|
|
|
123
123
|
content: "\e952";
|
|
124
124
|
}
|
|
125
125
|
|
|
126
|
+
.e-ie-toolbar-upload-div.e-hide,
|
|
127
|
+
.e-ie-toolbar-upload-btn.e-hide {
|
|
128
|
+
display: none;
|
|
129
|
+
}
|
|
130
|
+
|
|
126
131
|
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
127
132
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
128
133
|
}
|
|
@@ -228,7 +233,7 @@
|
|
|
228
233
|
.e-image-editor .e-toolbar-area + .e-canvas-wrapper {
|
|
229
234
|
border-top: 1px solid #eaeaea;
|
|
230
235
|
}
|
|
231
|
-
.e-image-editor .e-canvas-wrapper .e-textarea {
|
|
236
|
+
.e-image-editor .e-toolbar-area + .e-canvas-wrapper .e-textarea {
|
|
232
237
|
line-height: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
233
238
|
}
|
|
234
239
|
.e-image-editor .e-bottom-toolbar {
|
|
@@ -280,24 +285,24 @@
|
|
|
280
285
|
background: inherit;
|
|
281
286
|
border: none;
|
|
282
287
|
margin-top: 0;
|
|
283
|
-
background
|
|
288
|
+
background: #fff;
|
|
284
289
|
color: #333;
|
|
285
290
|
}
|
|
286
291
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-caret-hide {
|
|
287
292
|
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
288
293
|
}
|
|
289
294
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
|
|
290
|
-
background
|
|
295
|
+
background: #eaeaea;
|
|
291
296
|
box-shadow: none;
|
|
292
297
|
color: #000;
|
|
293
298
|
}
|
|
294
299
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
|
|
295
|
-
background
|
|
300
|
+
background: #f4f4f4;
|
|
296
301
|
box-shadow: none;
|
|
297
302
|
color: #333;
|
|
298
303
|
}
|
|
299
304
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
|
|
300
|
-
background
|
|
305
|
+
background: #c8c8c8;
|
|
301
306
|
box-shadow: none;
|
|
302
307
|
color: #000;
|
|
303
308
|
}
|
|
@@ -132,6 +132,11 @@
|
|
|
132
132
|
content: "\e82e";
|
|
133
133
|
}
|
|
134
134
|
|
|
135
|
+
.e-ie-toolbar-upload-div.e-hide,
|
|
136
|
+
.e-ie-toolbar-upload-btn.e-hide {
|
|
137
|
+
display: none;
|
|
138
|
+
}
|
|
139
|
+
|
|
135
140
|
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
136
141
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
137
142
|
}
|
|
@@ -235,7 +240,7 @@
|
|
|
235
240
|
.e-image-editor .e-toolbar-area + .e-canvas-wrapper {
|
|
236
241
|
border-top: 1px solid #292827;
|
|
237
242
|
}
|
|
238
|
-
.e-image-editor .e-canvas-wrapper .e-textarea {
|
|
243
|
+
.e-image-editor .e-toolbar-area + .e-canvas-wrapper .e-textarea {
|
|
239
244
|
line-height: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
240
245
|
}
|
|
241
246
|
.e-image-editor .e-bottom-toolbar {
|
|
@@ -287,24 +292,24 @@
|
|
|
287
292
|
background: inherit;
|
|
288
293
|
border: none;
|
|
289
294
|
margin-top: 2px;
|
|
290
|
-
background
|
|
295
|
+
background: #252423;
|
|
291
296
|
color: #a19f9d;
|
|
292
297
|
}
|
|
293
298
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-caret-hide {
|
|
294
299
|
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
295
300
|
}
|
|
296
301
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
|
|
297
|
-
background
|
|
302
|
+
background: #252423;
|
|
298
303
|
box-shadow: none;
|
|
299
304
|
color: #fff;
|
|
300
305
|
}
|
|
301
306
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
|
|
302
|
-
background
|
|
307
|
+
background: #252423;
|
|
303
308
|
box-shadow: none;
|
|
304
309
|
color: #fff;
|
|
305
310
|
}
|
|
306
311
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
|
|
307
|
-
background
|
|
312
|
+
background: #292827;
|
|
308
313
|
box-shadow: none;
|
|
309
314
|
color: #fff;
|
|
310
315
|
}
|
|
@@ -132,6 +132,11 @@
|
|
|
132
132
|
content: "\e82e";
|
|
133
133
|
}
|
|
134
134
|
|
|
135
|
+
.e-ie-toolbar-upload-div.e-hide,
|
|
136
|
+
.e-ie-toolbar-upload-btn.e-hide {
|
|
137
|
+
display: none;
|
|
138
|
+
}
|
|
139
|
+
|
|
135
140
|
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
136
141
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
137
142
|
}
|
|
@@ -235,7 +240,7 @@
|
|
|
235
240
|
.e-image-editor .e-toolbar-area + .e-canvas-wrapper {
|
|
236
241
|
border-top: 1px solid #edebe9;
|
|
237
242
|
}
|
|
238
|
-
.e-image-editor .e-canvas-wrapper .e-textarea {
|
|
243
|
+
.e-image-editor .e-toolbar-area + .e-canvas-wrapper .e-textarea {
|
|
239
244
|
line-height: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
240
245
|
}
|
|
241
246
|
.e-image-editor .e-bottom-toolbar {
|
|
@@ -287,24 +292,24 @@
|
|
|
287
292
|
background: inherit;
|
|
288
293
|
border: none;
|
|
289
294
|
margin-top: 2px;
|
|
290
|
-
background
|
|
295
|
+
background: #f3f2f1;
|
|
291
296
|
color: #605e5c;
|
|
292
297
|
}
|
|
293
298
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-caret-hide {
|
|
294
299
|
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
295
300
|
}
|
|
296
301
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
|
|
297
|
-
background
|
|
302
|
+
background: #f3f2f1;
|
|
298
303
|
box-shadow: none;
|
|
299
304
|
color: #323130;
|
|
300
305
|
}
|
|
301
306
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
|
|
302
|
-
background
|
|
307
|
+
background: #f3f2f1;
|
|
303
308
|
box-shadow: none;
|
|
304
309
|
color: #323130;
|
|
305
310
|
}
|
|
306
311
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
|
|
307
|
-
background
|
|
312
|
+
background: #edebe9;
|
|
308
313
|
box-shadow: none;
|
|
309
314
|
color: #323130;
|
|
310
315
|
}
|
|
@@ -123,6 +123,11 @@
|
|
|
123
123
|
content: "\e952";
|
|
124
124
|
}
|
|
125
125
|
|
|
126
|
+
.e-ie-toolbar-upload-div.e-hide,
|
|
127
|
+
.e-ie-toolbar-upload-btn.e-hide {
|
|
128
|
+
display: none;
|
|
129
|
+
}
|
|
130
|
+
|
|
126
131
|
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
127
132
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
128
133
|
}
|
|
@@ -226,7 +231,7 @@
|
|
|
226
231
|
.e-image-editor .e-toolbar-area + .e-canvas-wrapper {
|
|
227
232
|
border-top: 1px solid #000;
|
|
228
233
|
}
|
|
229
|
-
.e-image-editor .e-canvas-wrapper .e-textarea {
|
|
234
|
+
.e-image-editor .e-toolbar-area + .e-canvas-wrapper .e-textarea {
|
|
230
235
|
line-height: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
231
236
|
}
|
|
232
237
|
.e-image-editor .e-bottom-toolbar {
|
|
@@ -278,24 +283,24 @@
|
|
|
278
283
|
background: inherit;
|
|
279
284
|
border: none;
|
|
280
285
|
margin-top: 0;
|
|
281
|
-
background
|
|
286
|
+
background: #fff;
|
|
282
287
|
color: #000;
|
|
283
288
|
}
|
|
284
289
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-caret-hide {
|
|
285
290
|
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
286
291
|
}
|
|
287
292
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
|
|
288
|
-
background
|
|
293
|
+
background: #ecf;
|
|
289
294
|
box-shadow: none;
|
|
290
295
|
color: #000;
|
|
291
296
|
}
|
|
292
297
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
|
|
293
|
-
background
|
|
298
|
+
background: #fff;
|
|
294
299
|
box-shadow: none;
|
|
295
300
|
color: #000;
|
|
296
301
|
}
|
|
297
302
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
|
|
298
|
-
background
|
|
303
|
+
background: #400074;
|
|
299
304
|
box-shadow: none;
|
|
300
305
|
color: #fff;
|
|
301
306
|
}
|
|
@@ -123,6 +123,11 @@
|
|
|
123
123
|
content: "\e952";
|
|
124
124
|
}
|
|
125
125
|
|
|
126
|
+
.e-ie-toolbar-upload-div.e-hide,
|
|
127
|
+
.e-ie-toolbar-upload-btn.e-hide {
|
|
128
|
+
display: none;
|
|
129
|
+
}
|
|
130
|
+
|
|
126
131
|
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
127
132
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
128
133
|
}
|
|
@@ -226,7 +231,7 @@
|
|
|
226
231
|
.e-image-editor .e-toolbar-area + .e-canvas-wrapper {
|
|
227
232
|
border-top: 1px solid #fff;
|
|
228
233
|
}
|
|
229
|
-
.e-image-editor .e-canvas-wrapper .e-textarea {
|
|
234
|
+
.e-image-editor .e-toolbar-area + .e-canvas-wrapper .e-textarea {
|
|
230
235
|
line-height: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
231
236
|
}
|
|
232
237
|
.e-image-editor .e-bottom-toolbar {
|
|
@@ -278,24 +283,24 @@
|
|
|
278
283
|
background: inherit;
|
|
279
284
|
border: none;
|
|
280
285
|
margin-top: 0;
|
|
281
|
-
background
|
|
286
|
+
background: #000;
|
|
282
287
|
color: #fff;
|
|
283
288
|
}
|
|
284
289
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-caret-hide {
|
|
285
290
|
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
286
291
|
}
|
|
287
292
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
|
|
288
|
-
background
|
|
293
|
+
background: #685708;
|
|
289
294
|
box-shadow: none;
|
|
290
295
|
color: #fff;
|
|
291
296
|
}
|
|
292
297
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
|
|
293
|
-
background
|
|
298
|
+
background: #000;
|
|
294
299
|
box-shadow: none;
|
|
295
300
|
color: #fff;
|
|
296
301
|
}
|
|
297
302
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
|
|
298
|
-
background
|
|
303
|
+
background: #ffd939;
|
|
299
304
|
box-shadow: none;
|
|
300
305
|
color: #000;
|
|
301
306
|
}
|
|
@@ -133,6 +133,11 @@
|
|
|
133
133
|
content: "\e95d";
|
|
134
134
|
}
|
|
135
135
|
|
|
136
|
+
.e-ie-toolbar-upload-div.e-hide,
|
|
137
|
+
.e-ie-toolbar-upload-btn.e-hide {
|
|
138
|
+
display: none;
|
|
139
|
+
}
|
|
140
|
+
|
|
136
141
|
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
137
142
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
138
143
|
}
|
|
@@ -146,11 +151,6 @@
|
|
|
146
151
|
height: 48px !important; /* stylelint-disable-line declaration-no-important */
|
|
147
152
|
min-height: 48px !important; /* stylelint-disable-line declaration-no-important */
|
|
148
153
|
}
|
|
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
154
|
.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
155
|
.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
156
|
font-size: 18px;
|
|
@@ -218,9 +218,6 @@
|
|
|
218
218
|
.e-image-editor .e-toolbar .e-toolbar-items .e-image-upload .e-image-upload .e-upload {
|
|
219
219
|
border: none;
|
|
220
220
|
}
|
|
221
|
-
.e-image-editor .e-toolbar .e-toolbar-items .e-image-upload .e-icons.e-upload-icon {
|
|
222
|
-
margin-top: 7px;
|
|
223
|
-
}
|
|
224
221
|
.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
222
|
font-size: 16px;
|
|
226
223
|
}
|
|
@@ -244,7 +241,7 @@
|
|
|
244
241
|
.e-image-editor .e-toolbar-area + .e-canvas-wrapper {
|
|
245
242
|
border-top: 1px solid #757575;
|
|
246
243
|
}
|
|
247
|
-
.e-image-editor .e-canvas-wrapper .e-textarea {
|
|
244
|
+
.e-image-editor .e-toolbar-area + .e-canvas-wrapper .e-textarea {
|
|
248
245
|
line-height: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
249
246
|
}
|
|
250
247
|
.e-image-editor .e-bottom-toolbar {
|
|
@@ -296,24 +293,24 @@
|
|
|
296
293
|
background: inherit;
|
|
297
294
|
border: none;
|
|
298
295
|
margin-top: 0;
|
|
299
|
-
background
|
|
296
|
+
background: #212121;
|
|
300
297
|
color: #fff;
|
|
301
298
|
}
|
|
302
299
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-caret-hide {
|
|
303
300
|
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
304
301
|
}
|
|
305
302
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
|
|
306
|
-
background
|
|
303
|
+
background: #6e6e6e;
|
|
307
304
|
box-shadow: none;
|
|
308
305
|
color: #fff;
|
|
309
306
|
}
|
|
310
307
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
|
|
311
|
-
background
|
|
308
|
+
background: #878787;
|
|
312
309
|
box-shadow: none;
|
|
313
310
|
color: #fff;
|
|
314
311
|
}
|
|
315
312
|
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
|
|
316
|
-
background
|
|
313
|
+
background: #7d7d7d;
|
|
317
314
|
box-shadow: none;
|
|
318
315
|
color: #fff;
|
|
319
316
|
}
|