@syncfusion/ej2-image-editor 20.3.56 → 20.4.40
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 +16 -1
- package/CHANGELOG.md +5 -5
- package/README.md +65 -2
- 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 +6191 -4168
- package/dist/es6/ej2-image-editor.es2015.js.map +1 -1
- package/dist/es6/ej2-image-editor.es5.js +2505 -474
- 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 +23 -24
- package/src/image-editor/image-editor-model.d.ts +114 -20
- package/src/image-editor/image-editor.d.ts +251 -33
- package/src/image-editor/image-editor.js +2505 -473
- package/styles/bootstrap-dark.css +36 -0
- package/styles/bootstrap.css +36 -0
- package/styles/bootstrap4.css +36 -0
- package/styles/bootstrap5-dark.css +36 -0
- package/styles/bootstrap5.css +36 -0
- package/styles/fabric-dark.css +36 -0
- package/styles/fabric.css +36 -0
- package/styles/fluent-dark.css +36 -0
- package/styles/fluent.css +36 -0
- package/styles/highcontrast-light.css +36 -0
- package/styles/highcontrast.css +36 -0
- package/styles/image-editor/_bootstrap-dark-definition.scss +1 -0
- package/styles/image-editor/_bootstrap-definition.scss +1 -0
- package/styles/image-editor/_bootstrap4-definition.scss +1 -0
- package/styles/image-editor/_bootstrap5-definition.scss +1 -0
- package/styles/image-editor/_fabric-dark-definition.scss +1 -0
- package/styles/image-editor/_fabric-definition.scss +1 -0
- package/styles/image-editor/_fluent-definition.scss +1 -0
- package/styles/image-editor/_fusionnew-definition.scss +1 -0
- package/styles/image-editor/_highcontrast-definition.scss +1 -0
- package/styles/image-editor/_highcontrast-light-definition.scss +1 -0
- package/styles/image-editor/_layout.scss +38 -0
- package/styles/image-editor/_material-dark-definition.scss +1 -0
- package/styles/image-editor/_material-definition.scss +1 -0
- package/styles/image-editor/_material3-definition.scss +1 -0
- package/styles/image-editor/_tailwind-definition.scss +1 -0
- package/styles/image-editor/_theme.scss +11 -0
- package/styles/image-editor/bootstrap-dark.css +36 -0
- package/styles/image-editor/bootstrap.css +36 -0
- package/styles/image-editor/bootstrap4.css +36 -0
- package/styles/image-editor/bootstrap5-dark.css +36 -0
- package/styles/image-editor/bootstrap5.css +36 -0
- package/styles/image-editor/fabric-dark.css +36 -0
- package/styles/image-editor/fabric.css +36 -0
- package/styles/image-editor/fluent-dark.css +36 -0
- package/styles/image-editor/fluent.css +36 -0
- package/styles/image-editor/highcontrast-light.css +36 -0
- package/styles/image-editor/highcontrast.css +36 -0
- package/styles/image-editor/material-dark.css +36 -0
- package/styles/image-editor/material.css +36 -0
- package/styles/image-editor/tailwind-dark.css +36 -0
- package/styles/image-editor/tailwind.css +36 -0
- package/styles/material-dark.css +36 -0
- package/styles/material.css +36 -0
- package/styles/tailwind-dark.css +36 -0
- package/styles/tailwind.css +36 -0
|
@@ -126,6 +126,10 @@
|
|
|
126
126
|
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
127
127
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
128
128
|
}
|
|
129
|
+
.e-device.e-image-editor .e-slider-container {
|
|
130
|
+
margin-left: calc(50% - 50px) !important; /* stylelint-disable-line declaration-no-important */
|
|
131
|
+
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
132
|
+
}
|
|
129
133
|
|
|
130
134
|
.e-bigger .e-image-editor .e-toolbar,
|
|
131
135
|
.e-image-editor.e-bigger .e-toolbar {
|
|
@@ -225,10 +229,42 @@
|
|
|
225
229
|
.e-image-editor .e-bottom-toolbar {
|
|
226
230
|
border-top: 1px solid #fff;
|
|
227
231
|
}
|
|
232
|
+
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
233
|
+
width: 100%;
|
|
234
|
+
z-index: 1;
|
|
235
|
+
}
|
|
236
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar {
|
|
237
|
+
height: 130px !important; /* stylelint-disable-line declaration-no-important */
|
|
238
|
+
}
|
|
239
|
+
.e-image-editor .e-contextual-toolbar-wrapper.e-hide {
|
|
240
|
+
display: none;
|
|
241
|
+
}
|
|
242
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
243
|
+
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
244
|
+
}
|
|
245
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper {
|
|
246
|
+
border: 2px solid transparent;
|
|
247
|
+
height: 100px;
|
|
248
|
+
}
|
|
249
|
+
.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 {
|
|
250
|
+
border-top: 2px solid;
|
|
251
|
+
}
|
|
252
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-slider-container {
|
|
253
|
+
margin-left: calc(50% - 137px);
|
|
254
|
+
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
255
|
+
}
|
|
228
256
|
|
|
229
257
|
.e-image-editor {
|
|
230
258
|
background: #000;
|
|
231
259
|
}
|
|
260
|
+
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
261
|
+
background: #000;
|
|
262
|
+
border-top: 1px solid #fff;
|
|
263
|
+
border-bottom: 1px solid #fff;
|
|
264
|
+
}
|
|
265
|
+
.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 {
|
|
266
|
+
border-color: #ffd939;
|
|
267
|
+
}
|
|
232
268
|
.e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn .e-icons {
|
|
233
269
|
color: #fff;
|
|
234
270
|
}
|
|
@@ -136,6 +136,10 @@
|
|
|
136
136
|
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
137
137
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
138
138
|
}
|
|
139
|
+
.e-device.e-image-editor .e-slider-container {
|
|
140
|
+
margin-left: calc(50% - 50px) !important; /* stylelint-disable-line declaration-no-important */
|
|
141
|
+
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
142
|
+
}
|
|
139
143
|
|
|
140
144
|
.e-bigger .e-image-editor .e-toolbar,
|
|
141
145
|
.e-image-editor.e-bigger .e-toolbar {
|
|
@@ -243,10 +247,42 @@
|
|
|
243
247
|
.e-image-editor .e-bottom-toolbar {
|
|
244
248
|
border-top: 1px solid #757575;
|
|
245
249
|
}
|
|
250
|
+
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
251
|
+
width: 100%;
|
|
252
|
+
z-index: 1;
|
|
253
|
+
}
|
|
254
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar {
|
|
255
|
+
height: 130px !important; /* stylelint-disable-line declaration-no-important */
|
|
256
|
+
}
|
|
257
|
+
.e-image-editor .e-contextual-toolbar-wrapper.e-hide {
|
|
258
|
+
display: none;
|
|
259
|
+
}
|
|
260
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
261
|
+
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
262
|
+
}
|
|
263
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper {
|
|
264
|
+
border: 2px solid transparent;
|
|
265
|
+
height: 100px;
|
|
266
|
+
}
|
|
267
|
+
.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 {
|
|
268
|
+
border-top: 2px solid;
|
|
269
|
+
}
|
|
270
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-slider-container {
|
|
271
|
+
margin-left: calc(50% - 137px);
|
|
272
|
+
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
273
|
+
}
|
|
246
274
|
|
|
247
275
|
.e-image-editor {
|
|
248
276
|
background: #292929;
|
|
249
277
|
}
|
|
278
|
+
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
279
|
+
background: #212121;
|
|
280
|
+
border-top: 1px solid #757575;
|
|
281
|
+
border-bottom: 1px solid #757575;
|
|
282
|
+
}
|
|
283
|
+
.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 {
|
|
284
|
+
border-color: #7d7d7d;
|
|
285
|
+
}
|
|
250
286
|
.e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn .e-icons {
|
|
251
287
|
color: #fff;
|
|
252
288
|
}
|
|
@@ -136,6 +136,10 @@
|
|
|
136
136
|
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
137
137
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
138
138
|
}
|
|
139
|
+
.e-device.e-image-editor .e-slider-container {
|
|
140
|
+
margin-left: calc(50% - 50px) !important; /* stylelint-disable-line declaration-no-important */
|
|
141
|
+
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
142
|
+
}
|
|
139
143
|
|
|
140
144
|
.e-bigger .e-image-editor .e-toolbar,
|
|
141
145
|
.e-image-editor.e-bigger .e-toolbar {
|
|
@@ -243,10 +247,42 @@
|
|
|
243
247
|
.e-image-editor .e-bottom-toolbar {
|
|
244
248
|
border-top: 1px solid #bdbdbd;
|
|
245
249
|
}
|
|
250
|
+
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
251
|
+
width: 100%;
|
|
252
|
+
z-index: 1;
|
|
253
|
+
}
|
|
254
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar {
|
|
255
|
+
height: 130px !important; /* stylelint-disable-line declaration-no-important */
|
|
256
|
+
}
|
|
257
|
+
.e-image-editor .e-contextual-toolbar-wrapper.e-hide {
|
|
258
|
+
display: none;
|
|
259
|
+
}
|
|
260
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
261
|
+
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
262
|
+
}
|
|
263
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper {
|
|
264
|
+
border: 2px solid transparent;
|
|
265
|
+
height: 100px;
|
|
266
|
+
}
|
|
267
|
+
.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 {
|
|
268
|
+
border-top: 2px solid;
|
|
269
|
+
}
|
|
270
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-slider-container {
|
|
271
|
+
margin-left: calc(50% - 137px);
|
|
272
|
+
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
273
|
+
}
|
|
246
274
|
|
|
247
275
|
.e-image-editor {
|
|
248
276
|
background: #eee;
|
|
249
277
|
}
|
|
278
|
+
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
279
|
+
background: #fafafa;
|
|
280
|
+
border-top: 1px solid #bdbdbd;
|
|
281
|
+
border-bottom: 1px solid #bdbdbd;
|
|
282
|
+
}
|
|
283
|
+
.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 {
|
|
284
|
+
border-color: rgba(184, 184, 184, 0.9584);
|
|
285
|
+
}
|
|
250
286
|
.e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn .e-icons {
|
|
251
287
|
color: #757575;
|
|
252
288
|
}
|
|
@@ -133,6 +133,10 @@
|
|
|
133
133
|
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
134
134
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
135
135
|
}
|
|
136
|
+
.e-device.e-image-editor .e-slider-container {
|
|
137
|
+
margin-left: calc(50% - 50px) !important; /* stylelint-disable-line declaration-no-important */
|
|
138
|
+
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
139
|
+
}
|
|
136
140
|
|
|
137
141
|
.e-bigger .e-image-editor .e-toolbar,
|
|
138
142
|
.e-image-editor.e-bigger .e-toolbar {
|
|
@@ -232,10 +236,42 @@
|
|
|
232
236
|
.e-image-editor .e-bottom-toolbar {
|
|
233
237
|
border-top: 1px solid #4b5563;
|
|
234
238
|
}
|
|
239
|
+
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
240
|
+
width: 100%;
|
|
241
|
+
z-index: 1;
|
|
242
|
+
}
|
|
243
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar {
|
|
244
|
+
height: 130px !important; /* stylelint-disable-line declaration-no-important */
|
|
245
|
+
}
|
|
246
|
+
.e-image-editor .e-contextual-toolbar-wrapper.e-hide {
|
|
247
|
+
display: none;
|
|
248
|
+
}
|
|
249
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
250
|
+
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
251
|
+
}
|
|
252
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper {
|
|
253
|
+
border: 2px solid transparent;
|
|
254
|
+
height: 100px;
|
|
255
|
+
}
|
|
256
|
+
.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 {
|
|
257
|
+
border-top: 2px solid;
|
|
258
|
+
}
|
|
259
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-slider-container {
|
|
260
|
+
margin-left: calc(50% - 137px);
|
|
261
|
+
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
262
|
+
}
|
|
235
263
|
|
|
236
264
|
.e-image-editor {
|
|
237
265
|
background: #4b5563;
|
|
238
266
|
}
|
|
267
|
+
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
268
|
+
background: #374151;
|
|
269
|
+
border-top: 1px solid #4b5563;
|
|
270
|
+
border-bottom: 1px solid #4b5563;
|
|
271
|
+
}
|
|
272
|
+
.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 {
|
|
273
|
+
border-color: #4b5563;
|
|
274
|
+
}
|
|
239
275
|
.e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn .e-icons {
|
|
240
276
|
color: #d1d5db;
|
|
241
277
|
}
|
|
@@ -133,6 +133,10 @@
|
|
|
133
133
|
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
134
134
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
135
135
|
}
|
|
136
|
+
.e-device.e-image-editor .e-slider-container {
|
|
137
|
+
margin-left: calc(50% - 50px) !important; /* stylelint-disable-line declaration-no-important */
|
|
138
|
+
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
139
|
+
}
|
|
136
140
|
|
|
137
141
|
.e-bigger .e-image-editor .e-toolbar,
|
|
138
142
|
.e-image-editor.e-bigger .e-toolbar {
|
|
@@ -232,10 +236,42 @@
|
|
|
232
236
|
.e-image-editor .e-bottom-toolbar {
|
|
233
237
|
border-top: 1px solid #e5e7eb;
|
|
234
238
|
}
|
|
239
|
+
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
240
|
+
width: 100%;
|
|
241
|
+
z-index: 1;
|
|
242
|
+
}
|
|
243
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar {
|
|
244
|
+
height: 130px !important; /* stylelint-disable-line declaration-no-important */
|
|
245
|
+
}
|
|
246
|
+
.e-image-editor .e-contextual-toolbar-wrapper.e-hide {
|
|
247
|
+
display: none;
|
|
248
|
+
}
|
|
249
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
250
|
+
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
251
|
+
}
|
|
252
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper {
|
|
253
|
+
border: 2px solid transparent;
|
|
254
|
+
height: 100px;
|
|
255
|
+
}
|
|
256
|
+
.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 {
|
|
257
|
+
border-top: 2px solid;
|
|
258
|
+
}
|
|
259
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-slider-container {
|
|
260
|
+
margin-left: calc(50% - 137px);
|
|
261
|
+
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
262
|
+
}
|
|
235
263
|
|
|
236
264
|
.e-image-editor {
|
|
237
265
|
background: #e5e7eb;
|
|
238
266
|
}
|
|
267
|
+
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
268
|
+
background: #f3f4f6;
|
|
269
|
+
border-top: 1px solid #e5e7eb;
|
|
270
|
+
border-bottom: 1px solid #e5e7eb;
|
|
271
|
+
}
|
|
272
|
+
.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 {
|
|
273
|
+
border-color: #e5e7eb;
|
|
274
|
+
}
|
|
239
275
|
.e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn .e-icons {
|
|
240
276
|
color: #6b7280;
|
|
241
277
|
}
|
package/styles/material-dark.css
CHANGED
|
@@ -136,6 +136,10 @@
|
|
|
136
136
|
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
137
137
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
138
138
|
}
|
|
139
|
+
.e-device.e-image-editor .e-slider-container {
|
|
140
|
+
margin-left: calc(50% - 50px) !important; /* stylelint-disable-line declaration-no-important */
|
|
141
|
+
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
142
|
+
}
|
|
139
143
|
|
|
140
144
|
.e-bigger .e-image-editor .e-toolbar,
|
|
141
145
|
.e-image-editor.e-bigger .e-toolbar {
|
|
@@ -243,10 +247,42 @@
|
|
|
243
247
|
.e-image-editor .e-bottom-toolbar {
|
|
244
248
|
border-top: 1px solid #757575;
|
|
245
249
|
}
|
|
250
|
+
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
251
|
+
width: 100%;
|
|
252
|
+
z-index: 1;
|
|
253
|
+
}
|
|
254
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar {
|
|
255
|
+
height: 130px !important; /* stylelint-disable-line declaration-no-important */
|
|
256
|
+
}
|
|
257
|
+
.e-image-editor .e-contextual-toolbar-wrapper.e-hide {
|
|
258
|
+
display: none;
|
|
259
|
+
}
|
|
260
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
261
|
+
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
262
|
+
}
|
|
263
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper {
|
|
264
|
+
border: 2px solid transparent;
|
|
265
|
+
height: 100px;
|
|
266
|
+
}
|
|
267
|
+
.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 {
|
|
268
|
+
border-top: 2px solid;
|
|
269
|
+
}
|
|
270
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-slider-container {
|
|
271
|
+
margin-left: calc(50% - 137px);
|
|
272
|
+
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
273
|
+
}
|
|
246
274
|
|
|
247
275
|
.e-image-editor {
|
|
248
276
|
background: #292929;
|
|
249
277
|
}
|
|
278
|
+
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
279
|
+
background: #212121;
|
|
280
|
+
border-top: 1px solid #757575;
|
|
281
|
+
border-bottom: 1px solid #757575;
|
|
282
|
+
}
|
|
283
|
+
.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 {
|
|
284
|
+
border-color: #7d7d7d;
|
|
285
|
+
}
|
|
250
286
|
.e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn .e-icons {
|
|
251
287
|
color: #fff;
|
|
252
288
|
}
|
package/styles/material.css
CHANGED
|
@@ -136,6 +136,10 @@
|
|
|
136
136
|
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
137
137
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
138
138
|
}
|
|
139
|
+
.e-device.e-image-editor .e-slider-container {
|
|
140
|
+
margin-left: calc(50% - 50px) !important; /* stylelint-disable-line declaration-no-important */
|
|
141
|
+
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
142
|
+
}
|
|
139
143
|
|
|
140
144
|
.e-bigger .e-image-editor .e-toolbar,
|
|
141
145
|
.e-image-editor.e-bigger .e-toolbar {
|
|
@@ -243,10 +247,42 @@
|
|
|
243
247
|
.e-image-editor .e-bottom-toolbar {
|
|
244
248
|
border-top: 1px solid #bdbdbd;
|
|
245
249
|
}
|
|
250
|
+
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
251
|
+
width: 100%;
|
|
252
|
+
z-index: 1;
|
|
253
|
+
}
|
|
254
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar {
|
|
255
|
+
height: 130px !important; /* stylelint-disable-line declaration-no-important */
|
|
256
|
+
}
|
|
257
|
+
.e-image-editor .e-contextual-toolbar-wrapper.e-hide {
|
|
258
|
+
display: none;
|
|
259
|
+
}
|
|
260
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
261
|
+
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
262
|
+
}
|
|
263
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper {
|
|
264
|
+
border: 2px solid transparent;
|
|
265
|
+
height: 100px;
|
|
266
|
+
}
|
|
267
|
+
.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 {
|
|
268
|
+
border-top: 2px solid;
|
|
269
|
+
}
|
|
270
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-slider-container {
|
|
271
|
+
margin-left: calc(50% - 137px);
|
|
272
|
+
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
273
|
+
}
|
|
246
274
|
|
|
247
275
|
.e-image-editor {
|
|
248
276
|
background: #eee;
|
|
249
277
|
}
|
|
278
|
+
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
279
|
+
background: #fafafa;
|
|
280
|
+
border-top: 1px solid #bdbdbd;
|
|
281
|
+
border-bottom: 1px solid #bdbdbd;
|
|
282
|
+
}
|
|
283
|
+
.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 {
|
|
284
|
+
border-color: rgba(184, 184, 184, 0.9584);
|
|
285
|
+
}
|
|
250
286
|
.e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn .e-icons {
|
|
251
287
|
color: #757575;
|
|
252
288
|
}
|
package/styles/tailwind-dark.css
CHANGED
|
@@ -133,6 +133,10 @@
|
|
|
133
133
|
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
134
134
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
135
135
|
}
|
|
136
|
+
.e-device.e-image-editor .e-slider-container {
|
|
137
|
+
margin-left: calc(50% - 50px) !important; /* stylelint-disable-line declaration-no-important */
|
|
138
|
+
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
139
|
+
}
|
|
136
140
|
|
|
137
141
|
.e-bigger .e-image-editor .e-toolbar,
|
|
138
142
|
.e-image-editor.e-bigger .e-toolbar {
|
|
@@ -232,10 +236,42 @@
|
|
|
232
236
|
.e-image-editor .e-bottom-toolbar {
|
|
233
237
|
border-top: 1px solid #4b5563;
|
|
234
238
|
}
|
|
239
|
+
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
240
|
+
width: 100%;
|
|
241
|
+
z-index: 1;
|
|
242
|
+
}
|
|
243
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar {
|
|
244
|
+
height: 130px !important; /* stylelint-disable-line declaration-no-important */
|
|
245
|
+
}
|
|
246
|
+
.e-image-editor .e-contextual-toolbar-wrapper.e-hide {
|
|
247
|
+
display: none;
|
|
248
|
+
}
|
|
249
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
250
|
+
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
251
|
+
}
|
|
252
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper {
|
|
253
|
+
border: 2px solid transparent;
|
|
254
|
+
height: 100px;
|
|
255
|
+
}
|
|
256
|
+
.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 {
|
|
257
|
+
border-top: 2px solid;
|
|
258
|
+
}
|
|
259
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-slider-container {
|
|
260
|
+
margin-left: calc(50% - 137px);
|
|
261
|
+
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
262
|
+
}
|
|
235
263
|
|
|
236
264
|
.e-image-editor {
|
|
237
265
|
background: #4b5563;
|
|
238
266
|
}
|
|
267
|
+
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
268
|
+
background: #374151;
|
|
269
|
+
border-top: 1px solid #4b5563;
|
|
270
|
+
border-bottom: 1px solid #4b5563;
|
|
271
|
+
}
|
|
272
|
+
.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 {
|
|
273
|
+
border-color: #4b5563;
|
|
274
|
+
}
|
|
239
275
|
.e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn .e-icons {
|
|
240
276
|
color: #d1d5db;
|
|
241
277
|
}
|
package/styles/tailwind.css
CHANGED
|
@@ -133,6 +133,10 @@
|
|
|
133
133
|
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
134
134
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
135
135
|
}
|
|
136
|
+
.e-device.e-image-editor .e-slider-container {
|
|
137
|
+
margin-left: calc(50% - 50px) !important; /* stylelint-disable-line declaration-no-important */
|
|
138
|
+
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
139
|
+
}
|
|
136
140
|
|
|
137
141
|
.e-bigger .e-image-editor .e-toolbar,
|
|
138
142
|
.e-image-editor.e-bigger .e-toolbar {
|
|
@@ -232,10 +236,42 @@
|
|
|
232
236
|
.e-image-editor .e-bottom-toolbar {
|
|
233
237
|
border-top: 1px solid #e5e7eb;
|
|
234
238
|
}
|
|
239
|
+
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
240
|
+
width: 100%;
|
|
241
|
+
z-index: 1;
|
|
242
|
+
}
|
|
243
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar {
|
|
244
|
+
height: 130px !important; /* stylelint-disable-line declaration-no-important */
|
|
245
|
+
}
|
|
246
|
+
.e-image-editor .e-contextual-toolbar-wrapper.e-hide {
|
|
247
|
+
display: none;
|
|
248
|
+
}
|
|
249
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
250
|
+
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
251
|
+
}
|
|
252
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper {
|
|
253
|
+
border: 2px solid transparent;
|
|
254
|
+
height: 100px;
|
|
255
|
+
}
|
|
256
|
+
.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 {
|
|
257
|
+
border-top: 2px solid;
|
|
258
|
+
}
|
|
259
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-slider-container {
|
|
260
|
+
margin-left: calc(50% - 137px);
|
|
261
|
+
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
262
|
+
}
|
|
235
263
|
|
|
236
264
|
.e-image-editor {
|
|
237
265
|
background: #e5e7eb;
|
|
238
266
|
}
|
|
267
|
+
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
268
|
+
background: #f3f4f6;
|
|
269
|
+
border-top: 1px solid #e5e7eb;
|
|
270
|
+
border-bottom: 1px solid #e5e7eb;
|
|
271
|
+
}
|
|
272
|
+
.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 {
|
|
273
|
+
border-color: #e5e7eb;
|
|
274
|
+
}
|
|
239
275
|
.e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn .e-icons {
|
|
240
276
|
color: #6b7280;
|
|
241
277
|
}
|