@syncfusion/ej2-image-editor 26.2.14 → 27.1.48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- 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 +3202 -732
- package/dist/es6/ej2-image-editor.es2015.js.map +1 -1
- package/dist/es6/ej2-image-editor.es5.js +3281 -797
- 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 +14 -13
- package/src/image-editor/action/crop.d.ts +0 -1
- package/src/image-editor/action/crop.js +8 -19
- package/src/image-editor/action/draw.d.ts +4 -0
- package/src/image-editor/action/draw.js +377 -45
- package/src/image-editor/action/export.js +21 -13
- package/src/image-editor/action/filter.d.ts +13 -0
- package/src/image-editor/action/filter.js +272 -1
- package/src/image-editor/action/freehand-draw.d.ts +1 -0
- package/src/image-editor/action/freehand-draw.js +44 -23
- package/src/image-editor/action/selection.d.ts +6 -0
- package/src/image-editor/action/selection.js +382 -97
- package/src/image-editor/action/shape.d.ts +5 -0
- package/src/image-editor/action/shape.js +287 -141
- package/src/image-editor/action/transform.js +56 -82
- package/src/image-editor/action/undo-redo.d.ts +2 -0
- package/src/image-editor/action/undo-redo.js +100 -1
- package/src/image-editor/base/enum.d.ts +11 -0
- package/src/image-editor/base/enum.js +12 -0
- package/src/image-editor/base/image-editor-model.d.ts +13 -1
- package/src/image-editor/base/image-editor.d.ts +142 -20
- package/src/image-editor/base/image-editor.js +811 -149
- package/src/image-editor/base/interface.d.ts +140 -1
- package/src/image-editor/renderer/toolbar.d.ts +8 -0
- package/src/image-editor/renderer/toolbar.js +873 -191
- package/styles/bootstrap-dark-lite.css +746 -0
- package/styles/bootstrap-dark-lite.scss +13 -0
- package/styles/bootstrap-dark.css +150 -105
- package/styles/bootstrap-dark.scss +1 -0
- package/styles/bootstrap-lite.css +747 -0
- package/styles/bootstrap-lite.scss +13 -0
- package/styles/bootstrap.css +151 -106
- package/styles/bootstrap.scss +1 -0
- package/styles/bootstrap4-lite.css +747 -0
- package/styles/bootstrap4-lite.scss +13 -0
- package/styles/bootstrap4.css +150 -105
- package/styles/bootstrap4.scss +1 -0
- package/styles/bootstrap5-dark-lite.css +757 -0
- package/styles/bootstrap5-dark-lite.scss +13 -0
- package/styles/bootstrap5-dark.css +152 -113
- package/styles/bootstrap5-dark.scss +1 -0
- package/styles/bootstrap5-lite.css +757 -0
- package/styles/bootstrap5-lite.scss +13 -0
- package/styles/bootstrap5.3-lite.css +760 -0
- package/styles/bootstrap5.3-lite.scss +13 -0
- package/styles/bootstrap5.3.css +867 -0
- package/styles/bootstrap5.3.scss +14 -0
- package/styles/bootstrap5.css +152 -113
- package/styles/bootstrap5.scss +1 -0
- package/styles/fabric-dark-lite.css +749 -0
- package/styles/fabric-dark-lite.scss +13 -0
- package/styles/fabric-dark.css +150 -105
- package/styles/fabric-dark.scss +1 -0
- package/styles/fabric-lite.css +751 -0
- package/styles/fabric-lite.scss +13 -0
- package/styles/fabric.css +151 -106
- package/styles/fabric.scss +1 -0
- package/styles/fluent-dark-lite.css +758 -0
- package/styles/fluent-dark-lite.scss +13 -0
- package/styles/fluent-dark.css +150 -111
- package/styles/fluent-dark.scss +1 -0
- package/styles/fluent-lite.css +758 -0
- package/styles/fluent-lite.scss +13 -0
- package/styles/fluent.css +150 -111
- package/styles/fluent.scss +1 -0
- package/styles/fluent2-lite.css +791 -0
- package/styles/fluent2-lite.scss +13 -0
- package/styles/fluent2.css +173 -117
- package/styles/fluent2.scss +1 -0
- package/styles/highcontrast-light-lite.css +748 -0
- package/styles/highcontrast-light-lite.scss +13 -0
- package/styles/highcontrast-light.css +149 -104
- package/styles/highcontrast-light.scss +1 -0
- package/styles/highcontrast-lite.css +753 -0
- package/styles/highcontrast-lite.scss +13 -0
- package/styles/highcontrast.css +150 -104
- package/styles/highcontrast.scss +1 -0
- package/styles/image-editor/_bds-definition.scss +3 -1
- package/styles/image-editor/_bigger.scss +216 -0
- package/styles/image-editor/_bootstrap-dark-definition.scss +3 -1
- package/styles/image-editor/_bootstrap-definition.scss +3 -1
- package/styles/image-editor/_bootstrap4-definition.scss +3 -1
- package/styles/image-editor/_bootstrap5-definition.scss +3 -1
- package/styles/image-editor/_bootstrap5.3-definition.scss +3 -1
- package/styles/image-editor/_fabric-dark-definition.scss +3 -1
- package/styles/image-editor/_fabric-definition.scss +3 -1
- package/styles/image-editor/_fluent-definition.scss +3 -1
- package/styles/image-editor/_fluent2-definition.scss +4 -2
- package/styles/image-editor/_fusionnew-definition.scss +3 -1
- package/styles/image-editor/_highcontrast-definition.scss +3 -1
- package/styles/image-editor/_highcontrast-light-definition.scss +3 -1
- package/styles/image-editor/_layout.scss +75 -212
- package/styles/image-editor/_material-dark-definition.scss +3 -1
- package/styles/image-editor/_material-definition.scss +3 -1
- package/styles/image-editor/_material3-definition.scss +5 -3
- package/styles/image-editor/_tailwind-definition.scss +5 -3
- package/styles/image-editor/_theme.scss +48 -11
- package/styles/image-editor/bootstrap-dark.css +150 -105
- package/styles/image-editor/bootstrap-dark.scss +1 -0
- package/styles/image-editor/bootstrap.css +151 -106
- package/styles/image-editor/bootstrap.scss +1 -0
- package/styles/image-editor/bootstrap4.css +150 -105
- package/styles/image-editor/bootstrap4.scss +1 -0
- package/styles/image-editor/bootstrap5-dark.css +152 -113
- package/styles/image-editor/bootstrap5-dark.scss +1 -0
- package/styles/image-editor/bootstrap5.3.css +867 -0
- package/styles/image-editor/bootstrap5.3.scss +14 -0
- package/styles/image-editor/bootstrap5.css +152 -113
- package/styles/image-editor/bootstrap5.scss +1 -0
- package/styles/image-editor/fabric-dark.css +150 -105
- package/styles/image-editor/fabric-dark.scss +1 -0
- package/styles/image-editor/fabric.css +151 -106
- package/styles/image-editor/fabric.scss +1 -0
- package/styles/image-editor/fluent-dark.css +150 -111
- package/styles/image-editor/fluent-dark.scss +1 -0
- package/styles/image-editor/fluent.css +150 -111
- package/styles/image-editor/fluent.scss +1 -0
- package/styles/image-editor/fluent2.css +173 -117
- package/styles/image-editor/fluent2.scss +1 -0
- package/styles/image-editor/highcontrast-light.css +149 -104
- package/styles/image-editor/highcontrast-light.scss +1 -0
- package/styles/image-editor/highcontrast.css +150 -104
- package/styles/image-editor/highcontrast.scss +1 -0
- package/styles/image-editor/icons/_bds.scss +10 -1
- package/styles/image-editor/icons/_bootstrap-dark.scss +10 -1
- package/styles/image-editor/icons/_bootstrap.scss +10 -1
- package/styles/image-editor/icons/_bootstrap4.scss +10 -1
- package/styles/image-editor/icons/_bootstrap5.3.scss +10 -1
- package/styles/image-editor/icons/_bootstrap5.scss +10 -1
- package/styles/image-editor/icons/_fabric-dark.scss +10 -1
- package/styles/image-editor/icons/_fabric.scss +10 -1
- package/styles/image-editor/icons/_fluent.scss +10 -1
- package/styles/image-editor/icons/_fluent2.scss +10 -1
- package/styles/image-editor/icons/_fusionnew.scss +10 -1
- package/styles/image-editor/icons/_highcontrast-light.scss +10 -1
- package/styles/image-editor/icons/_highcontrast.scss +10 -1
- package/styles/image-editor/icons/_material-dark.scss +10 -1
- package/styles/image-editor/icons/_material.scss +10 -1
- package/styles/image-editor/icons/_material3.scss +10 -1
- package/styles/image-editor/icons/_tailwind.scss +10 -1
- package/styles/image-editor/material-dark.css +153 -108
- package/styles/image-editor/material-dark.scss +1 -0
- package/styles/image-editor/material.css +159 -114
- package/styles/image-editor/material.scss +1 -0
- package/styles/image-editor/material3-dark.css +171 -123
- package/styles/image-editor/material3-dark.scss +1 -0
- package/styles/image-editor/material3.css +171 -123
- package/styles/image-editor/material3.scss +1 -0
- package/styles/image-editor/tailwind-dark.css +154 -116
- package/styles/image-editor/tailwind-dark.scss +1 -0
- package/styles/image-editor/tailwind.css +154 -116
- package/styles/image-editor/tailwind.scss +1 -0
- package/styles/material-dark-lite.css +767 -0
- package/styles/material-dark-lite.scss +13 -0
- package/styles/material-dark.css +153 -108
- package/styles/material-dark.scss +1 -0
- package/styles/material-lite.css +769 -0
- package/styles/material-lite.scss +13 -0
- package/styles/material.css +159 -114
- package/styles/material.scss +1 -0
- package/styles/material3-dark-lite.css +799 -0
- package/styles/material3-dark-lite.scss +13 -0
- package/styles/material3-dark.css +171 -123
- package/styles/material3-dark.scss +1 -0
- package/styles/material3-lite.css +801 -0
- package/styles/material3-lite.scss +13 -0
- package/styles/material3.css +171 -123
- package/styles/material3.scss +1 -0
- package/styles/tailwind-dark-lite.css +751 -0
- package/styles/tailwind-dark-lite.scss +13 -0
- package/styles/tailwind-dark.css +154 -116
- package/styles/tailwind-dark.scss +1 -0
- package/styles/tailwind-lite.css +751 -0
- package/styles/tailwind-lite.scss +13 -0
- package/styles/tailwind.css +154 -116
- package/styles/tailwind.scss +1 -0
|
@@ -0,0 +1,867 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
/* stylelint-disable-line no-empty-source */
|
|
6
|
+
/* stylelint-disable */
|
|
7
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
8
|
+
@-webkit-keyframes material-spinner-rotate {
|
|
9
|
+
0% {
|
|
10
|
+
-webkit-transform: rotate(0);
|
|
11
|
+
transform: rotate(0);
|
|
12
|
+
}
|
|
13
|
+
100% {
|
|
14
|
+
-webkit-transform: rotate(360deg);
|
|
15
|
+
transform: rotate(360deg);
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
@keyframes material-spinner-rotate {
|
|
19
|
+
0% {
|
|
20
|
+
-webkit-transform: rotate(0);
|
|
21
|
+
transform: rotate(0);
|
|
22
|
+
}
|
|
23
|
+
100% {
|
|
24
|
+
-webkit-transform: rotate(360deg);
|
|
25
|
+
transform: rotate(360deg);
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
@-webkit-keyframes fabric-spinner-rotate {
|
|
29
|
+
0% {
|
|
30
|
+
-webkit-transform: rotate(0);
|
|
31
|
+
transform: rotate(0);
|
|
32
|
+
}
|
|
33
|
+
100% {
|
|
34
|
+
-webkit-transform: rotate(360deg);
|
|
35
|
+
transform: rotate(360deg);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
@keyframes fabric-spinner-rotate {
|
|
39
|
+
0% {
|
|
40
|
+
-webkit-transform: rotate(0);
|
|
41
|
+
transform: rotate(0);
|
|
42
|
+
}
|
|
43
|
+
100% {
|
|
44
|
+
-webkit-transform: rotate(360deg);
|
|
45
|
+
transform: rotate(360deg);
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
.e-image-editor .e-upload-icon::before {
|
|
49
|
+
content: "\e760";
|
|
50
|
+
}
|
|
51
|
+
.e-image-editor .e-zoom-in::before {
|
|
52
|
+
content: "\e768";
|
|
53
|
+
}
|
|
54
|
+
.e-image-editor .e-zoom-out::before {
|
|
55
|
+
content: "\e81b";
|
|
56
|
+
}
|
|
57
|
+
.e-image-editor .e-pan::before {
|
|
58
|
+
content: "\e7b1";
|
|
59
|
+
}
|
|
60
|
+
.e-image-editor .e-select::before {
|
|
61
|
+
content: "\e896";
|
|
62
|
+
}
|
|
63
|
+
.e-image-editor .e-transform::before {
|
|
64
|
+
content: "\e8b0";
|
|
65
|
+
}
|
|
66
|
+
.e-image-editor .e-annotation::before {
|
|
67
|
+
content: "\e730";
|
|
68
|
+
}
|
|
69
|
+
.e-image-editor .e-shapes::before {
|
|
70
|
+
content: "\e728";
|
|
71
|
+
}
|
|
72
|
+
.e-image-editor .e-mouse::before {
|
|
73
|
+
content: "\e74e";
|
|
74
|
+
}
|
|
75
|
+
.e-image-editor .e-btn-reset::before {
|
|
76
|
+
content: "\e89b";
|
|
77
|
+
}
|
|
78
|
+
.e-image-editor .e-btn-save::before {
|
|
79
|
+
content: "\e7c8";
|
|
80
|
+
}
|
|
81
|
+
.e-image-editor .e-close::before {
|
|
82
|
+
content: "\e7e7";
|
|
83
|
+
}
|
|
84
|
+
.e-image-editor .e-check::before {
|
|
85
|
+
content: "\e8b1";
|
|
86
|
+
}
|
|
87
|
+
.e-image-editor .e-text-font-color.e-template .e-caret::before {
|
|
88
|
+
content: "\e76f";
|
|
89
|
+
}
|
|
90
|
+
.e-image-editor .e-stroke.e-template .e-caret::before, .e-image-editor .e-frame-stroke.e-template .e-caret::before, .e-image-editor .e-pen-stroke-color.e-template .e-caret::before {
|
|
91
|
+
content: "\e739";
|
|
92
|
+
}
|
|
93
|
+
.e-image-editor .e-fill.e-template .e-caret::before, .e-image-editor .e-text-background-color.e-template .e-caret::before {
|
|
94
|
+
content: "\e783";
|
|
95
|
+
}
|
|
96
|
+
.e-image-editor .e-stroke-text-font-color.e-template .e-caret::before {
|
|
97
|
+
content: "\e908";
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.e-image-editor .e-custom::before,
|
|
101
|
+
.e-dropdown-popup.e-image-popup .e-custom::before {
|
|
102
|
+
content: "\e8a9";
|
|
103
|
+
}
|
|
104
|
+
.e-image-editor .e-circle::before,
|
|
105
|
+
.e-dropdown-popup.e-image-popup .e-circle::before {
|
|
106
|
+
content: "\e7ca";
|
|
107
|
+
}
|
|
108
|
+
.e-image-editor .e-square::before,
|
|
109
|
+
.e-dropdown-popup.e-image-popup .e-square::before {
|
|
110
|
+
content: "\e8aa";
|
|
111
|
+
}
|
|
112
|
+
.e-image-editor .e-custom-a::before,
|
|
113
|
+
.e-dropdown-popup.e-image-popup .e-custom-a::before {
|
|
114
|
+
content: "\e8ab";
|
|
115
|
+
}
|
|
116
|
+
.e-image-editor .e-custom-b::before,
|
|
117
|
+
.e-dropdown-popup.e-image-popup .e-custom-b::before {
|
|
118
|
+
content: "\e8ac";
|
|
119
|
+
}
|
|
120
|
+
.e-image-editor .e-custom-c::before,
|
|
121
|
+
.e-dropdown-popup.e-image-popup .e-custom-c::before {
|
|
122
|
+
content: "\e8ad";
|
|
123
|
+
}
|
|
124
|
+
.e-image-editor .e-custom-d::before,
|
|
125
|
+
.e-dropdown-popup.e-image-popup .e-custom-d::before {
|
|
126
|
+
content: "\e8ae";
|
|
127
|
+
}
|
|
128
|
+
.e-image-editor .e-custom-e::before,
|
|
129
|
+
.e-dropdown-popup.e-image-popup .e-custom-e::before {
|
|
130
|
+
content: "\e8af";
|
|
131
|
+
}
|
|
132
|
+
.e-image-editor .e-custom-f::before,
|
|
133
|
+
.e-dropdown-popup.e-image-popup .e-custom-f::before {
|
|
134
|
+
content: "\e8dd";
|
|
135
|
+
}
|
|
136
|
+
.e-image-editor .e-custom-g::before,
|
|
137
|
+
.e-dropdown-popup.e-image-popup .e-custom-g::before {
|
|
138
|
+
content: "\e8de";
|
|
139
|
+
}
|
|
140
|
+
.e-image-editor .e-custom-h::before,
|
|
141
|
+
.e-dropdown-popup.e-image-popup .e-custom-h::before {
|
|
142
|
+
content: "\e8df";
|
|
143
|
+
}
|
|
144
|
+
.e-image-editor .e-custom-i::before,
|
|
145
|
+
.e-dropdown-popup.e-image-popup .e-custom-i::before {
|
|
146
|
+
content: "\e8e0";
|
|
147
|
+
}
|
|
148
|
+
.e-image-editor .e-custom-j::before,
|
|
149
|
+
.e-dropdown-popup.e-image-popup .e-custom-j::before {
|
|
150
|
+
content: "\e8e1";
|
|
151
|
+
}
|
|
152
|
+
.e-image-editor .e-rectangle::before,
|
|
153
|
+
.e-dropdown-popup.e-image-popup .e-rectangle::before {
|
|
154
|
+
content: "\e723";
|
|
155
|
+
}
|
|
156
|
+
.e-image-editor .e-triangle::before,
|
|
157
|
+
.e-dropdown-popup.e-image-popup .e-triangle::before {
|
|
158
|
+
content: "\e89c";
|
|
159
|
+
}
|
|
160
|
+
.e-image-editor .e-line::before,
|
|
161
|
+
.e-dropdown-popup.e-image-popup .e-line::before {
|
|
162
|
+
content: "\e819";
|
|
163
|
+
}
|
|
164
|
+
.e-image-editor .e-free-pen::before,
|
|
165
|
+
.e-dropdown-popup.e-image-popup .e-free-pen::before {
|
|
166
|
+
content: "\e7db";
|
|
167
|
+
}
|
|
168
|
+
.e-image-editor .e-horizontal-flip::before,
|
|
169
|
+
.e-dropdown-popup.e-image-popup .e-horizontal-flip::before {
|
|
170
|
+
content: "\e8a3";
|
|
171
|
+
}
|
|
172
|
+
.e-image-editor .e-vertical-flip::before,
|
|
173
|
+
.e-dropdown-popup.e-image-popup .e-vertical-flip::before {
|
|
174
|
+
content: "\e8a4";
|
|
175
|
+
}
|
|
176
|
+
.e-image-editor .e-clock-wise::before,
|
|
177
|
+
.e-dropdown-popup.e-image-popup .e-clock-wise::before {
|
|
178
|
+
content: "\e8a6";
|
|
179
|
+
}
|
|
180
|
+
.e-image-editor .e-anti-clock-wise::before,
|
|
181
|
+
.e-dropdown-popup.e-image-popup .e-anti-clock-wise::before {
|
|
182
|
+
content: "\e8a5";
|
|
183
|
+
}
|
|
184
|
+
.e-image-editor .e-add-text::before,
|
|
185
|
+
.e-dropdown-popup.e-image-popup .e-add-text::before {
|
|
186
|
+
content: "\e82e";
|
|
187
|
+
}
|
|
188
|
+
.e-image-editor .e-arrow::before,
|
|
189
|
+
.e-dropdown-popup.e-image-popup .e-arrow::before {
|
|
190
|
+
content: "\e669";
|
|
191
|
+
}
|
|
192
|
+
.e-image-editor .e-path::before,
|
|
193
|
+
.e-dropdown-popup.e-image-popup .e-path::before {
|
|
194
|
+
content: "\e931";
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.e-ie-toolbar-upload-div.e-hide,
|
|
198
|
+
.e-ie-toolbar-upload-btn.e-hide,
|
|
199
|
+
.e-ie-img-quality-slider,
|
|
200
|
+
.e-ie-img-quality-name .e-hide {
|
|
201
|
+
display: none;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.e-device.e-image-editor .e-img-font-style.e-template {
|
|
205
|
+
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
206
|
+
}
|
|
207
|
+
.e-device.e-image-editor .e-slider-container {
|
|
208
|
+
margin-left: calc(50% - 70px) !important; /* stylelint-disable-line declaration-no-important */
|
|
209
|
+
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
210
|
+
}
|
|
211
|
+
.e-device.e-image-editor .e-straighten-slider {
|
|
212
|
+
margin-left: calc(50% - 70px) !important; /* stylelint-disable-line declaration-no-important */
|
|
213
|
+
}
|
|
214
|
+
.e-device.e-image-editor .e-ie-straighten-value-span {
|
|
215
|
+
margin-left: 15px !important; /* stylelint-disable-line declaration-no-important */
|
|
216
|
+
}
|
|
217
|
+
.e-device.e-image-editor .e-hscroll .e-scroll-nav.e-scroll-right-nav, .e-device.e-image-editor .e-scroll-right-overlay {
|
|
218
|
+
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
219
|
+
}
|
|
220
|
+
.e-device.e-image-editor .e-hscroll.e-scroll-device {
|
|
221
|
+
padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
222
|
+
}
|
|
223
|
+
.e-device.e-image-editor .e-contextual-toolbar-wrapper {
|
|
224
|
+
border-top: 1px solid var(--color-sf-content-bg-color-alt2);
|
|
225
|
+
border-bottom: none !important; /* stylelint-disable-line declaration-no-important */
|
|
226
|
+
}
|
|
227
|
+
.e-device.e-image-editor .e-toolbar {
|
|
228
|
+
border-bottom: 1px solid var(--color-sf-content-bg-color-alt2);
|
|
229
|
+
}
|
|
230
|
+
.e-device.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar {
|
|
231
|
+
border-bottom: none !important; /* stylelint-disable-line declaration-no-important */
|
|
232
|
+
}
|
|
233
|
+
.e-device.e-image-editor .e-bottom-toolbar .e-toolbar, .e-device.e-image-editor .e-bottom-toolbar-area .e-toolbar {
|
|
234
|
+
border-bottom: none;
|
|
235
|
+
}
|
|
236
|
+
.e-device.e-image-editor .e-ie-img-save-name {
|
|
237
|
+
width: calc(65% - 13px) !important; /* stylelint-disable-line declaration-no-important */
|
|
238
|
+
}
|
|
239
|
+
.e-device.e-image-editor .e-ie-img-size-value-span {
|
|
240
|
+
margin-left: calc(100% - 145px) !important; /* stylelint-disable-line declaration-no-important */
|
|
241
|
+
}
|
|
242
|
+
.e-device.e-image-editor .e-ie-quality-option-container .e-slider-container {
|
|
243
|
+
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
244
|
+
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.e-image-editor {
|
|
248
|
+
border: 1px solid var(--color-sf-content-bg-color-alt2);
|
|
249
|
+
position: relative;
|
|
250
|
+
display: block;
|
|
251
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
252
|
+
}
|
|
253
|
+
.e-image-editor .no-spin ::-webkit-inner-spin-button, .e-image-editor .no-spin ::-webkit-outer-spin-button {
|
|
254
|
+
-webkit-appearance: none;
|
|
255
|
+
margin: 0;
|
|
256
|
+
}
|
|
257
|
+
.e-image-editor .e-ie-drop-area {
|
|
258
|
+
height: calc(100% - 18px);
|
|
259
|
+
width: calc(100% - 20px);
|
|
260
|
+
border: 2px dashed var(--color-sf-icon-color);
|
|
261
|
+
border-radius: 10px;
|
|
262
|
+
margin: 10px;
|
|
263
|
+
}
|
|
264
|
+
.e-image-editor .e-ie-drop-area .e-upload {
|
|
265
|
+
display: none;
|
|
266
|
+
}
|
|
267
|
+
.e-image-editor .e-ie-drop-area .e-image::before {
|
|
268
|
+
font-size: 50px;
|
|
269
|
+
}
|
|
270
|
+
.e-image-editor .e-ie-drop-area .e-ie-drop-icon {
|
|
271
|
+
top: calc(50% - 60px);
|
|
272
|
+
left: calc(50% - 25px);
|
|
273
|
+
}
|
|
274
|
+
.e-image-editor .e-ie-drop-area .e-ie-drop-content {
|
|
275
|
+
top: 50%;
|
|
276
|
+
left: calc(50% - 160px);
|
|
277
|
+
font-size: 14px;
|
|
278
|
+
}
|
|
279
|
+
.e-image-editor .e-ie-drop-area .e-ie-drop-info {
|
|
280
|
+
top: calc(50% + 40px);
|
|
281
|
+
left: calc(50% - 100px);
|
|
282
|
+
position: absolute;
|
|
283
|
+
font-size: 14px;
|
|
284
|
+
}
|
|
285
|
+
.e-image-editor .e-ie-drop-area .e-ie-min-drop-content {
|
|
286
|
+
left: calc(50% - 120px);
|
|
287
|
+
top: 50%;
|
|
288
|
+
font-size: 14px;
|
|
289
|
+
}
|
|
290
|
+
.e-image-editor .e-toolbar {
|
|
291
|
+
border: none;
|
|
292
|
+
border-bottom: 1px solid var(--color-sf-content-bg-color-alt2);
|
|
293
|
+
height: 40px !important; /* stylelint-disable-line declaration-no-important */
|
|
294
|
+
min-height: 40px !important; /* stylelint-disable-line declaration-no-important */
|
|
295
|
+
}
|
|
296
|
+
.e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-height {
|
|
297
|
+
margin-left: 20px;
|
|
298
|
+
min-width: 28px !important; /* stylelint-disable-line declaration-no-important */
|
|
299
|
+
}
|
|
300
|
+
.e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-width {
|
|
301
|
+
min-width: 28px !important; /* stylelint-disable-line declaration-no-important */
|
|
302
|
+
}
|
|
303
|
+
.e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
|
|
304
|
+
font-size: 18px;
|
|
305
|
+
}
|
|
306
|
+
.e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
307
|
+
font-size: 18px;
|
|
308
|
+
padding-top: 4px;
|
|
309
|
+
padding-bottom: 4px;
|
|
310
|
+
}
|
|
311
|
+
.e-image-editor .e-toolbar .e-toolbar-items .e-upload {
|
|
312
|
+
border: none;
|
|
313
|
+
}
|
|
314
|
+
.e-image-editor .e-toolbar .e-toolbar-items .e-file-select-wrap {
|
|
315
|
+
padding: 0;
|
|
316
|
+
}
|
|
317
|
+
.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 {
|
|
318
|
+
display: none;
|
|
319
|
+
}
|
|
320
|
+
.e-image-editor .e-toolbar .e-toolbar-items .e-image-upload .e-image-upload .e-upload {
|
|
321
|
+
border: none;
|
|
322
|
+
}
|
|
323
|
+
.e-image-editor .e-toolbar .e-toolbar-items .e-image-upload .e-icons.e-upload-icon {
|
|
324
|
+
padding-top: 6px;
|
|
325
|
+
}
|
|
326
|
+
.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-frame-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, .e-image-editor .e-toolbar .e-toolbar-items .e-text-background-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-stroke-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
327
|
+
font-size: 18px;
|
|
328
|
+
}
|
|
329
|
+
.e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
330
|
+
margin-top: -4px;
|
|
331
|
+
}
|
|
332
|
+
.e-image-editor .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview {
|
|
333
|
+
height: 18px;
|
|
334
|
+
width: 18px;
|
|
335
|
+
margin-top: -4px !important; /* stylelint-disable-line declaration-no-important */
|
|
336
|
+
margin-left: -4px;
|
|
337
|
+
}
|
|
338
|
+
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform {
|
|
339
|
+
font-size: 18px;
|
|
340
|
+
}
|
|
341
|
+
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform .e-icons.e-caret {
|
|
342
|
+
font-size: 10px !important; /* stylelint-disable-line declaration-no-important */
|
|
343
|
+
}
|
|
344
|
+
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save {
|
|
345
|
+
font-size: 18px;
|
|
346
|
+
}
|
|
347
|
+
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save .e-icons.e-caret {
|
|
348
|
+
font-size: 10px !important; /* stylelint-disable-line declaration-no-important */
|
|
349
|
+
}
|
|
350
|
+
.e-image-editor .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
|
|
351
|
+
line-height: 1;
|
|
352
|
+
}
|
|
353
|
+
.e-image-editor .e-toolbar-area + .e-canvas-wrapper .e-textarea {
|
|
354
|
+
line-height: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
355
|
+
}
|
|
356
|
+
.e-image-editor .e-bottom-toolbar, .e-image-editor .e-bottom-toolbar-area {
|
|
357
|
+
border-top: 1px solid var(--color-sf-content-bg-color-alt2);
|
|
358
|
+
}
|
|
359
|
+
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
360
|
+
border-bottom: 1px solid var(--color-sf-content-bg-color-alt2);
|
|
361
|
+
width: 100%;
|
|
362
|
+
z-index: 1;
|
|
363
|
+
}
|
|
364
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar {
|
|
365
|
+
border-bottom: none !important; /* stylelint-disable-line declaration-no-important */
|
|
366
|
+
height: 130px !important; /* stylelint-disable-line declaration-no-important */
|
|
367
|
+
}
|
|
368
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-toolbar {
|
|
369
|
+
height: inherit !important; /* stylelint-disable-line declaration-no-important */
|
|
370
|
+
}
|
|
371
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-toolbar-item {
|
|
372
|
+
display: inline-grid;
|
|
373
|
+
}
|
|
374
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-toolbar-item > span {
|
|
375
|
+
font-weight: 500;
|
|
376
|
+
margin: 4px;
|
|
377
|
+
text-align: center;
|
|
378
|
+
}
|
|
379
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-dropdown-btn {
|
|
380
|
+
margin: 0 auto;
|
|
381
|
+
width: -webkit-max-content;
|
|
382
|
+
width: -moz-max-content;
|
|
383
|
+
width: max-content;
|
|
384
|
+
}
|
|
385
|
+
.e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-toolbar {
|
|
386
|
+
height: inherit !important; /* stylelint-disable-line declaration-no-important */
|
|
387
|
+
}
|
|
388
|
+
.e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-toolbar-item:not(.e-hidden) {
|
|
389
|
+
display: inline-grid;
|
|
390
|
+
}
|
|
391
|
+
.e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-toolbar-item > span {
|
|
392
|
+
font-weight: 500;
|
|
393
|
+
margin: 4px;
|
|
394
|
+
text-align: center;
|
|
395
|
+
}
|
|
396
|
+
.e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-dropdown-btn {
|
|
397
|
+
margin: 0 auto;
|
|
398
|
+
width: -webkit-max-content;
|
|
399
|
+
width: -moz-max-content;
|
|
400
|
+
width: max-content;
|
|
401
|
+
}
|
|
402
|
+
.e-image-editor .e-contextual-toolbar-wrapper.e-hide {
|
|
403
|
+
display: none;
|
|
404
|
+
}
|
|
405
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item {
|
|
406
|
+
height: auto !important; /* stylelint-disable-line declaration-no-important */
|
|
407
|
+
}
|
|
408
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filterwrapper canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item .filter-wrapper canvas {
|
|
409
|
+
border: 2px solid transparent;
|
|
410
|
+
height: 100px;
|
|
411
|
+
}
|
|
412
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-slider-container {
|
|
413
|
+
margin-left: calc(50% - 137px);
|
|
414
|
+
height: 54px !important; /* stylelint-disable-line declaration-no-important */
|
|
415
|
+
}
|
|
416
|
+
.e-ie-straighten-value-span,
|
|
417
|
+
.e-ie-straighten-span,
|
|
418
|
+
.e-ie-toolbar-straighten {
|
|
419
|
+
font-size: 14px !important; /* stylelint-disable-line declaration-no-important */
|
|
420
|
+
padding-left: 10px !important; /* stylelint-disable-line declaration-no-important */
|
|
421
|
+
padding-right: 10px !important; /* stylelint-disable-line declaration-no-important */
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
.e-straighten .e-control-wrapper.e-slider-container.e-horizontal {
|
|
425
|
+
height: auto;
|
|
426
|
+
margin-left: 8px;
|
|
427
|
+
padding-right: 2px;
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
.e-straighten .e-control-wrapper.e-slider-container.e-horizontal .e-slider {
|
|
431
|
+
top: calc(50% - 20px) !important; /* stylelint-disable-line declaration-no-important */
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
.e-straighten .e-control-wrapper.e-slider-container.e-horizontal .e-slider-track,
|
|
435
|
+
.e-straighten .e-control-wrapper.e-slider-container.e-horizontal .e-range {
|
|
436
|
+
top: calc(50% - 2px) !important; /* stylelint-disable-line declaration-no-important */
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
.e-straighten .e-control-wrapper.e-slider-container .e-slider .e-handle {
|
|
440
|
+
top: calc(50% - 5px) !important; /* stylelint-disable-line declaration-no-important */
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
.e-ie-finetune-value-span {
|
|
444
|
+
top: 29% !important; /* stylelint-disable-line declaration-no-important */
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
.e-ie-finetune-slider-label {
|
|
448
|
+
top: 29% !important; /* stylelint-disable-line declaration-no-important */
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
.e-ie-finetune-slider-wrap {
|
|
452
|
+
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
.e-transparency-slider-wrap {
|
|
456
|
+
top: calc(50% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
.e-ie-slider-wrap {
|
|
460
|
+
top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
.e-dropdown-popup.e-ie-crop-ddb-popup ul {
|
|
464
|
+
max-height: 250px;
|
|
465
|
+
overflow-y: auto;
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
.e-dropdown-popup.e-ie-ddb-popup {
|
|
469
|
+
background: none !important; /* stylelint-disable-line declaration-no-important */
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
.e-device.e-image-editor .e-ie-device-transparency-slider {
|
|
473
|
+
margin-left: calc(50% - 80px) !important; /* stylelint-disable-line declaration-no-important */
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
.e-ie-quality-slider.e-control-wrapper.e-slider-container.e-horizontal,
|
|
477
|
+
.e-ie-quality-option-container .e-slider-container.e-horizontal {
|
|
478
|
+
height: 28px;
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
.e-ie-quality-slider.e-control-wrapper.e-slider-container.e-horizontal .e-slider {
|
|
482
|
+
top: calc(50% - 14px) !important; /* stylelint-disable-line declaration-no-important */
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
.e-ie-quality-slider.e-slider-container + .e-ie-img-icon-button,
|
|
486
|
+
.e-ie-quality-option-container .e-slider-container.e-horizontal + .e-ie-img-icon-button {
|
|
487
|
+
margin-left: 20px !important; /* stylelint-disable-line declaration-no-important */
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
.e-ie-img-size {
|
|
491
|
+
margin: 10px 10px 0;
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
.e-ie-dlg-img-content {
|
|
495
|
+
width: 40%;
|
|
496
|
+
height: 100%;
|
|
497
|
+
margin-right: 5%;
|
|
498
|
+
display: -webkit-box;
|
|
499
|
+
display: -ms-flexbox;
|
|
500
|
+
display: flex;
|
|
501
|
+
-webkit-box-orient: vertical;
|
|
502
|
+
-webkit-box-direction: normal;
|
|
503
|
+
-ms-flex-direction: column;
|
|
504
|
+
flex-direction: column;
|
|
505
|
+
-webkit-box-pack: center;
|
|
506
|
+
-ms-flex-pack: center;
|
|
507
|
+
justify-content: center;
|
|
508
|
+
-webkit-box-align: center;
|
|
509
|
+
-ms-flex-align: center;
|
|
510
|
+
align-items: center;
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
.e-ie-img-input {
|
|
514
|
+
width: 90% !important; /* stylelint-disable-line declaration-no-important */
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
.e-ie-img-dlg-canvas {
|
|
518
|
+
width: 100%;
|
|
519
|
+
height: 100%;
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
.e-ie-img-size {
|
|
523
|
+
font-size: 14px;
|
|
524
|
+
display: -webkit-box;
|
|
525
|
+
display: -ms-flexbox;
|
|
526
|
+
display: flex;
|
|
527
|
+
-webkit-box-orient: vertical;
|
|
528
|
+
-webkit-box-direction: normal;
|
|
529
|
+
-ms-flex-direction: column;
|
|
530
|
+
flex-direction: column;
|
|
531
|
+
-webkit-box-pack: start;
|
|
532
|
+
-ms-flex-pack: start;
|
|
533
|
+
justify-content: flex-start;
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
.e-ie-dlg-right-content {
|
|
537
|
+
width: 60%;
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
.e-ie-img-save-name {
|
|
541
|
+
display: inline-block;
|
|
542
|
+
margin-right: 10px;
|
|
543
|
+
width: calc(71% - 13px);
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
.e-ie-img-save-dlg {
|
|
547
|
+
display: inline-block;
|
|
548
|
+
width: 90px;
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
.e-ie-img-save-dlg .e-btn {
|
|
552
|
+
width: 100%;
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
.e-ie-img-label-name {
|
|
556
|
+
margin-bottom: 5px;
|
|
557
|
+
display: block;
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
.e-ie-img-quality-name {
|
|
561
|
+
position: relative;
|
|
562
|
+
width: 100% !important; /* stylelint-disable-line declaration-no-important */
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
.e-ie-quality-info {
|
|
566
|
+
margin-bottom: 0;
|
|
567
|
+
margin-top: 0;
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
.e-ie-quality-span {
|
|
571
|
+
margin-left: 5px;
|
|
572
|
+
display: -webkit-inline-box;
|
|
573
|
+
display: -ms-inline-flexbox;
|
|
574
|
+
display: inline-flex;
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
.e-ie-img-quality-label {
|
|
578
|
+
margin-bottom: 3%;
|
|
579
|
+
margin-top: 5%;
|
|
580
|
+
display: -webkit-inline-box;
|
|
581
|
+
display: -ms-inline-flexbox;
|
|
582
|
+
display: inline-flex;
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
.e-ie-img-quality-size {
|
|
586
|
+
margin-top: 5%;
|
|
587
|
+
display: block;
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
.e-ie-img-size-value-span {
|
|
591
|
+
width: 8%;
|
|
592
|
+
text-transform: capitalize;
|
|
593
|
+
margin-left: calc(100% - 194px);
|
|
594
|
+
margin-top: 4px;
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
.e-device.e-ie-save-dialog .e-ie-img-size-value-span {
|
|
598
|
+
margin-left: calc(100% - 145px) !important; /* stylelint-disable-line declaration-no-important */
|
|
599
|
+
margin-left: calc(100% - 156px) !important; /* stylelint-disable-line declaration-no-important */
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
.e-device.e-ie-save-dialog .e-ie-img-save-name {
|
|
603
|
+
width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
.e-ie-img-icon-button {
|
|
607
|
+
margin-left: 10px;
|
|
608
|
+
width: -webkit-max-content;
|
|
609
|
+
width: -moz-max-content;
|
|
610
|
+
width: max-content;
|
|
611
|
+
margin-bottom: 4px;
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
.e-ie-quality-option-container .e-btn-group .e-btn {
|
|
615
|
+
padding-left: 13px;
|
|
616
|
+
padding-right: 13px;
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
.e-blr-ie-save-dialog .e-ie-img-save-name {
|
|
620
|
+
width: calc(67% - 13px);
|
|
621
|
+
}
|
|
622
|
+
.e-blr-ie-save-dialog .e-ie-quality-custom {
|
|
623
|
+
width: calc(65% - 13px);
|
|
624
|
+
}
|
|
625
|
+
.e-blr-ie-save-dialog .e-ie-quality-option-container .e-ie-img-icon-button {
|
|
626
|
+
margin-left: 20px;
|
|
627
|
+
}
|
|
628
|
+
.e-blr-ie-save-dialog .e-ie-img-size-value-span {
|
|
629
|
+
vertical-align: middle;
|
|
630
|
+
margin-left: calc(50% - 55px);
|
|
631
|
+
}
|
|
632
|
+
.e-blr-ie-save-dialog .e-btn-group .e-btn {
|
|
633
|
+
padding: 4px 12px;
|
|
634
|
+
}
|
|
635
|
+
.e-blr-ie-save-dialog.e-device .e-ie-img-save-name {
|
|
636
|
+
width: calc(64% - 15px) !important; /* stylelint-disable-line declaration-no-important */
|
|
637
|
+
}
|
|
638
|
+
.e-blr-ie-save-dialog.e-device .e-ie-quality-custom {
|
|
639
|
+
width: 75% !important; /* stylelint-disable-line declaration-no-important */
|
|
640
|
+
}
|
|
641
|
+
.e-blr-ie-save-dialog.e-device .e-ie-quality-option-container .e-ie-img-icon-button {
|
|
642
|
+
margin-left: 0;
|
|
643
|
+
}
|
|
644
|
+
.e-blr-ie-save-dialog.e-device .e-slider-container {
|
|
645
|
+
margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
646
|
+
height: 28px !important; /* stylelint-disable-line declaration-no-important */
|
|
647
|
+
}
|
|
648
|
+
.e-blr-ie-save-dialog.e-device .e-ie-img-size-value-span {
|
|
649
|
+
margin-left: calc(70% - 100px) !important; /* stylelint-disable-line declaration-no-important */
|
|
650
|
+
}
|
|
651
|
+
.e-blr-ie-save-dialog.e-device .e-btn-group .e-btn {
|
|
652
|
+
padding: 6px 13px;
|
|
653
|
+
}
|
|
654
|
+
.e-ie-straighten-value-span {
|
|
655
|
+
margin-left: 7px !important; /* stylelint-disable-line declaration-no-important */
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
.e-device.e-image-editor .e-ie-straighten-value-span {
|
|
659
|
+
margin-left: 15px !important; /* stylelint-disable-line declaration-no-important */
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
@media only screen and (max-width: 390px) {
|
|
663
|
+
.e-device.e-image-editor .e-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-ie-img-quality-name .e-btn-group .e-btn {
|
|
664
|
+
padding-left: 9px;
|
|
665
|
+
padding-right: 9px;
|
|
666
|
+
}
|
|
667
|
+
.e-device.e-image-editor .e-ie-save-dialog .e-dialog .e-dlg-content .e-ie-dlg-right-content .e-ie-img-save-name {
|
|
668
|
+
width: calc(65% - 30px) !important; /* stylelint-disable-line declaration-no-important */
|
|
669
|
+
}
|
|
670
|
+
}
|
|
671
|
+
.e-device.e-image-editor .e-contextual-toolbar-wrapper .e-ie-finetune-slider-label {
|
|
672
|
+
left: calc(50% - 145px) !important; /* stylelint-disable-line declaration-no-important */
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
.e-device.e-image-editor .e-contextual-toolbar-wrapper .e-slider-container {
|
|
676
|
+
width: 170px !important; /* stylelint-disable-line declaration-no-important */
|
|
677
|
+
margin-left: calc(50% - 62px) !important; /* stylelint-disable-line declaration-no-important */
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
.e-device.e-image-editor .e-contextual-toolbar-wrapper .e-ie-finetune-value-span {
|
|
681
|
+
margin-left: 10px !important; /* stylelint-disable-line declaration-no-important */
|
|
682
|
+
}
|
|
683
|
+
|
|
684
|
+
.e-image-editor {
|
|
685
|
+
background: var(--color-sf-border-light);
|
|
686
|
+
}
|
|
687
|
+
.e-image-editor .e-contextual-toolbar-wrapper {
|
|
688
|
+
background: var(--color-sf-content-bg-color-alt1);
|
|
689
|
+
}
|
|
690
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item:hover .filterwrapper canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filterwrapper canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item:hover .filter-wrapper canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filter-wrapper canvas {
|
|
691
|
+
border-color: var(--color-sf-secondary-bg-color-pressed) !important; /* stylelint-disable-line declaration-no-important */
|
|
692
|
+
}
|
|
693
|
+
.e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filterwrapper:focus canvas, .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar-item.e-selected .filter-wrapper:focus canvas {
|
|
694
|
+
border-color: var(--color-sf-secondary-bg-color-pressed) !important; /* stylelint-disable-line declaration-no-important */
|
|
695
|
+
}
|
|
696
|
+
.e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn.e-selected-btn {
|
|
697
|
+
background: var(--color-sf-secondary-bg-color-focus) !important; /* stylelint-disable-line declaration-no-important */
|
|
698
|
+
}
|
|
699
|
+
.e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn.e-selected-btn .e-icons {
|
|
700
|
+
color: var(--color-sf-secondary-text-color-focus);
|
|
701
|
+
}
|
|
702
|
+
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn {
|
|
703
|
+
background: inherit;
|
|
704
|
+
border: none;
|
|
705
|
+
margin-top: -1px;
|
|
706
|
+
background: var(--color-sf-content-bg-color-alt1);
|
|
707
|
+
color: var(--color-sf-icon-color);
|
|
708
|
+
}
|
|
709
|
+
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-caret-hide {
|
|
710
|
+
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
711
|
+
}
|
|
712
|
+
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
|
|
713
|
+
background: var(--color-sf-secondary-bg-color-hover);
|
|
714
|
+
-webkit-box-shadow: none;
|
|
715
|
+
box-shadow: none;
|
|
716
|
+
color: var(--color-sf-secondary-text-color);
|
|
717
|
+
}
|
|
718
|
+
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
|
|
719
|
+
background: var(--color-sf-secondary-bg-color-focus);
|
|
720
|
+
-webkit-box-shadow: none;
|
|
721
|
+
box-shadow: none;
|
|
722
|
+
color: var(--color-sf-secondary-text-color-focus);
|
|
723
|
+
}
|
|
724
|
+
.e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
|
|
725
|
+
background: var(--color-sf-secondary-bg-color-pressed);
|
|
726
|
+
-webkit-box-shadow: none;
|
|
727
|
+
box-shadow: none;
|
|
728
|
+
color: var(--color-sf-secondary-text-color-pressed);
|
|
729
|
+
}
|
|
730
|
+
.e-image-editor .e-toolbar .e-toolbar-items .e-colorpicker-wrapper.e-shape-fill-color .e-split-btn-wrapper .e-split-btn .e-selected-color, .e-image-editor .e-toolbar .e-toolbar-items .e-colorpicker-wrapper.e-shape-stroke-color .e-split-btn-wrapper .e-split-btn .e-selected-color, .e-image-editor .e-toolbar .e-toolbar-items .e-colorpicker-wrapper.e-text-stroke-color .e-split-btn-wrapper .e-split-btn .e-selected-color, .e-image-editor .e-toolbar .e-toolbar-items .e-colorpicker-wrapper.e-pen-stroke-color .e-split-btn-wrapper .e-split-btn .e-selected-color {
|
|
731
|
+
background: none;
|
|
732
|
+
border-bottom-style: solid;
|
|
733
|
+
border-bottom-width: 3px;
|
|
734
|
+
width: 14px;
|
|
735
|
+
margin: 0 2px;
|
|
736
|
+
border-bottom-color: var(--color-sf-black);
|
|
737
|
+
}
|
|
738
|
+
.e-image-editor .e-toolbar .e-toolbar-items .e-colorpicker-wrapper.e-shape-fill-color .e-split-btn-wrapper .e-split-btn .e-selected-color .e-split-preview, .e-image-editor .e-toolbar .e-toolbar-items .e-colorpicker-wrapper.e-shape-stroke-color .e-split-btn-wrapper .e-split-btn .e-selected-color .e-split-preview, .e-image-editor .e-toolbar .e-toolbar-items .e-colorpicker-wrapper.e-text-stroke-color .e-split-btn-wrapper .e-split-btn .e-selected-color .e-split-preview, .e-image-editor .e-toolbar .e-toolbar-items .e-colorpicker-wrapper.e-pen-stroke-color .e-split-btn-wrapper .e-split-btn .e-selected-color .e-split-preview {
|
|
739
|
+
display: none;
|
|
740
|
+
}
|
|
741
|
+
.e-image-editor .e-toolbar .e-toolbar-items .e-nocolor-item {
|
|
742
|
+
background: transparent url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjZweCIgdmlld0JveD0iMCAwIDYgNiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KICAgIDwhLS0gR2VuZXJhdG9yOiBTa2V0Y2ggNTAgKDU0OTgzKSAtIGh0dHA6Ly93d3cuYm9oZW1pYW5jb2RpbmcuY29tL3NrZXRjaCAtLT4KICAgIDx0aXRsZT5Hcm91cCA5PC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGRlZnM+PC9kZWZzPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9Ikdyb3VwLTkiPgogICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLTExIiBmaWxsPSIjRTBFMEUwIiB4PSIwIiB5PSIwIiB3aWR0aD0iMyIgaGVpZ2h0PSIzIj48L3JlY3Q+CiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUtMTEtQ29weS0yIiBmaWxsPSIjRkZGRkZGIiB4PSIwIiB5PSIzIiB3aWR0aD0iMyIgaGVpZ2h0PSIzIj48L3JlY3Q+CiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUtMTEtQ29weSIgZmlsbD0iI0ZGRkZGRiIgeD0iMyIgeT0iMCIgd2lkdGg9IjMiIGhlaWdodD0iMyI+PC9yZWN0PgogICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLTExLUNvcHktMyIgZmlsbD0iI0UwRTBFMCIgeD0iMyIgeT0iMyIgd2lkdGg9IjMiIGhlaWdodD0iMyI+PC9yZWN0PgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+") !important; /* stylelint-disable-line declaration-no-important */
|
|
743
|
+
background-size: 8px !important; /* stylelint-disable-line declaration-no-important */
|
|
744
|
+
}
|
|
745
|
+
.e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item.e-overlay .e-btn {
|
|
746
|
+
-webkit-box-shadow: none !important;
|
|
747
|
+
box-shadow: none !important; /* stylelint-disable-line declaration-no-important */
|
|
748
|
+
}
|
|
749
|
+
|
|
750
|
+
.e-dropdown-popup .e-item.e-selected-btn {
|
|
751
|
+
background-color: var(--color-sf-content-bg-color-selected) !important; /* stylelint-disable-line declaration-no-important */
|
|
752
|
+
color: var(--color-sf-content-text-color-selected) !important; /* stylelint-disable-line declaration-no-important */
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
.e-ie-filter-canvas:focus,
|
|
756
|
+
.filter-wrapper:focus .e-ie-filter-canvas,
|
|
757
|
+
.filter-wrapper:focus canvas,
|
|
758
|
+
.filter-wrapper canvas:focus {
|
|
759
|
+
border-color: var(--color-sf-icon-color) !important; /* stylelint-disable-line declaration-no-important */
|
|
760
|
+
}
|
|
761
|
+
|
|
762
|
+
.e-bigger .e-image-editor .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle,
|
|
763
|
+
.e-image-editor.e-bigger .e-contextual-toolbar-wrapper .e-slider-container .e-slider .e-handle {
|
|
764
|
+
top: calc(50% - 8px) !important; /* stylelint-disable-line declaration-no-important */
|
|
765
|
+
}
|
|
766
|
+
.e-bigger .e-image-editor .e-contextual-toolbar-wrapper .e-toolbar,
|
|
767
|
+
.e-image-editor.e-bigger .e-contextual-toolbar-wrapper .e-toolbar {
|
|
768
|
+
height: 130px !important; /* stylelint-disable-line declaration-no-important */
|
|
769
|
+
}
|
|
770
|
+
.e-bigger .e-image-editor .e-contextual-toolbar-wrapper .e-frame-wrapper .e-toolbar, .e-bigger .e-image-editor .e-contextual-toolbar-wrapper.e-frame-wrapper .e-toolbar,
|
|
771
|
+
.e-image-editor.e-bigger .e-contextual-toolbar-wrapper .e-frame-wrapper .e-toolbar,
|
|
772
|
+
.e-image-editor.e-bigger .e-contextual-toolbar-wrapper.e-frame-wrapper .e-toolbar {
|
|
773
|
+
height: inherit !important; /* stylelint-disable-line declaration-no-important */
|
|
774
|
+
}
|
|
775
|
+
.e-bigger .e-image-editor .e-toolbar,
|
|
776
|
+
.e-image-editor.e-bigger .e-toolbar {
|
|
777
|
+
height: 46px !important; /* stylelint-disable-line declaration-no-important */
|
|
778
|
+
min-height: 46px !important; /* stylelint-disable-line declaration-no-important */
|
|
779
|
+
}
|
|
780
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-height span, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-width span,
|
|
781
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-height span,
|
|
782
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item.e-ie-resize-width span {
|
|
783
|
+
font-size: 16px;
|
|
784
|
+
}
|
|
785
|
+
.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,
|
|
786
|
+
.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 {
|
|
787
|
+
font-size: 20px;
|
|
788
|
+
}
|
|
789
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon,
|
|
790
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
791
|
+
font-size: 20px;
|
|
792
|
+
padding-top: 4px;
|
|
793
|
+
padding-bottom: 4px;
|
|
794
|
+
}
|
|
795
|
+
.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-frame-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,
|
|
796
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
797
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
798
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-frame-stroke.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
799
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
800
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
801
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
802
|
+
font-size: 20px;
|
|
803
|
+
}
|
|
804
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret,
|
|
805
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret {
|
|
806
|
+
margin-top: -4px;
|
|
807
|
+
}
|
|
808
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview,
|
|
809
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview {
|
|
810
|
+
margin-top: -4px !important; /* stylelint-disable-line declaration-no-important */
|
|
811
|
+
margin-left: -4px;
|
|
812
|
+
}
|
|
813
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform,
|
|
814
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select,
|
|
815
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation,
|
|
816
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform {
|
|
817
|
+
font-size: 20px;
|
|
818
|
+
}
|
|
819
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform .e-icons.e-caret,
|
|
820
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select .e-icons.e-caret,
|
|
821
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation .e-icons.e-caret,
|
|
822
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform .e-icons.e-caret {
|
|
823
|
+
font-size: 10px;
|
|
824
|
+
}
|
|
825
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save,
|
|
826
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save {
|
|
827
|
+
font-size: 20px;
|
|
828
|
+
}
|
|
829
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save .e-icons.e-caret,
|
|
830
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn .e-save .e-icons.e-caret {
|
|
831
|
+
font-size: 10px;
|
|
832
|
+
}
|
|
833
|
+
.e-bigger .e-image-editor .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left,
|
|
834
|
+
.e-image-editor.e-bigger .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
|
|
835
|
+
line-height: 1;
|
|
836
|
+
}
|
|
837
|
+
.e-bigger .e-straighten .e-control-wrapper.e-slider-container .e-slider .e-handle {
|
|
838
|
+
top: calc(50% - 6px) !important; /* stylelint-disable-line declaration-no-important */
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
.e-bigger .e-ie-save-dialog .e-ie-img-save-name {
|
|
842
|
+
width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
|
|
843
|
+
}
|
|
844
|
+
|
|
845
|
+
.e-bigger .e-image-editor .e-dlg-container .e-dialog,
|
|
846
|
+
.e-bigger.e-image-editor .e-dlg-container .e-dialog {
|
|
847
|
+
width: 656px;
|
|
848
|
+
}
|
|
849
|
+
|
|
850
|
+
.e-bigger .e-ie-img-save-dlg {
|
|
851
|
+
width: 100px;
|
|
852
|
+
}
|
|
853
|
+
|
|
854
|
+
.e-bigger .e-image-editor .e-control-wrapper.e-slider-container.e-horizontal,
|
|
855
|
+
.e-bigger.e-image-editor .e-control-wrapper.e-slider-container.e-horizontal {
|
|
856
|
+
width: 217px;
|
|
857
|
+
}
|
|
858
|
+
|
|
859
|
+
.e-bigger .e-dialog.e-blr-ie-save-dialog:not(.e-device) {
|
|
860
|
+
width: 620px !important; /* stylelint-disable-line declaration-no-important */
|
|
861
|
+
}
|
|
862
|
+
.e-bigger .e-dialog.e-blr-ie-save-dialog:not(.e-device) .e-ie-img-icon-button {
|
|
863
|
+
padding: 4px 15px;
|
|
864
|
+
}
|
|
865
|
+
.e-bigger .e-ie-save-dialog .e-ie-img-save-name {
|
|
866
|
+
width: calc(71% - 30px) !important; /* stylelint-disable-line declaration-no-important */
|
|
867
|
+
}
|