@syncfusion/ej2-image-editor 20.3.50 → 20.4.38
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 +6 -0
- 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 +2639 -623
- package/dist/es6/ej2-image-editor.es2015.js.map +1 -1
- package/dist/es6/ej2-image-editor.es5.js +2676 -652
- 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 +22 -24
- package/src/image-editor/image-editor-model.d.ts +102 -19
- package/src/image-editor/image-editor.d.ts +232 -31
- package/src/image-editor/image-editor.js +2676 -651
- 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-dark.scss +1 -0
- package/styles/image-editor/bootstrap.css +36 -0
- package/styles/image-editor/bootstrap.scss +1 -0
- package/styles/image-editor/bootstrap4.css +36 -0
- package/styles/image-editor/bootstrap4.scss +1 -0
- package/styles/image-editor/bootstrap5-dark.css +36 -0
- package/styles/image-editor/bootstrap5-dark.scss +1 -0
- package/styles/image-editor/bootstrap5.css +36 -0
- package/styles/image-editor/bootstrap5.scss +1 -0
- package/styles/image-editor/fabric-dark.css +36 -0
- package/styles/image-editor/fabric-dark.scss +1 -0
- package/styles/image-editor/fabric.css +36 -0
- package/styles/image-editor/fabric.scss +1 -0
- package/styles/image-editor/fluent-dark.css +36 -0
- package/styles/image-editor/fluent-dark.scss +1 -0
- package/styles/image-editor/fluent.css +36 -0
- package/styles/image-editor/fluent.scss +1 -0
- package/styles/image-editor/highcontrast-light.css +36 -0
- package/styles/image-editor/highcontrast-light.scss +1 -0
- package/styles/image-editor/highcontrast.css +36 -0
- package/styles/image-editor/highcontrast.scss +1 -0
- package/styles/image-editor/material-dark.css +36 -0
- package/styles/image-editor/material-dark.scss +1 -0
- package/styles/image-editor/material.css +36 -0
- package/styles/image-editor/material.scss +1 -0
- package/styles/image-editor/tailwind-dark.css +36 -0
- package/styles/image-editor/tailwind-dark.scss +1 -0
- package/styles/image-editor/tailwind.css +36 -0
- package/styles/image-editor/tailwind.scss +1 -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
|
@@ -4,7 +4,13 @@
|
|
|
4
4
|
& .e-img-font-style.e-template{
|
|
5
5
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
6
6
|
}
|
|
7
|
+
|
|
8
|
+
& .e-slider-container {
|
|
9
|
+
margin-left: calc(50% - 50px) !important; /* stylelint-disable-line declaration-no-important */
|
|
10
|
+
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
11
|
+
}
|
|
7
12
|
}
|
|
13
|
+
|
|
8
14
|
.e-bigger .e-image-editor,
|
|
9
15
|
.e-image-editor.e-bigger {
|
|
10
16
|
& .e-toolbar {
|
|
@@ -200,5 +206,37 @@
|
|
|
200
206
|
& .e-bottom-toolbar {
|
|
201
207
|
border-top: $image-editor-border;
|
|
202
208
|
}
|
|
209
|
+
|
|
210
|
+
& .e-contextual-toolbar-wrapper {
|
|
211
|
+
width: 100%;
|
|
212
|
+
z-index: 1;
|
|
213
|
+
|
|
214
|
+
& .e-toolbar {
|
|
215
|
+
height: 130px !important; /* stylelint-disable-line declaration-no-important */
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
&.e-hide {
|
|
219
|
+
display: none;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
& .e-toolbar-item {
|
|
223
|
+
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
224
|
+
|
|
225
|
+
& .filterwrapper {
|
|
226
|
+
border: 2px solid transparent;
|
|
227
|
+
height: 100px;
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
& .e-toolbar-item:hover .filterwrapper,
|
|
232
|
+
& .e-toolbar-item.e-selected .filterwrapper{
|
|
233
|
+
border-top: 2px solid;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
& .e-slider-container {
|
|
237
|
+
margin-left: calc(50% - 137px);
|
|
238
|
+
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
239
|
+
}
|
|
240
|
+
}
|
|
203
241
|
}
|
|
204
242
|
}
|
|
@@ -8,3 +8,4 @@ $image-editor-tbar-height: 38px !default;
|
|
|
8
8
|
$image-editor-bigger-tbar-height: 48px !default;
|
|
9
9
|
$image-editor-tbar-btn-fontsize: $text-lg !default;
|
|
10
10
|
$image-editor-bigger-tbar-btn-fontsize: $text-xl !default;
|
|
11
|
+
$image-editor-contextual-toolbar: $content-bg-color-alt2 !default;
|
|
@@ -2,6 +2,17 @@
|
|
|
2
2
|
.e-image-editor {
|
|
3
3
|
background: $image-editor-background;
|
|
4
4
|
|
|
5
|
+
& .e-contextual-toolbar-wrapper {
|
|
6
|
+
background: $image-editor-contextual-toolbar;
|
|
7
|
+
border-top: $image-editor-border;
|
|
8
|
+
border-bottom: $image-editor-border;
|
|
9
|
+
|
|
10
|
+
& .e-toolbar-item:hover .filterwrapper,
|
|
11
|
+
& .e-toolbar-item.e-selected .filterwrapper{
|
|
12
|
+
border-color: $btn-active-bgcolor;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
5
16
|
& .e-toolbar {
|
|
6
17
|
& .e-toolbar-items {
|
|
7
18
|
& .e-tbar-btn.e-btn {
|
|
@@ -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 {
|
|
@@ -227,10 +231,42 @@
|
|
|
227
231
|
.e-image-editor .e-bottom-toolbar {
|
|
228
232
|
border-top: 1px solid #acacac;
|
|
229
233
|
}
|
|
234
|
+
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
235
|
+
width: 100%;
|
|
236
|
+
z-index: 1;
|
|
237
|
+
}
|
|
238
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar {
|
|
239
|
+
height: 130px !important; /* stylelint-disable-line declaration-no-important */
|
|
240
|
+
}
|
|
241
|
+
.e-image-editor .e-contextual-toolbar-wrapper.e-hide {
|
|
242
|
+
display: none;
|
|
243
|
+
}
|
|
244
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
245
|
+
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
246
|
+
}
|
|
247
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper {
|
|
248
|
+
border: 2px solid transparent;
|
|
249
|
+
height: 100px;
|
|
250
|
+
}
|
|
251
|
+
.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 {
|
|
252
|
+
border-top: 2px solid;
|
|
253
|
+
}
|
|
254
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-slider-container {
|
|
255
|
+
margin-left: calc(50% - 137px);
|
|
256
|
+
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
257
|
+
}
|
|
230
258
|
|
|
231
259
|
.e-image-editor {
|
|
232
260
|
background: #959595;
|
|
233
261
|
}
|
|
262
|
+
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
263
|
+
background: #131313;
|
|
264
|
+
border-top: 1px solid #acacac;
|
|
265
|
+
border-bottom: 1px solid #acacac;
|
|
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-color: #2a2a2a;
|
|
269
|
+
}
|
|
234
270
|
.e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn .e-icons {
|
|
235
271
|
color: #f0f0f0;
|
|
236
272
|
}
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
@import 'ej2-inputs/styles/textbox/bootstrap-dark-definition.scss';
|
|
6
6
|
@import 'ej2-inputs/styles/uploader/bootstrap-dark-definition.scss';
|
|
7
7
|
@import 'ej2-popups/styles/tooltip/bootstrap-dark-definition.scss';
|
|
8
|
+
@import 'ej2-inputs/styles/color-picker/bootstrap-dark-definition.scss';
|
|
8
9
|
@import 'ej2-navigations/styles/toolbar/bootstrap-dark-definition.scss';
|
|
9
10
|
@import 'ej2-popups/styles/spinner/bootstrap-dark-definition.scss';
|
|
10
11
|
@import 'bootstrap-dark-definition.scss';
|
|
@@ -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 {
|
|
@@ -227,10 +231,42 @@
|
|
|
227
231
|
.e-image-editor .e-bottom-toolbar {
|
|
228
232
|
border-top: 1px solid #ccc;
|
|
229
233
|
}
|
|
234
|
+
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
235
|
+
width: 100%;
|
|
236
|
+
z-index: 1;
|
|
237
|
+
}
|
|
238
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar {
|
|
239
|
+
height: 130px !important; /* stylelint-disable-line declaration-no-important */
|
|
240
|
+
}
|
|
241
|
+
.e-image-editor .e-contextual-toolbar-wrapper.e-hide {
|
|
242
|
+
display: none;
|
|
243
|
+
}
|
|
244
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
245
|
+
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
246
|
+
}
|
|
247
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper {
|
|
248
|
+
border: 2px solid transparent;
|
|
249
|
+
height: 100px;
|
|
250
|
+
}
|
|
251
|
+
.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 {
|
|
252
|
+
border-top: 2px solid;
|
|
253
|
+
}
|
|
254
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-slider-container {
|
|
255
|
+
margin-left: calc(50% - 137px);
|
|
256
|
+
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
257
|
+
}
|
|
230
258
|
|
|
231
259
|
.e-image-editor {
|
|
232
260
|
background: #e6e6e6;
|
|
233
261
|
}
|
|
262
|
+
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
263
|
+
background: #f8f8f8;
|
|
264
|
+
border-top: 1px solid #ccc;
|
|
265
|
+
border-bottom: 1px solid #ccc;
|
|
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-color: #e6e6e6;
|
|
269
|
+
}
|
|
234
270
|
.e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn .e-icons {
|
|
235
271
|
color: #333;
|
|
236
272
|
}
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
@import 'ej2-inputs/styles/textbox/bootstrap-definition.scss';
|
|
6
6
|
@import 'ej2-inputs/styles/uploader/bootstrap-definition.scss';
|
|
7
7
|
@import 'ej2-popups/styles/tooltip/bootstrap-definition.scss';
|
|
8
|
+
@import 'ej2-inputs/styles/color-picker/bootstrap-definition.scss';
|
|
8
9
|
@import 'ej2-navigations/styles/toolbar/bootstrap-definition.scss';
|
|
9
10
|
@import 'ej2-popups/styles/spinner/bootstrap-definition.scss';
|
|
10
11
|
@import 'bootstrap-definition.scss';
|
|
@@ -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 #dee2e6;
|
|
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: #e9ecef;
|
|
231
259
|
}
|
|
260
|
+
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
261
|
+
background: #f8f9fa;
|
|
262
|
+
border-top: 1px solid #dee2e6;
|
|
263
|
+
border-bottom: 1px solid #dee2e6;
|
|
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: #545b62;
|
|
267
|
+
}
|
|
232
268
|
.e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn.e-selected-btn {
|
|
233
269
|
background: #495057 !important; /* stylelint-disable-line declaration-no-important */
|
|
234
270
|
}
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
@import 'ej2-inputs/styles/textbox/bootstrap4-definition.scss';
|
|
6
6
|
@import 'ej2-inputs/styles/uploader/bootstrap4-definition.scss';
|
|
7
7
|
@import 'ej2-popups/styles/tooltip/bootstrap4-definition.scss';
|
|
8
|
+
@import 'ej2-inputs/styles/color-picker/bootstrap4-definition.scss';
|
|
8
9
|
@import 'ej2-navigations/styles/toolbar/bootstrap4-definition.scss';
|
|
9
10
|
@import 'ej2-popups/styles/spinner/bootstrap4-definition.scss';
|
|
10
11
|
@import 'bootstrap4-definition.scss';
|
|
@@ -137,6 +137,10 @@
|
|
|
137
137
|
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
138
138
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
139
139
|
}
|
|
140
|
+
.e-device.e-image-editor .e-slider-container {
|
|
141
|
+
margin-left: calc(50% - 50px) !important; /* stylelint-disable-line declaration-no-important */
|
|
142
|
+
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
143
|
+
}
|
|
140
144
|
|
|
141
145
|
.e-bigger .e-image-editor .e-toolbar,
|
|
142
146
|
.e-image-editor.e-bigger .e-toolbar {
|
|
@@ -244,10 +248,42 @@
|
|
|
244
248
|
.e-image-editor .e-bottom-toolbar {
|
|
245
249
|
border-top: 1px solid #343a40;
|
|
246
250
|
}
|
|
251
|
+
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
252
|
+
width: 100%;
|
|
253
|
+
z-index: 1;
|
|
254
|
+
}
|
|
255
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar {
|
|
256
|
+
height: 130px !important; /* stylelint-disable-line declaration-no-important */
|
|
257
|
+
}
|
|
258
|
+
.e-image-editor .e-contextual-toolbar-wrapper.e-hide {
|
|
259
|
+
display: none;
|
|
260
|
+
}
|
|
261
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
262
|
+
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
263
|
+
}
|
|
264
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper {
|
|
265
|
+
border: 2px solid transparent;
|
|
266
|
+
height: 100px;
|
|
267
|
+
}
|
|
268
|
+
.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 {
|
|
269
|
+
border-top: 2px solid;
|
|
270
|
+
}
|
|
271
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-slider-container {
|
|
272
|
+
margin-left: calc(50% - 137px);
|
|
273
|
+
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
274
|
+
}
|
|
247
275
|
|
|
248
276
|
.e-image-editor {
|
|
249
277
|
background: #444c54;
|
|
250
278
|
}
|
|
279
|
+
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
280
|
+
background: #282d31;
|
|
281
|
+
border-top: 1px solid #343a40;
|
|
282
|
+
border-bottom: 1px solid #343a40;
|
|
283
|
+
}
|
|
284
|
+
.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 {
|
|
285
|
+
border-color: #565e64;
|
|
286
|
+
}
|
|
251
287
|
.e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn.e-selected-btn {
|
|
252
288
|
background: #5c636a !important; /* stylelint-disable-line declaration-no-important */
|
|
253
289
|
}
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
@import 'ej2-inputs/styles/textbox/bootstrap5-dark-definition.scss';
|
|
6
6
|
@import 'ej2-inputs/styles/uploader/bootstrap5-dark-definition.scss';
|
|
7
7
|
@import 'ej2-popups/styles/tooltip/bootstrap5-dark-definition.scss';
|
|
8
|
+
@import 'ej2-inputs/styles/color-picker/bootstrap5-dark-definition.scss';
|
|
8
9
|
@import 'ej2-navigations/styles/toolbar/bootstrap5-dark-definition.scss';
|
|
9
10
|
@import 'ej2-popups/styles/spinner/bootstrap5-dark-definition.scss';
|
|
10
11
|
@import 'bootstrap5-dark-definition.scss';
|
|
@@ -137,6 +137,10 @@
|
|
|
137
137
|
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
138
138
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
139
139
|
}
|
|
140
|
+
.e-device.e-image-editor .e-slider-container {
|
|
141
|
+
margin-left: calc(50% - 50px) !important; /* stylelint-disable-line declaration-no-important */
|
|
142
|
+
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
143
|
+
}
|
|
140
144
|
|
|
141
145
|
.e-bigger .e-image-editor .e-toolbar,
|
|
142
146
|
.e-image-editor.e-bigger .e-toolbar {
|
|
@@ -244,10 +248,42 @@
|
|
|
244
248
|
.e-image-editor .e-bottom-toolbar {
|
|
245
249
|
border-top: 1px solid #e9ecef;
|
|
246
250
|
}
|
|
251
|
+
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
252
|
+
width: 100%;
|
|
253
|
+
z-index: 1;
|
|
254
|
+
}
|
|
255
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar {
|
|
256
|
+
height: 130px !important; /* stylelint-disable-line declaration-no-important */
|
|
257
|
+
}
|
|
258
|
+
.e-image-editor .e-contextual-toolbar-wrapper.e-hide {
|
|
259
|
+
display: none;
|
|
260
|
+
}
|
|
261
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
262
|
+
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
263
|
+
}
|
|
264
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper {
|
|
265
|
+
border: 2px solid transparent;
|
|
266
|
+
height: 100px;
|
|
267
|
+
}
|
|
268
|
+
.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 {
|
|
269
|
+
border-top: 2px solid;
|
|
270
|
+
}
|
|
271
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-slider-container {
|
|
272
|
+
margin-left: calc(50% - 137px);
|
|
273
|
+
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
274
|
+
}
|
|
247
275
|
|
|
248
276
|
.e-image-editor {
|
|
249
277
|
background: #dee2e6;
|
|
250
278
|
}
|
|
279
|
+
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
280
|
+
background: #f8f9fa;
|
|
281
|
+
border-top: 1px solid #e9ecef;
|
|
282
|
+
border-bottom: 1px solid #e9ecef;
|
|
283
|
+
}
|
|
284
|
+
.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 {
|
|
285
|
+
border-color: #565e64;
|
|
286
|
+
}
|
|
251
287
|
.e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn.e-selected-btn {
|
|
252
288
|
background: #5c636a !important; /* stylelint-disable-line declaration-no-important */
|
|
253
289
|
}
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
@import 'ej2-inputs/styles/textbox/bootstrap5-definition.scss';
|
|
6
6
|
@import 'ej2-inputs/styles/uploader/bootstrap5-definition.scss';
|
|
7
7
|
@import 'ej2-popups/styles/tooltip/bootstrap5-definition.scss';
|
|
8
|
+
@import 'ej2-inputs/styles/color-picker/bootstrap5-definition.scss';
|
|
8
9
|
@import 'ej2-navigations/styles/toolbar/bootstrap5-definition.scss';
|
|
9
10
|
@import 'ej2-popups/styles/spinner/bootstrap5-definition.scss';
|
|
10
11
|
@import 'bootstrap5-definition.scss';
|
|
@@ -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 {
|
|
@@ -227,10 +231,42 @@
|
|
|
227
231
|
.e-image-editor .e-bottom-toolbar {
|
|
228
232
|
border-top: 1px solid #414040;
|
|
229
233
|
}
|
|
234
|
+
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
235
|
+
width: 100%;
|
|
236
|
+
z-index: 1;
|
|
237
|
+
}
|
|
238
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar {
|
|
239
|
+
height: 130px !important; /* stylelint-disable-line declaration-no-important */
|
|
240
|
+
}
|
|
241
|
+
.e-image-editor .e-contextual-toolbar-wrapper.e-hide {
|
|
242
|
+
display: none;
|
|
243
|
+
}
|
|
244
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
245
|
+
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
246
|
+
}
|
|
247
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper {
|
|
248
|
+
border: 2px solid transparent;
|
|
249
|
+
height: 100px;
|
|
250
|
+
}
|
|
251
|
+
.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 {
|
|
252
|
+
border-top: 2px solid;
|
|
253
|
+
}
|
|
254
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-slider-container {
|
|
255
|
+
margin-left: calc(50% - 137px);
|
|
256
|
+
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
257
|
+
}
|
|
230
258
|
|
|
231
259
|
.e-image-editor {
|
|
232
260
|
background: #201f1f;
|
|
233
261
|
}
|
|
262
|
+
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
263
|
+
background: #333232;
|
|
264
|
+
border-top: 1px solid #414040;
|
|
265
|
+
border-bottom: 1px solid #414040;
|
|
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-color: #6f6c6c;
|
|
269
|
+
}
|
|
234
270
|
.e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn .e-icons {
|
|
235
271
|
color: #dadada;
|
|
236
272
|
}
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
@import 'ej2-inputs/styles/textbox/fabric-dark-definition.scss';
|
|
6
6
|
@import 'ej2-inputs/styles/uploader/fabric-dark-definition.scss';
|
|
7
7
|
@import 'ej2-popups/styles/tooltip/fabric-dark-definition.scss';
|
|
8
|
+
@import 'ej2-inputs/styles/color-picker/fabric-dark-definition.scss';
|
|
8
9
|
@import 'ej2-navigations/styles/toolbar/fabric-dark-definition.scss';
|
|
9
10
|
@import 'ej2-popups/styles/spinner/fabric-dark-definition.scss';
|
|
10
11
|
@import 'fabric-dark-definition.scss';
|
|
@@ -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 {
|
|
@@ -227,10 +231,42 @@
|
|
|
227
231
|
.e-image-editor .e-bottom-toolbar {
|
|
228
232
|
border-top: 1px solid #eaeaea;
|
|
229
233
|
}
|
|
234
|
+
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
235
|
+
width: 100%;
|
|
236
|
+
z-index: 1;
|
|
237
|
+
}
|
|
238
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar {
|
|
239
|
+
height: 130px !important; /* stylelint-disable-line declaration-no-important */
|
|
240
|
+
}
|
|
241
|
+
.e-image-editor .e-contextual-toolbar-wrapper.e-hide {
|
|
242
|
+
display: none;
|
|
243
|
+
}
|
|
244
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
245
|
+
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
246
|
+
}
|
|
247
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper {
|
|
248
|
+
border: 2px solid transparent;
|
|
249
|
+
height: 100px;
|
|
250
|
+
}
|
|
251
|
+
.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 {
|
|
252
|
+
border-top: 2px solid;
|
|
253
|
+
}
|
|
254
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-slider-container {
|
|
255
|
+
margin-left: calc(50% - 137px);
|
|
256
|
+
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
257
|
+
}
|
|
230
258
|
|
|
231
259
|
.e-image-editor {
|
|
232
260
|
background: #fff;
|
|
233
261
|
}
|
|
262
|
+
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
263
|
+
background: #fff;
|
|
264
|
+
border-top: 1px solid #eaeaea;
|
|
265
|
+
border-bottom: 1px solid #eaeaea;
|
|
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-color: #c8c8c8;
|
|
269
|
+
}
|
|
234
270
|
.e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn .e-icons {
|
|
235
271
|
color: #333;
|
|
236
272
|
}
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
@import 'ej2-inputs/styles/textbox/fabric-definition.scss';
|
|
6
6
|
@import 'ej2-inputs/styles/uploader/fabric-definition.scss';
|
|
7
7
|
@import 'ej2-popups/styles/tooltip/fabric-definition.scss';
|
|
8
|
+
@import 'ej2-inputs/styles/color-picker/fabric-definition.scss';
|
|
8
9
|
@import 'ej2-navigations/styles/toolbar/fabric-definition.scss';
|
|
9
10
|
@import 'ej2-popups/styles/spinner/fabric-definition.scss';
|
|
10
11
|
@import 'fabric-definition.scss';
|
|
@@ -135,6 +135,10 @@
|
|
|
135
135
|
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
136
136
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
137
137
|
}
|
|
138
|
+
.e-device.e-image-editor .e-slider-container {
|
|
139
|
+
margin-left: calc(50% - 50px) !important; /* stylelint-disable-line declaration-no-important */
|
|
140
|
+
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
141
|
+
}
|
|
138
142
|
|
|
139
143
|
.e-bigger .e-image-editor .e-toolbar,
|
|
140
144
|
.e-image-editor.e-bigger .e-toolbar {
|
|
@@ -234,10 +238,42 @@
|
|
|
234
238
|
.e-image-editor .e-bottom-toolbar {
|
|
235
239
|
border-top: 1px solid #292827;
|
|
236
240
|
}
|
|
241
|
+
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
242
|
+
width: 100%;
|
|
243
|
+
z-index: 1;
|
|
244
|
+
}
|
|
245
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar {
|
|
246
|
+
height: 130px !important; /* stylelint-disable-line declaration-no-important */
|
|
247
|
+
}
|
|
248
|
+
.e-image-editor .e-contextual-toolbar-wrapper.e-hide {
|
|
249
|
+
display: none;
|
|
250
|
+
}
|
|
251
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
252
|
+
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
253
|
+
}
|
|
254
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper {
|
|
255
|
+
border: 2px solid transparent;
|
|
256
|
+
height: 100px;
|
|
257
|
+
}
|
|
258
|
+
.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 {
|
|
259
|
+
border-top: 2px solid;
|
|
260
|
+
}
|
|
261
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-slider-container {
|
|
262
|
+
margin-left: calc(50% - 137px);
|
|
263
|
+
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
264
|
+
}
|
|
237
265
|
|
|
238
266
|
.e-image-editor {
|
|
239
267
|
background: #201f1e;
|
|
240
268
|
}
|
|
269
|
+
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
270
|
+
background: #252423;
|
|
271
|
+
border-top: 1px solid #292827;
|
|
272
|
+
border-bottom: 1px solid #292827;
|
|
273
|
+
}
|
|
274
|
+
.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 {
|
|
275
|
+
border-color: #292827;
|
|
276
|
+
}
|
|
241
277
|
.e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn .e-icons {
|
|
242
278
|
color: #a19f9d;
|
|
243
279
|
}
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
@import 'ej2-inputs/styles/textbox/fluent-dark-definition.scss';
|
|
6
6
|
@import 'ej2-inputs/styles/uploader/fluent-dark-definition.scss';
|
|
7
7
|
@import 'ej2-popups/styles/tooltip/fluent-dark-definition.scss';
|
|
8
|
+
@import 'ej2-inputs/styles/color-picker/fluent-dark-definition.scss';
|
|
8
9
|
@import 'ej2-navigations/styles/toolbar/fluent-dark-definition.scss';
|
|
9
10
|
@import 'ej2-popups/styles/spinner/fluent-dark-definition.scss';
|
|
10
11
|
@import 'fluent-dark-definition.scss';
|
|
@@ -135,6 +135,10 @@
|
|
|
135
135
|
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
136
136
|
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
137
137
|
}
|
|
138
|
+
.e-device.e-image-editor .e-slider-container {
|
|
139
|
+
margin-left: calc(50% - 50px) !important; /* stylelint-disable-line declaration-no-important */
|
|
140
|
+
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
141
|
+
}
|
|
138
142
|
|
|
139
143
|
.e-bigger .e-image-editor .e-toolbar,
|
|
140
144
|
.e-image-editor.e-bigger .e-toolbar {
|
|
@@ -234,10 +238,42 @@
|
|
|
234
238
|
.e-image-editor .e-bottom-toolbar {
|
|
235
239
|
border-top: 1px solid #edebe9;
|
|
236
240
|
}
|
|
241
|
+
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
242
|
+
width: 100%;
|
|
243
|
+
z-index: 1;
|
|
244
|
+
}
|
|
245
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar {
|
|
246
|
+
height: 130px !important; /* stylelint-disable-line declaration-no-important */
|
|
247
|
+
}
|
|
248
|
+
.e-image-editor .e-contextual-toolbar-wrapper.e-hide {
|
|
249
|
+
display: none;
|
|
250
|
+
}
|
|
251
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
252
|
+
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
253
|
+
}
|
|
254
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper {
|
|
255
|
+
border: 2px solid transparent;
|
|
256
|
+
height: 100px;
|
|
257
|
+
}
|
|
258
|
+
.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 {
|
|
259
|
+
border-top: 2px solid;
|
|
260
|
+
}
|
|
261
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-slider-container {
|
|
262
|
+
margin-left: calc(50% - 137px);
|
|
263
|
+
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
264
|
+
}
|
|
237
265
|
|
|
238
266
|
.e-image-editor {
|
|
239
267
|
background: #faf9f8;
|
|
240
268
|
}
|
|
269
|
+
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
270
|
+
background: #f3f2f1;
|
|
271
|
+
border-top: 1px solid #edebe9;
|
|
272
|
+
border-bottom: 1px solid #edebe9;
|
|
273
|
+
}
|
|
274
|
+
.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 {
|
|
275
|
+
border-color: #edebe9;
|
|
276
|
+
}
|
|
241
277
|
.e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn .e-icons {
|
|
242
278
|
color: #605e5c;
|
|
243
279
|
}
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
@import 'ej2-inputs/styles/textbox/fluent-definition.scss';
|
|
6
6
|
@import 'ej2-inputs/styles/uploader/fluent-definition.scss';
|
|
7
7
|
@import 'ej2-popups/styles/tooltip/fluent-definition.scss';
|
|
8
|
+
@import 'ej2-inputs/styles/color-picker/fluent-definition.scss';
|
|
8
9
|
@import 'ej2-navigations/styles/toolbar/fluent-definition.scss';
|
|
9
10
|
@import 'ej2-popups/styles/spinner/fluent-definition.scss';
|
|
10
11
|
@import 'fluent-definition.scss';
|