@syncfusion/ej2-vue-popups 20.2.49 → 20.3.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/CHANGELOG.md +3 -0
- package/dist/ej2-vue-popups.umd.min.js +1 -1
- package/dist/es6/ej2-vue-popups.es2015.js +16 -19
- package/dist/es6/ej2-vue-popups.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-popups.es5.js +16 -19
- package/dist/es6/ej2-vue-popups.es5.js.map +1 -1
- package/dist/global/ej2-vue-popups.min.js +2 -2
- package/package.json +8 -8
- package/src/dialog/buttons.directive.d.ts +0 -1
- package/src/dialog/buttons.directive.js +5 -6
- package/src/dialog/dialog.component.d.ts +0 -1
- package/src/dialog/dialog.component.js +3 -4
- package/src/tooltip/tooltip.component.d.ts +0 -1
- package/src/tooltip/tooltip.component.js +3 -4
- package/styles/bootstrap-dark.css +15 -0
- package/styles/bootstrap.css +15 -0
- package/styles/bootstrap4.css +15 -0
- package/styles/bootstrap5-dark.css +16 -0
- package/styles/bootstrap5.css +17 -0
- package/styles/dialog/bootstrap-dark.css +10 -0
- package/styles/dialog/bootstrap.css +10 -0
- package/styles/dialog/bootstrap4.css +10 -0
- package/styles/dialog/bootstrap5-dark.css +10 -0
- package/styles/dialog/bootstrap5.css +11 -0
- package/styles/dialog/fabric-dark.css +10 -0
- package/styles/dialog/fabric.css +10 -0
- package/styles/dialog/fluent-dark.css +14 -4
- package/styles/dialog/fluent.css +15 -4
- package/styles/dialog/highcontrast-light.css +10 -0
- package/styles/dialog/highcontrast.css +10 -0
- package/styles/dialog/material-dark.css +10 -0
- package/styles/dialog/material.css +10 -0
- package/styles/dialog/tailwind-dark.css +12 -2
- package/styles/dialog/tailwind.css +13 -2
- package/styles/fabric-dark.css +15 -0
- package/styles/fabric.css +15 -0
- package/styles/fluent-dark.css +20 -4
- package/styles/fluent.css +21 -4
- package/styles/highcontrast-light.css +15 -0
- package/styles/highcontrast.css +15 -0
- package/styles/material-dark.css +15 -0
- package/styles/material.css +15 -0
- package/styles/popup/bootstrap5-dark.css +1 -0
- package/styles/popup/bootstrap5.css +1 -0
- package/styles/popup/fluent-dark.css +1 -0
- package/styles/popup/fluent.css +1 -0
- package/styles/popup/tailwind-dark.css +1 -0
- package/styles/popup/tailwind.css +1 -0
- package/styles/spinner/bootstrap-dark.css +5 -0
- package/styles/spinner/bootstrap.css +5 -0
- package/styles/spinner/bootstrap4.css +5 -0
- package/styles/spinner/bootstrap5-dark.css +5 -0
- package/styles/spinner/bootstrap5.css +5 -0
- package/styles/spinner/fabric-dark.css +5 -0
- package/styles/spinner/fabric.css +5 -0
- package/styles/spinner/fluent-dark.css +5 -0
- package/styles/spinner/fluent.css +5 -0
- package/styles/spinner/highcontrast-light.css +5 -0
- package/styles/spinner/highcontrast.css +5 -0
- package/styles/spinner/material-dark.css +5 -0
- package/styles/spinner/material.css +5 -0
- package/styles/spinner/tailwind-dark.css +5 -0
- package/styles/spinner/tailwind.css +5 -0
- package/styles/tailwind-dark.css +18 -2
- package/styles/tailwind.css +19 -2
|
@@ -19,12 +19,15 @@
|
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
/*! dialog layout */
|
|
22
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
22
23
|
.e-dialog {
|
|
23
24
|
border: 1px solid rgba(0, 0, 0, 0.2);
|
|
24
25
|
border-radius: 3px;
|
|
25
26
|
-ms-flex-direction: column;
|
|
26
27
|
flex-direction: column;
|
|
27
28
|
width: 100%;
|
|
29
|
+
/* stylelint-disable declaration-no-important */
|
|
30
|
+
/* stylelint-enable declaration-no-important */
|
|
28
31
|
}
|
|
29
32
|
.e-dialog.e-popup {
|
|
30
33
|
width: 100%;
|
|
@@ -92,6 +95,9 @@
|
|
|
92
95
|
.e-dialog .e-footer-content.e-hide {
|
|
93
96
|
display: none;
|
|
94
97
|
}
|
|
98
|
+
.e-dialog .e-alert-dialog .e-footer-content {
|
|
99
|
+
border-top: none;
|
|
100
|
+
}
|
|
95
101
|
.e-dialog .e-footer-content {
|
|
96
102
|
text-align: right;
|
|
97
103
|
}
|
|
@@ -257,10 +263,12 @@
|
|
|
257
263
|
transform: rotate(90deg);
|
|
258
264
|
}
|
|
259
265
|
|
|
266
|
+
/* stylelint-disable declaration-no-important */
|
|
260
267
|
.e-dlg-target.e-scroll-disabled {
|
|
261
268
|
overflow: hidden !important;
|
|
262
269
|
}
|
|
263
270
|
|
|
271
|
+
/* stylelint-enable declaration-no-important */
|
|
264
272
|
.e-dlg-overlay {
|
|
265
273
|
height: 100%;
|
|
266
274
|
left: 0;
|
|
@@ -278,12 +286,14 @@
|
|
|
278
286
|
overflow: auto;
|
|
279
287
|
}
|
|
280
288
|
|
|
289
|
+
/* stylelint-disable declaration-no-important */
|
|
281
290
|
.e-dlg-fullscreen {
|
|
282
291
|
height: 100% !important;
|
|
283
292
|
left: 0 !important;
|
|
284
293
|
width: 100% !important;
|
|
285
294
|
}
|
|
286
295
|
|
|
296
|
+
/* stylelint-enable declaration-no-important */
|
|
287
297
|
.e-popup.e-popup-open.e-dialog {
|
|
288
298
|
display: -ms-inline-flexbox;
|
|
289
299
|
display: inline-flex;
|
|
@@ -19,12 +19,15 @@
|
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
/*! dialog layout */
|
|
22
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
22
23
|
.e-dialog {
|
|
23
24
|
border: 1px solid #444c54;
|
|
24
25
|
border-radius: 6px;
|
|
25
26
|
-ms-flex-direction: column;
|
|
26
27
|
flex-direction: column;
|
|
27
28
|
width: 100%;
|
|
29
|
+
/* stylelint-disable declaration-no-important */
|
|
30
|
+
/* stylelint-enable declaration-no-important */
|
|
28
31
|
}
|
|
29
32
|
.e-dialog.e-popup {
|
|
30
33
|
width: 100%;
|
|
@@ -92,6 +95,9 @@
|
|
|
92
95
|
.e-dialog .e-footer-content.e-hide {
|
|
93
96
|
display: none;
|
|
94
97
|
}
|
|
98
|
+
.e-dialog .e-alert-dialog .e-footer-content {
|
|
99
|
+
border-top: none;
|
|
100
|
+
}
|
|
95
101
|
.e-dialog .e-footer-content {
|
|
96
102
|
text-align: right;
|
|
97
103
|
}
|
|
@@ -257,10 +263,12 @@
|
|
|
257
263
|
transform: rotate(90deg);
|
|
258
264
|
}
|
|
259
265
|
|
|
266
|
+
/* stylelint-disable declaration-no-important */
|
|
260
267
|
.e-dlg-target.e-scroll-disabled {
|
|
261
268
|
overflow: hidden !important;
|
|
262
269
|
}
|
|
263
270
|
|
|
271
|
+
/* stylelint-enable declaration-no-important */
|
|
264
272
|
.e-dlg-overlay {
|
|
265
273
|
height: 100%;
|
|
266
274
|
left: 0;
|
|
@@ -278,12 +286,14 @@
|
|
|
278
286
|
overflow: auto;
|
|
279
287
|
}
|
|
280
288
|
|
|
289
|
+
/* stylelint-disable declaration-no-important */
|
|
281
290
|
.e-dlg-fullscreen {
|
|
282
291
|
height: 100% !important;
|
|
283
292
|
left: 0 !important;
|
|
284
293
|
width: 100% !important;
|
|
285
294
|
}
|
|
286
295
|
|
|
296
|
+
/* stylelint-enable declaration-no-important */
|
|
287
297
|
.e-popup.e-popup-open.e-dialog {
|
|
288
298
|
display: -ms-inline-flexbox;
|
|
289
299
|
display: inline-flex;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/* stylelint-disable-line no-empty-source */
|
|
1
2
|
.e-dialog .e-icon-dlg-close::before {
|
|
2
3
|
content: "\e7e7";
|
|
3
4
|
position: relative;
|
|
@@ -19,12 +20,15 @@
|
|
|
19
20
|
}
|
|
20
21
|
|
|
21
22
|
/*! dialog layout */
|
|
23
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
22
24
|
.e-dialog {
|
|
23
25
|
border: 1px solid #dee2e6;
|
|
24
26
|
border-radius: 6px;
|
|
25
27
|
-ms-flex-direction: column;
|
|
26
28
|
flex-direction: column;
|
|
27
29
|
width: 100%;
|
|
30
|
+
/* stylelint-disable declaration-no-important */
|
|
31
|
+
/* stylelint-enable declaration-no-important */
|
|
28
32
|
}
|
|
29
33
|
.e-dialog.e-popup {
|
|
30
34
|
width: 100%;
|
|
@@ -92,6 +96,9 @@
|
|
|
92
96
|
.e-dialog .e-footer-content.e-hide {
|
|
93
97
|
display: none;
|
|
94
98
|
}
|
|
99
|
+
.e-dialog .e-alert-dialog .e-footer-content {
|
|
100
|
+
border-top: none;
|
|
101
|
+
}
|
|
95
102
|
.e-dialog .e-footer-content {
|
|
96
103
|
text-align: right;
|
|
97
104
|
}
|
|
@@ -257,10 +264,12 @@
|
|
|
257
264
|
transform: rotate(90deg);
|
|
258
265
|
}
|
|
259
266
|
|
|
267
|
+
/* stylelint-disable declaration-no-important */
|
|
260
268
|
.e-dlg-target.e-scroll-disabled {
|
|
261
269
|
overflow: hidden !important;
|
|
262
270
|
}
|
|
263
271
|
|
|
272
|
+
/* stylelint-enable declaration-no-important */
|
|
264
273
|
.e-dlg-overlay {
|
|
265
274
|
height: 100%;
|
|
266
275
|
left: 0;
|
|
@@ -278,12 +287,14 @@
|
|
|
278
287
|
overflow: auto;
|
|
279
288
|
}
|
|
280
289
|
|
|
290
|
+
/* stylelint-disable declaration-no-important */
|
|
281
291
|
.e-dlg-fullscreen {
|
|
282
292
|
height: 100% !important;
|
|
283
293
|
left: 0 !important;
|
|
284
294
|
width: 100% !important;
|
|
285
295
|
}
|
|
286
296
|
|
|
297
|
+
/* stylelint-enable declaration-no-important */
|
|
287
298
|
.e-popup.e-popup-open.e-dialog {
|
|
288
299
|
display: -ms-inline-flexbox;
|
|
289
300
|
display: inline-flex;
|
|
@@ -19,12 +19,15 @@
|
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
/*! dialog layout */
|
|
22
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
22
23
|
.e-dialog {
|
|
23
24
|
border: 1px solid #414040;
|
|
24
25
|
border-radius: 0;
|
|
25
26
|
-ms-flex-direction: column;
|
|
26
27
|
flex-direction: column;
|
|
27
28
|
width: 100%;
|
|
29
|
+
/* stylelint-disable declaration-no-important */
|
|
30
|
+
/* stylelint-enable declaration-no-important */
|
|
28
31
|
}
|
|
29
32
|
.e-dialog.e-popup {
|
|
30
33
|
width: 100%;
|
|
@@ -92,6 +95,9 @@
|
|
|
92
95
|
.e-dialog .e-footer-content.e-hide {
|
|
93
96
|
display: none;
|
|
94
97
|
}
|
|
98
|
+
.e-dialog .e-alert-dialog .e-footer-content {
|
|
99
|
+
border-top: none;
|
|
100
|
+
}
|
|
95
101
|
.e-dialog .e-footer-content {
|
|
96
102
|
text-align: right;
|
|
97
103
|
}
|
|
@@ -257,10 +263,12 @@
|
|
|
257
263
|
transform: rotate(90deg);
|
|
258
264
|
}
|
|
259
265
|
|
|
266
|
+
/* stylelint-disable declaration-no-important */
|
|
260
267
|
.e-dlg-target.e-scroll-disabled {
|
|
261
268
|
overflow: hidden !important;
|
|
262
269
|
}
|
|
263
270
|
|
|
271
|
+
/* stylelint-enable declaration-no-important */
|
|
264
272
|
.e-dlg-overlay {
|
|
265
273
|
height: 100%;
|
|
266
274
|
left: 0;
|
|
@@ -278,12 +286,14 @@
|
|
|
278
286
|
overflow: auto;
|
|
279
287
|
}
|
|
280
288
|
|
|
289
|
+
/* stylelint-disable declaration-no-important */
|
|
281
290
|
.e-dlg-fullscreen {
|
|
282
291
|
height: 100% !important;
|
|
283
292
|
left: 0 !important;
|
|
284
293
|
width: 100% !important;
|
|
285
294
|
}
|
|
286
295
|
|
|
296
|
+
/* stylelint-enable declaration-no-important */
|
|
287
297
|
.e-popup.e-popup-open.e-dialog {
|
|
288
298
|
display: -ms-inline-flexbox;
|
|
289
299
|
display: inline-flex;
|
package/styles/dialog/fabric.css
CHANGED
|
@@ -19,12 +19,15 @@
|
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
/*! dialog layout */
|
|
22
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
22
23
|
.e-dialog {
|
|
23
24
|
border: none;
|
|
24
25
|
border-radius: 0;
|
|
25
26
|
-ms-flex-direction: column;
|
|
26
27
|
flex-direction: column;
|
|
27
28
|
width: 100%;
|
|
29
|
+
/* stylelint-disable declaration-no-important */
|
|
30
|
+
/* stylelint-enable declaration-no-important */
|
|
28
31
|
}
|
|
29
32
|
.e-dialog.e-popup {
|
|
30
33
|
width: 100%;
|
|
@@ -92,6 +95,9 @@
|
|
|
92
95
|
.e-dialog .e-footer-content.e-hide {
|
|
93
96
|
display: none;
|
|
94
97
|
}
|
|
98
|
+
.e-dialog .e-alert-dialog .e-footer-content {
|
|
99
|
+
border-top: none;
|
|
100
|
+
}
|
|
95
101
|
.e-dialog .e-footer-content {
|
|
96
102
|
text-align: right;
|
|
97
103
|
}
|
|
@@ -257,10 +263,12 @@
|
|
|
257
263
|
transform: rotate(90deg);
|
|
258
264
|
}
|
|
259
265
|
|
|
266
|
+
/* stylelint-disable declaration-no-important */
|
|
260
267
|
.e-dlg-target.e-scroll-disabled {
|
|
261
268
|
overflow: hidden !important;
|
|
262
269
|
}
|
|
263
270
|
|
|
271
|
+
/* stylelint-enable declaration-no-important */
|
|
264
272
|
.e-dlg-overlay {
|
|
265
273
|
height: 100%;
|
|
266
274
|
left: 0;
|
|
@@ -278,12 +286,14 @@
|
|
|
278
286
|
overflow: auto;
|
|
279
287
|
}
|
|
280
288
|
|
|
289
|
+
/* stylelint-disable declaration-no-important */
|
|
281
290
|
.e-dlg-fullscreen {
|
|
282
291
|
height: 100% !important;
|
|
283
292
|
left: 0 !important;
|
|
284
293
|
width: 100% !important;
|
|
285
294
|
}
|
|
286
295
|
|
|
296
|
+
/* stylelint-enable declaration-no-important */
|
|
287
297
|
.e-popup.e-popup-open.e-dialog {
|
|
288
298
|
display: -ms-inline-flexbox;
|
|
289
299
|
display: inline-flex;
|
|
@@ -19,12 +19,15 @@
|
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
/*! dialog layout */
|
|
22
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
22
23
|
.e-dialog {
|
|
23
24
|
border: 0 solid #292827;
|
|
24
25
|
border-radius: 2px;
|
|
25
26
|
-ms-flex-direction: column;
|
|
26
27
|
flex-direction: column;
|
|
27
28
|
width: 100%;
|
|
29
|
+
/* stylelint-disable declaration-no-important */
|
|
30
|
+
/* stylelint-enable declaration-no-important */
|
|
28
31
|
}
|
|
29
32
|
.e-dialog.e-popup {
|
|
30
33
|
width: 100%;
|
|
@@ -92,6 +95,9 @@
|
|
|
92
95
|
.e-dialog .e-footer-content.e-hide {
|
|
93
96
|
display: none;
|
|
94
97
|
}
|
|
98
|
+
.e-dialog .e-alert-dialog .e-footer-content {
|
|
99
|
+
border-top: 0 solid #292827;
|
|
100
|
+
}
|
|
95
101
|
.e-dialog .e-footer-content {
|
|
96
102
|
text-align: right;
|
|
97
103
|
}
|
|
@@ -156,8 +162,8 @@
|
|
|
156
162
|
.e-bigger.e-dialog .e-dlg-content,
|
|
157
163
|
*.e-bigger .e-dialog .e-dlg-content {
|
|
158
164
|
font-size: 16px;
|
|
159
|
-
padding: 28px 28px
|
|
160
|
-
margin-bottom:
|
|
165
|
+
padding: 28px 28px 14px 28px;
|
|
166
|
+
margin-bottom: 14px;
|
|
161
167
|
}
|
|
162
168
|
.e-bigger.e-dialog .e-footer-content,
|
|
163
169
|
*.e-bigger .e-dialog .e-footer-content {
|
|
@@ -196,8 +202,8 @@
|
|
|
196
202
|
padding: 16px 24px 20px;
|
|
197
203
|
}
|
|
198
204
|
.e-dialog .e-dlg-content {
|
|
199
|
-
padding: 24px 24px
|
|
200
|
-
margin-bottom:
|
|
205
|
+
padding: 24px 24px 12px 24px;
|
|
206
|
+
margin-bottom: 12px;
|
|
201
207
|
}
|
|
202
208
|
.e-dialog .e-footer-content {
|
|
203
209
|
padding: 0 24px 24px;
|
|
@@ -264,10 +270,12 @@
|
|
|
264
270
|
transform: rotate(90deg);
|
|
265
271
|
}
|
|
266
272
|
|
|
273
|
+
/* stylelint-disable declaration-no-important */
|
|
267
274
|
.e-dlg-target.e-scroll-disabled {
|
|
268
275
|
overflow: hidden !important;
|
|
269
276
|
}
|
|
270
277
|
|
|
278
|
+
/* stylelint-enable declaration-no-important */
|
|
271
279
|
.e-dlg-overlay {
|
|
272
280
|
height: 100%;
|
|
273
281
|
left: 0;
|
|
@@ -285,12 +293,14 @@
|
|
|
285
293
|
overflow: auto;
|
|
286
294
|
}
|
|
287
295
|
|
|
296
|
+
/* stylelint-disable declaration-no-important */
|
|
288
297
|
.e-dlg-fullscreen {
|
|
289
298
|
height: 100% !important;
|
|
290
299
|
left: 0 !important;
|
|
291
300
|
width: 100% !important;
|
|
292
301
|
}
|
|
293
302
|
|
|
303
|
+
/* stylelint-enable declaration-no-important */
|
|
294
304
|
.e-popup.e-popup-open.e-dialog {
|
|
295
305
|
display: -ms-inline-flexbox;
|
|
296
306
|
display: inline-flex;
|
package/styles/dialog/fluent.css
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/* stylelint-disable-line no-empty-source */
|
|
1
2
|
.e-dialog .e-icon-dlg-close::before {
|
|
2
3
|
content: "\e7e7";
|
|
3
4
|
position: relative;
|
|
@@ -19,12 +20,15 @@
|
|
|
19
20
|
}
|
|
20
21
|
|
|
21
22
|
/*! dialog layout */
|
|
23
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
22
24
|
.e-dialog {
|
|
23
25
|
border: 0 solid #edebe9;
|
|
24
26
|
border-radius: 2px;
|
|
25
27
|
-ms-flex-direction: column;
|
|
26
28
|
flex-direction: column;
|
|
27
29
|
width: 100%;
|
|
30
|
+
/* stylelint-disable declaration-no-important */
|
|
31
|
+
/* stylelint-enable declaration-no-important */
|
|
28
32
|
}
|
|
29
33
|
.e-dialog.e-popup {
|
|
30
34
|
width: 100%;
|
|
@@ -92,6 +96,9 @@
|
|
|
92
96
|
.e-dialog .e-footer-content.e-hide {
|
|
93
97
|
display: none;
|
|
94
98
|
}
|
|
99
|
+
.e-dialog .e-alert-dialog .e-footer-content {
|
|
100
|
+
border-top: 0 solid #edebe9;
|
|
101
|
+
}
|
|
95
102
|
.e-dialog .e-footer-content {
|
|
96
103
|
text-align: right;
|
|
97
104
|
}
|
|
@@ -156,8 +163,8 @@
|
|
|
156
163
|
.e-bigger.e-dialog .e-dlg-content,
|
|
157
164
|
*.e-bigger .e-dialog .e-dlg-content {
|
|
158
165
|
font-size: 16px;
|
|
159
|
-
padding: 28px 28px
|
|
160
|
-
margin-bottom:
|
|
166
|
+
padding: 28px 28px 14px 28px;
|
|
167
|
+
margin-bottom: 14px;
|
|
161
168
|
}
|
|
162
169
|
.e-bigger.e-dialog .e-footer-content,
|
|
163
170
|
*.e-bigger .e-dialog .e-footer-content {
|
|
@@ -196,8 +203,8 @@
|
|
|
196
203
|
padding: 16px 24px 20px;
|
|
197
204
|
}
|
|
198
205
|
.e-dialog .e-dlg-content {
|
|
199
|
-
padding: 24px 24px
|
|
200
|
-
margin-bottom:
|
|
206
|
+
padding: 24px 24px 12px 24px;
|
|
207
|
+
margin-bottom: 12px;
|
|
201
208
|
}
|
|
202
209
|
.e-dialog .e-footer-content {
|
|
203
210
|
padding: 0 24px 24px;
|
|
@@ -264,10 +271,12 @@
|
|
|
264
271
|
transform: rotate(90deg);
|
|
265
272
|
}
|
|
266
273
|
|
|
274
|
+
/* stylelint-disable declaration-no-important */
|
|
267
275
|
.e-dlg-target.e-scroll-disabled {
|
|
268
276
|
overflow: hidden !important;
|
|
269
277
|
}
|
|
270
278
|
|
|
279
|
+
/* stylelint-enable declaration-no-important */
|
|
271
280
|
.e-dlg-overlay {
|
|
272
281
|
height: 100%;
|
|
273
282
|
left: 0;
|
|
@@ -285,12 +294,14 @@
|
|
|
285
294
|
overflow: auto;
|
|
286
295
|
}
|
|
287
296
|
|
|
297
|
+
/* stylelint-disable declaration-no-important */
|
|
288
298
|
.e-dlg-fullscreen {
|
|
289
299
|
height: 100% !important;
|
|
290
300
|
left: 0 !important;
|
|
291
301
|
width: 100% !important;
|
|
292
302
|
}
|
|
293
303
|
|
|
304
|
+
/* stylelint-enable declaration-no-important */
|
|
294
305
|
.e-popup.e-popup-open.e-dialog {
|
|
295
306
|
display: -ms-inline-flexbox;
|
|
296
307
|
display: inline-flex;
|
|
@@ -19,12 +19,15 @@
|
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
/*! dialog layout */
|
|
22
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
22
23
|
.e-dialog {
|
|
23
24
|
border: 1px solid #757575;
|
|
24
25
|
border-radius: 0;
|
|
25
26
|
-ms-flex-direction: column;
|
|
26
27
|
flex-direction: column;
|
|
27
28
|
width: 100%;
|
|
29
|
+
/* stylelint-disable declaration-no-important */
|
|
30
|
+
/* stylelint-enable declaration-no-important */
|
|
28
31
|
}
|
|
29
32
|
.e-dialog.e-popup {
|
|
30
33
|
width: 100%;
|
|
@@ -92,6 +95,9 @@
|
|
|
92
95
|
.e-dialog .e-footer-content.e-hide {
|
|
93
96
|
display: none;
|
|
94
97
|
}
|
|
98
|
+
.e-dialog .e-alert-dialog .e-footer-content {
|
|
99
|
+
border-top: none;
|
|
100
|
+
}
|
|
95
101
|
.e-dialog .e-footer-content {
|
|
96
102
|
text-align: right;
|
|
97
103
|
}
|
|
@@ -257,10 +263,12 @@
|
|
|
257
263
|
transform: rotate(90deg);
|
|
258
264
|
}
|
|
259
265
|
|
|
266
|
+
/* stylelint-disable declaration-no-important */
|
|
260
267
|
.e-dlg-target.e-scroll-disabled {
|
|
261
268
|
overflow: hidden !important;
|
|
262
269
|
}
|
|
263
270
|
|
|
271
|
+
/* stylelint-enable declaration-no-important */
|
|
264
272
|
.e-dlg-overlay {
|
|
265
273
|
height: 100%;
|
|
266
274
|
left: 0;
|
|
@@ -278,12 +286,14 @@
|
|
|
278
286
|
overflow: auto;
|
|
279
287
|
}
|
|
280
288
|
|
|
289
|
+
/* stylelint-disable declaration-no-important */
|
|
281
290
|
.e-dlg-fullscreen {
|
|
282
291
|
height: 100% !important;
|
|
283
292
|
left: 0 !important;
|
|
284
293
|
width: 100% !important;
|
|
285
294
|
}
|
|
286
295
|
|
|
296
|
+
/* stylelint-enable declaration-no-important */
|
|
287
297
|
.e-popup.e-popup-open.e-dialog {
|
|
288
298
|
display: -ms-inline-flexbox;
|
|
289
299
|
display: inline-flex;
|
|
@@ -19,12 +19,15 @@
|
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
/*! dialog layout */
|
|
22
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
22
23
|
.e-dialog {
|
|
23
24
|
border: 1px solid #969696;
|
|
24
25
|
border-radius: 0;
|
|
25
26
|
-ms-flex-direction: column;
|
|
26
27
|
flex-direction: column;
|
|
27
28
|
width: 100%;
|
|
29
|
+
/* stylelint-disable declaration-no-important */
|
|
30
|
+
/* stylelint-enable declaration-no-important */
|
|
28
31
|
}
|
|
29
32
|
.e-dialog.e-popup {
|
|
30
33
|
width: 100%;
|
|
@@ -92,6 +95,9 @@
|
|
|
92
95
|
.e-dialog .e-footer-content.e-hide {
|
|
93
96
|
display: none;
|
|
94
97
|
}
|
|
98
|
+
.e-dialog .e-alert-dialog .e-footer-content {
|
|
99
|
+
border-top: none;
|
|
100
|
+
}
|
|
95
101
|
.e-dialog .e-footer-content {
|
|
96
102
|
text-align: right;
|
|
97
103
|
}
|
|
@@ -257,10 +263,12 @@
|
|
|
257
263
|
transform: rotate(90deg);
|
|
258
264
|
}
|
|
259
265
|
|
|
266
|
+
/* stylelint-disable declaration-no-important */
|
|
260
267
|
.e-dlg-target.e-scroll-disabled {
|
|
261
268
|
overflow: hidden !important;
|
|
262
269
|
}
|
|
263
270
|
|
|
271
|
+
/* stylelint-enable declaration-no-important */
|
|
264
272
|
.e-dlg-overlay {
|
|
265
273
|
height: 100%;
|
|
266
274
|
left: 0;
|
|
@@ -278,12 +286,14 @@
|
|
|
278
286
|
overflow: auto;
|
|
279
287
|
}
|
|
280
288
|
|
|
289
|
+
/* stylelint-disable declaration-no-important */
|
|
281
290
|
.e-dlg-fullscreen {
|
|
282
291
|
height: 100% !important;
|
|
283
292
|
left: 0 !important;
|
|
284
293
|
width: 100% !important;
|
|
285
294
|
}
|
|
286
295
|
|
|
296
|
+
/* stylelint-enable declaration-no-important */
|
|
287
297
|
.e-popup.e-popup-open.e-dialog {
|
|
288
298
|
display: -ms-inline-flexbox;
|
|
289
299
|
display: inline-flex;
|
|
@@ -20,12 +20,15 @@
|
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
/*! dialog layout */
|
|
23
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
23
24
|
.e-dialog {
|
|
24
25
|
border: none;
|
|
25
26
|
border-radius: 2px;
|
|
26
27
|
-ms-flex-direction: column;
|
|
27
28
|
flex-direction: column;
|
|
28
29
|
width: 100%;
|
|
30
|
+
/* stylelint-disable declaration-no-important */
|
|
31
|
+
/* stylelint-enable declaration-no-important */
|
|
29
32
|
}
|
|
30
33
|
.e-dialog.e-popup {
|
|
31
34
|
width: 100%;
|
|
@@ -93,6 +96,9 @@
|
|
|
93
96
|
.e-dialog .e-footer-content.e-hide {
|
|
94
97
|
display: none;
|
|
95
98
|
}
|
|
99
|
+
.e-dialog .e-alert-dialog .e-footer-content {
|
|
100
|
+
border-top: none;
|
|
101
|
+
}
|
|
96
102
|
.e-dialog .e-footer-content {
|
|
97
103
|
text-align: right;
|
|
98
104
|
}
|
|
@@ -258,10 +264,12 @@
|
|
|
258
264
|
transform: rotate(90deg);
|
|
259
265
|
}
|
|
260
266
|
|
|
267
|
+
/* stylelint-disable declaration-no-important */
|
|
261
268
|
.e-dlg-target.e-scroll-disabled {
|
|
262
269
|
overflow: hidden !important;
|
|
263
270
|
}
|
|
264
271
|
|
|
272
|
+
/* stylelint-enable declaration-no-important */
|
|
265
273
|
.e-dlg-overlay {
|
|
266
274
|
height: 100%;
|
|
267
275
|
left: 0;
|
|
@@ -279,12 +287,14 @@
|
|
|
279
287
|
overflow: auto;
|
|
280
288
|
}
|
|
281
289
|
|
|
290
|
+
/* stylelint-disable declaration-no-important */
|
|
282
291
|
.e-dlg-fullscreen {
|
|
283
292
|
height: 100% !important;
|
|
284
293
|
left: 0 !important;
|
|
285
294
|
width: 100% !important;
|
|
286
295
|
}
|
|
287
296
|
|
|
297
|
+
/* stylelint-enable declaration-no-important */
|
|
288
298
|
.e-popup.e-popup-open.e-dialog {
|
|
289
299
|
display: -ms-inline-flexbox;
|
|
290
300
|
display: inline-flex;
|
|
@@ -20,12 +20,15 @@
|
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
/*! dialog layout */
|
|
23
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
23
24
|
.e-dialog {
|
|
24
25
|
border: none;
|
|
25
26
|
border-radius: 2px;
|
|
26
27
|
-ms-flex-direction: column;
|
|
27
28
|
flex-direction: column;
|
|
28
29
|
width: 100%;
|
|
30
|
+
/* stylelint-disable declaration-no-important */
|
|
31
|
+
/* stylelint-enable declaration-no-important */
|
|
29
32
|
}
|
|
30
33
|
.e-dialog.e-popup {
|
|
31
34
|
width: 100%;
|
|
@@ -93,6 +96,9 @@
|
|
|
93
96
|
.e-dialog .e-footer-content.e-hide {
|
|
94
97
|
display: none;
|
|
95
98
|
}
|
|
99
|
+
.e-dialog .e-alert-dialog .e-footer-content {
|
|
100
|
+
border-top: none;
|
|
101
|
+
}
|
|
96
102
|
.e-dialog .e-footer-content {
|
|
97
103
|
text-align: right;
|
|
98
104
|
}
|
|
@@ -258,10 +264,12 @@
|
|
|
258
264
|
transform: rotate(90deg);
|
|
259
265
|
}
|
|
260
266
|
|
|
267
|
+
/* stylelint-disable declaration-no-important */
|
|
261
268
|
.e-dlg-target.e-scroll-disabled {
|
|
262
269
|
overflow: hidden !important;
|
|
263
270
|
}
|
|
264
271
|
|
|
272
|
+
/* stylelint-enable declaration-no-important */
|
|
265
273
|
.e-dlg-overlay {
|
|
266
274
|
height: 100%;
|
|
267
275
|
left: 0;
|
|
@@ -279,12 +287,14 @@
|
|
|
279
287
|
overflow: auto;
|
|
280
288
|
}
|
|
281
289
|
|
|
290
|
+
/* stylelint-disable declaration-no-important */
|
|
282
291
|
.e-dlg-fullscreen {
|
|
283
292
|
height: 100% !important;
|
|
284
293
|
left: 0 !important;
|
|
285
294
|
width: 100% !important;
|
|
286
295
|
}
|
|
287
296
|
|
|
297
|
+
/* stylelint-enable declaration-no-important */
|
|
288
298
|
.e-popup.e-popup-open.e-dialog {
|
|
289
299
|
display: -ms-inline-flexbox;
|
|
290
300
|
display: inline-flex;
|
|
@@ -20,12 +20,15 @@
|
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
/*! dialog layout */
|
|
23
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
23
24
|
.e-dialog {
|
|
24
25
|
border: 1px solid #4b5563;
|
|
25
26
|
border-radius: 6px;
|
|
26
27
|
-ms-flex-direction: column;
|
|
27
28
|
flex-direction: column;
|
|
28
29
|
width: 100%;
|
|
30
|
+
/* stylelint-disable declaration-no-important */
|
|
31
|
+
/* stylelint-enable declaration-no-important */
|
|
29
32
|
}
|
|
30
33
|
.e-dialog.e-popup {
|
|
31
34
|
width: 100%;
|
|
@@ -93,6 +96,9 @@
|
|
|
93
96
|
.e-dialog .e-footer-content.e-hide {
|
|
94
97
|
display: none;
|
|
95
98
|
}
|
|
99
|
+
.e-dialog .e-alert-dialog .e-footer-content {
|
|
100
|
+
border-top: none;
|
|
101
|
+
}
|
|
96
102
|
.e-dialog .e-footer-content {
|
|
97
103
|
text-align: right;
|
|
98
104
|
}
|
|
@@ -258,10 +264,12 @@
|
|
|
258
264
|
transform: rotate(90deg);
|
|
259
265
|
}
|
|
260
266
|
|
|
267
|
+
/* stylelint-disable declaration-no-important */
|
|
261
268
|
.e-dlg-target.e-scroll-disabled {
|
|
262
269
|
overflow: hidden !important;
|
|
263
270
|
}
|
|
264
271
|
|
|
272
|
+
/* stylelint-enable declaration-no-important */
|
|
265
273
|
.e-dlg-overlay {
|
|
266
274
|
height: 100%;
|
|
267
275
|
left: 0;
|
|
@@ -279,12 +287,14 @@
|
|
|
279
287
|
overflow: auto;
|
|
280
288
|
}
|
|
281
289
|
|
|
290
|
+
/* stylelint-disable declaration-no-important */
|
|
282
291
|
.e-dlg-fullscreen {
|
|
283
292
|
height: 100% !important;
|
|
284
293
|
left: 0 !important;
|
|
285
294
|
width: 100% !important;
|
|
286
295
|
}
|
|
287
296
|
|
|
297
|
+
/* stylelint-enable declaration-no-important */
|
|
288
298
|
.e-popup.e-popup-open.e-dialog {
|
|
289
299
|
display: -ms-inline-flexbox;
|
|
290
300
|
display: inline-flex;
|
|
@@ -443,7 +453,7 @@
|
|
|
443
453
|
}
|
|
444
454
|
|
|
445
455
|
.e-dialog {
|
|
446
|
-
background-color: #
|
|
456
|
+
background-color: #232e3e;
|
|
447
457
|
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
448
458
|
}
|
|
449
459
|
|
|
@@ -491,7 +501,7 @@
|
|
|
491
501
|
}
|
|
492
502
|
|
|
493
503
|
.e-dlg-content {
|
|
494
|
-
background-color: #
|
|
504
|
+
background-color: #232e3e;
|
|
495
505
|
}
|
|
496
506
|
|
|
497
507
|
.e-icon-dlg-close {
|