aio-popup 4.5.2 → 5.1.0
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/alert1.css +68 -0
- package/alert2.css +70 -0
- package/index.css +406 -203
- package/index.d.ts +155 -153
- package/index.js +13 -9
- package/package.json +1 -3
- package/theme2.css +139 -0
package/index.css
CHANGED
|
@@ -16,9 +16,10 @@
|
|
|
16
16
|
background: rgba(0, 0, 0, 0.1);
|
|
17
17
|
transition: .3s;
|
|
18
18
|
pointer-events: all;
|
|
19
|
-
outline:none;
|
|
20
|
-
flex-shrink:0;
|
|
19
|
+
outline: none;
|
|
20
|
+
flex-shrink: 0;
|
|
21
21
|
}
|
|
22
|
+
|
|
22
23
|
.aio-popup {
|
|
23
24
|
border-radius: 4px;
|
|
24
25
|
font-size: 14px;
|
|
@@ -26,44 +27,123 @@
|
|
|
26
27
|
max-width: 100vw;
|
|
27
28
|
max-height: 100vh;
|
|
28
29
|
pointer-events: auto;
|
|
29
|
-
display:flex;
|
|
30
|
+
display: flex;
|
|
30
31
|
flex-direction: column;
|
|
31
|
-
outline:none;
|
|
32
|
-
z-index:10;
|
|
33
|
-
position:absolute;
|
|
32
|
+
outline: none;
|
|
33
|
+
z-index: 10;
|
|
34
|
+
position: absolute;
|
|
34
35
|
}
|
|
35
|
-
|
|
36
|
-
.aio-popup.
|
|
36
|
+
|
|
37
|
+
.aio-popup.rtl {
|
|
38
|
+
direction: rtl;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.aio-popup.not-mounted {
|
|
42
|
+
transition: .3s;
|
|
43
|
+
}
|
|
44
|
+
|
|
37
45
|
/**********position (fullscreen)*******/
|
|
38
|
-
.aio-popup-position-fullscreen>.aio-popup.not-mounted {
|
|
39
|
-
|
|
46
|
+
.aio-popup-position-fullscreen>.aio-popup.not-mounted {
|
|
47
|
+
transform: scale(0);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.aio-popup-position-fullscreen>.aio-popup {
|
|
51
|
+
width: 100%;
|
|
52
|
+
height: 100%;
|
|
53
|
+
}
|
|
54
|
+
|
|
40
55
|
/**********position (top)**************/
|
|
41
|
-
.aio-popup-position-top {
|
|
42
|
-
|
|
43
|
-
|
|
56
|
+
.aio-popup-position-top {
|
|
57
|
+
align-items: flex-start;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.aio-popup-position-top>.aio-popup.not-mounted {
|
|
61
|
+
transform: translateY(-500px);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.aio-popup-position-top>.aio-popup {
|
|
65
|
+
width: 100%;
|
|
66
|
+
max-height: 90vh;
|
|
67
|
+
transform: translateY(0px);
|
|
68
|
+
}
|
|
69
|
+
|
|
44
70
|
/**********position (bottom)***********/
|
|
45
|
-
.aio-popup-position-bottom {
|
|
46
|
-
|
|
47
|
-
|
|
71
|
+
.aio-popup-position-bottom {
|
|
72
|
+
align-items: flex-end;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.aio-popup-position-bottom>.aio-popup.not-mounted {
|
|
76
|
+
opacity: 0;
|
|
77
|
+
bottom: -500px;
|
|
78
|
+
transform: scaleY(0);
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.aio-popup-position-bottom>.aio-popup {
|
|
82
|
+
width: 100%;
|
|
83
|
+
bottom: 0;
|
|
84
|
+
opacity: 1;
|
|
85
|
+
transform: scaleY(1);
|
|
86
|
+
}
|
|
48
87
|
|
|
49
88
|
/**********position (left)*************/
|
|
50
|
-
.aio-popup-position-left {
|
|
51
|
-
|
|
52
|
-
|
|
89
|
+
.aio-popup-position-left {
|
|
90
|
+
justify-content: left;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.aio-popup-position-left>.aio-popup.not-mounted {
|
|
94
|
+
transform: translateX(-500px);
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.aio-popup-position-left>.aio-popup {
|
|
98
|
+
height: 100%;
|
|
99
|
+
max-width: 90vh;
|
|
100
|
+
transform: translateX(0px);
|
|
101
|
+
}
|
|
102
|
+
|
|
53
103
|
/**********position (right)************/
|
|
54
|
-
.aio-popup-position-right {
|
|
55
|
-
|
|
56
|
-
|
|
104
|
+
.aio-popup-position-right {
|
|
105
|
+
justify-content: right;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.aio-popup-position-right>.aio-popup.not-mounted {
|
|
109
|
+
transform: translateX(500px) scaleX(0);
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.aio-popup-position-right>.aio-popup {
|
|
113
|
+
height: 100%;
|
|
114
|
+
max-width: 90vh;
|
|
115
|
+
transform: translateX(0px) scaleX(1);
|
|
116
|
+
;
|
|
117
|
+
}
|
|
118
|
+
|
|
57
119
|
/**********position (popover)************/
|
|
58
|
-
.aio-popup-position-popover {
|
|
59
|
-
|
|
120
|
+
.aio-popup-position-popover {
|
|
121
|
+
opacity: 1;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.aio-popup-position-popover>.aio-popup.not-mounted {
|
|
125
|
+
opacity: 0;
|
|
126
|
+
}
|
|
127
|
+
|
|
60
128
|
/**********position (center)***********/
|
|
61
|
-
.aio-popup-position-center>.aio-popup.not-mounted {
|
|
62
|
-
|
|
129
|
+
.aio-popup-position-center>.aio-popup.not-mounted {
|
|
130
|
+
transform: translateY(-500px);
|
|
131
|
+
opacity: 0;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.aio-popup-position-center>.aio-popup {
|
|
135
|
+
max-width: 100vw;
|
|
136
|
+
width: fit-content;
|
|
137
|
+
opacity: 1;
|
|
138
|
+
max-height: 100vh;
|
|
139
|
+
transform: translateY(0px);
|
|
140
|
+
transform-origin: top;
|
|
141
|
+
}
|
|
142
|
+
|
|
63
143
|
/**************************************/
|
|
64
144
|
|
|
65
145
|
.aio-popup-header {
|
|
66
|
-
display:flex;
|
|
146
|
+
display: flex;
|
|
67
147
|
border-bottom: 1px solid #e7e9ec;
|
|
68
148
|
background: #fff;
|
|
69
149
|
color: #323130;
|
|
@@ -71,36 +151,51 @@
|
|
|
71
151
|
font-size: 16px;
|
|
72
152
|
font-weight: bold;
|
|
73
153
|
min-height: 36px;
|
|
74
|
-
gap:12px;
|
|
154
|
+
gap: 12px;
|
|
155
|
+
align-items: center;
|
|
75
156
|
}
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
flex
|
|
79
|
-
|
|
80
|
-
|
|
157
|
+
|
|
158
|
+
.aio-popup-header-title {
|
|
159
|
+
display: flex;
|
|
160
|
+
flex-direction: column;
|
|
161
|
+
justify-content: center;
|
|
162
|
+
flex: 1;
|
|
81
163
|
}
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
164
|
+
|
|
165
|
+
.aio-popup-header-title:after {
|
|
166
|
+
content: attr(data-subtitle);
|
|
167
|
+
opacity: 0.7;
|
|
168
|
+
font-size: 80%;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.aio-popup-header-text {
|
|
172
|
+
display: flex;
|
|
173
|
+
flex-direction: column;
|
|
174
|
+
align-items: flex-start;
|
|
175
|
+
flex: 1;
|
|
85
176
|
}
|
|
86
|
-
|
|
87
|
-
|
|
177
|
+
|
|
178
|
+
.aio-popup-header-before {
|
|
179
|
+
display: flex;
|
|
88
180
|
align-items: center;
|
|
89
181
|
justify-content: center;
|
|
90
182
|
}
|
|
91
|
-
|
|
92
|
-
|
|
183
|
+
|
|
184
|
+
.aio-popup-header-after {
|
|
185
|
+
display: flex;
|
|
93
186
|
align-items: center;
|
|
94
187
|
justify-content: center;
|
|
95
188
|
}
|
|
189
|
+
|
|
96
190
|
.aio-popup-body {
|
|
97
191
|
background: #fff;
|
|
98
192
|
flex: 1;
|
|
99
193
|
width: 100%;
|
|
100
194
|
overflow-y: auto;
|
|
101
|
-
box-sizing:border-box;
|
|
195
|
+
box-sizing: border-box;
|
|
102
196
|
}
|
|
103
|
-
|
|
197
|
+
|
|
198
|
+
.aio-popup-body * {
|
|
104
199
|
box-sizing: border-box;
|
|
105
200
|
}
|
|
106
201
|
|
|
@@ -114,29 +209,34 @@
|
|
|
114
209
|
justify-content: flex-end;
|
|
115
210
|
box-sizing: border-box;
|
|
116
211
|
}
|
|
117
|
-
|
|
118
|
-
|
|
212
|
+
|
|
213
|
+
.aio-popup-header-buttons {
|
|
214
|
+
display: flex;
|
|
119
215
|
align-items: center;
|
|
120
216
|
justify-content: center;
|
|
121
|
-
gap:6px;
|
|
217
|
+
gap: 6px;
|
|
122
218
|
}
|
|
219
|
+
|
|
123
220
|
.aio-popup-header-button {
|
|
124
221
|
padding: 0 6px;
|
|
125
222
|
background: none;
|
|
126
223
|
border: none;
|
|
127
224
|
cursor: pointer;
|
|
128
225
|
}
|
|
129
|
-
|
|
130
|
-
|
|
226
|
+
|
|
227
|
+
.aio-popup-header-close {
|
|
228
|
+
display: flex;
|
|
131
229
|
align-items: center;
|
|
132
230
|
justify-content: center;
|
|
133
231
|
width: 36px;
|
|
134
232
|
}
|
|
135
|
-
|
|
136
|
-
|
|
233
|
+
|
|
234
|
+
.aio-popup-header-after {
|
|
235
|
+
display: flex;
|
|
137
236
|
align-items: center;
|
|
138
|
-
height:100%;
|
|
237
|
+
height: 100%;
|
|
139
238
|
}
|
|
239
|
+
|
|
140
240
|
.aio-popup-footer-button {
|
|
141
241
|
height: 30px;
|
|
142
242
|
background: dodgerblue;
|
|
@@ -173,12 +273,12 @@
|
|
|
173
273
|
align-items: center;
|
|
174
274
|
justify-content: center;
|
|
175
275
|
font-family: inherit;
|
|
176
|
-
transition:0.2s;
|
|
276
|
+
transition: 0.2s;
|
|
177
277
|
}
|
|
178
278
|
|
|
179
|
-
.aio-popup-alert-container.not-mounted{
|
|
279
|
+
.aio-popup-alert-container.not-mounted {
|
|
180
280
|
background: rgba(0, 0, 0, 0);
|
|
181
|
-
transition:0.2;
|
|
281
|
+
transition: 0.2;
|
|
182
282
|
}
|
|
183
283
|
|
|
184
284
|
.aio-popup-alert {
|
|
@@ -193,29 +293,34 @@
|
|
|
193
293
|
overflow: hidden;
|
|
194
294
|
}
|
|
195
295
|
|
|
196
|
-
.aio-popup-alert-container-center .aio-popup-alert{
|
|
197
|
-
transform:scale(1);
|
|
198
|
-
transition:0.2s;
|
|
296
|
+
.aio-popup-alert-container-center .aio-popup-alert {
|
|
297
|
+
transform: scale(1);
|
|
298
|
+
transition: 0.2s;
|
|
199
299
|
}
|
|
300
|
+
|
|
200
301
|
.aio-popup-alert-container-center.not-mounted .aio-popup-alert {
|
|
201
|
-
transform:scale(0);
|
|
202
|
-
transition:0.2s;
|
|
302
|
+
transform: scale(0);
|
|
303
|
+
transition: 0.2s;
|
|
203
304
|
}
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
305
|
+
|
|
306
|
+
.aio-popup-alert-container-top .aio-popup-alert {
|
|
307
|
+
transform: translateY(0vh);
|
|
308
|
+
transition: 0.2s;
|
|
207
309
|
}
|
|
310
|
+
|
|
208
311
|
.aio-popup-alert-container-top.not-mounted .aio-popup-alert {
|
|
209
|
-
transform:translateY(-100vh);
|
|
210
|
-
transition:0.2s;
|
|
312
|
+
transform: translateY(-100vh);
|
|
313
|
+
transition: 0.2s;
|
|
211
314
|
}
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
315
|
+
|
|
316
|
+
.aio-popup-alert-container-bottom .aio-popup-alert {
|
|
317
|
+
transform: translateY(0vh);
|
|
318
|
+
transition: 0.2s;
|
|
215
319
|
}
|
|
320
|
+
|
|
216
321
|
.aio-popup-alert-container-bottom.not-mounted .aio-popup-alert {
|
|
217
|
-
transform:translateY(100vh);
|
|
218
|
-
transition:0.2s;
|
|
322
|
+
transform: translateY(100vh);
|
|
323
|
+
transition: 0.2s;
|
|
219
324
|
}
|
|
220
325
|
|
|
221
326
|
.aio-popup-alert-error .aio-popup-alert-header svg {
|
|
@@ -327,39 +432,46 @@
|
|
|
327
432
|
justify-content: center;
|
|
328
433
|
z-index: 1000000;
|
|
329
434
|
}
|
|
330
|
-
|
|
435
|
+
|
|
436
|
+
.aio-popup-snackebar-item-container.aio-popup-snackebar-item-container-horizontal-align-left {
|
|
331
437
|
justify-content: flex-start;
|
|
332
438
|
}
|
|
333
|
-
|
|
439
|
+
|
|
440
|
+
.aio-popup-snackebar-item-container.aio-popup-snackebar-item-container-horizontal-align-right {
|
|
334
441
|
justify-content: flex-end;
|
|
335
442
|
}
|
|
443
|
+
|
|
336
444
|
.aio-popup-snackebar-item-container.aio-popup-snackebar-item-container-horizontal-align-center {
|
|
337
445
|
justify-content: center;
|
|
338
446
|
}
|
|
447
|
+
|
|
339
448
|
.aio-popup-snackebar-item-container.rtl {
|
|
340
|
-
direction:rtl;
|
|
449
|
+
direction: rtl;
|
|
341
450
|
}
|
|
342
|
-
|
|
343
|
-
|
|
451
|
+
|
|
452
|
+
.aio-popup-snackebar-item-container .aio-popup-snackebar-item-uptext {
|
|
453
|
+
text-align: left;
|
|
344
454
|
}
|
|
345
|
-
|
|
346
|
-
|
|
455
|
+
|
|
456
|
+
.aio-popup-snackebar-item-container.rtl .aio-popup-snackebar-item-uptext {
|
|
457
|
+
text-align: right;
|
|
347
458
|
}
|
|
459
|
+
|
|
348
460
|
.aio-popup-snackebar-item {
|
|
349
461
|
background: rgba(24, 28, 41, 0.945);
|
|
350
462
|
padding: 12px;
|
|
351
463
|
right: 100%;
|
|
352
464
|
position: relative;
|
|
353
465
|
width: fit-content;
|
|
354
|
-
max-width:100%;
|
|
466
|
+
max-width: 100%;
|
|
355
467
|
height: fit-content;
|
|
356
468
|
box-sizing: border-box;
|
|
357
469
|
display: flex;
|
|
358
470
|
align-items: center;
|
|
359
471
|
transition: 0.2s;
|
|
360
472
|
overflow: hidden;
|
|
361
|
-
box-shadow:1px 1px 10px 0 rgba(0,0,0,0.2);
|
|
362
|
-
backdrop-filter:blur(4px);
|
|
473
|
+
box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.2);
|
|
474
|
+
backdrop-filter: blur(4px);
|
|
363
475
|
}
|
|
364
476
|
|
|
365
477
|
.aio-popup-snackebar-item-container.mounted .aio-popup-snackebar-item {
|
|
@@ -395,9 +507,10 @@
|
|
|
395
507
|
border-radius: 100%;
|
|
396
508
|
padding: 3px;
|
|
397
509
|
}
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
510
|
+
|
|
511
|
+
.aio-popup-snackebar-item-icon svg {
|
|
512
|
+
width: 48px !important;
|
|
513
|
+
height: 48px !important;
|
|
401
514
|
}
|
|
402
515
|
|
|
403
516
|
.aio-popup-snackebar-item-success .aio-popup-snackebar-item-icon {
|
|
@@ -423,9 +536,10 @@
|
|
|
423
536
|
width: 0%;
|
|
424
537
|
height: 4px;
|
|
425
538
|
}
|
|
539
|
+
|
|
426
540
|
.aio-popup-snackebar-item-container.rtl .aio-popup-snackebar-bar {
|
|
427
541
|
left: unset;
|
|
428
|
-
right:0;
|
|
542
|
+
right: 0;
|
|
429
543
|
}
|
|
430
544
|
|
|
431
545
|
.aio-popup-snackebar-item-container.mounted .aio-popup-snackebar-bar {
|
|
@@ -433,8 +547,8 @@
|
|
|
433
547
|
}
|
|
434
548
|
|
|
435
549
|
/* .aio-popup-snackebar-container.mounted .aio-popup-snackebar-bar{
|
|
436
|
-
|
|
437
|
-
} */
|
|
550
|
+
width:50%;
|
|
551
|
+
} */
|
|
438
552
|
|
|
439
553
|
.aio-popup-snackebar-item-success .aio-popup-snackebar-bar {
|
|
440
554
|
background: #5ba427;
|
|
@@ -457,11 +571,13 @@
|
|
|
457
571
|
border: none;
|
|
458
572
|
background: none;
|
|
459
573
|
}
|
|
460
|
-
|
|
461
|
-
|
|
574
|
+
|
|
575
|
+
.aio-popup-confirm {
|
|
576
|
+
overflow: hidden;
|
|
462
577
|
}
|
|
463
|
-
|
|
464
|
-
|
|
578
|
+
|
|
579
|
+
.aio-popup-confirm .aio-popup-body {
|
|
580
|
+
padding: 12px;
|
|
465
581
|
}
|
|
466
582
|
|
|
467
583
|
.aio-popup-scroll::-webkit-scrollbar {
|
|
@@ -487,140 +603,158 @@
|
|
|
487
603
|
.aio-popup-scroll::-webkit-scrollbar-thumb:hover {
|
|
488
604
|
background-color: #6f7888;
|
|
489
605
|
}
|
|
490
|
-
|
|
491
|
-
|
|
606
|
+
|
|
607
|
+
.aio-popup-theme1 {
|
|
608
|
+
background: #253340;
|
|
492
609
|
border-radius: 12px;
|
|
493
|
-
color
|
|
494
|
-
font-family:cursive;
|
|
610
|
+
color: #fff;
|
|
611
|
+
font-family: cursive;
|
|
495
612
|
}
|
|
496
|
-
|
|
613
|
+
|
|
614
|
+
.aio-popup-theme1 .aio-popup-header {
|
|
497
615
|
height: 36px;
|
|
498
|
-
box-shadow:0 1px 1px 0 rgba(255,255,255,0.07);
|
|
499
|
-
border:none;
|
|
500
|
-
background: linear-gradient(180deg, #446481, rgba(0,0,0,0.25));
|
|
616
|
+
box-shadow: 0 1px 1px 0 rgba(255, 255, 255, 0.07);
|
|
617
|
+
border: none;
|
|
618
|
+
background: linear-gradient(180deg, #446481, rgba(0, 0, 0, 0.25));
|
|
501
619
|
border-radius: 10px;
|
|
502
|
-
color
|
|
503
|
-
font-size:12px;
|
|
504
|
-
}
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
font-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
border
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
.aio-popup-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
620
|
+
color: #fff;
|
|
621
|
+
font-size: 12px;
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
.aio-popup-theme1 .aio-popup-body {
|
|
625
|
+
background: none;
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
.aio-popup-theme1 .aio-popup-header-close {
|
|
629
|
+
width: 24px;
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
.aio-popup-theme1 .aio-popup-body button {
|
|
633
|
+
background: none;
|
|
634
|
+
border: 1px solid rgba(255, 255, 255, 0.8);
|
|
635
|
+
color: rgba(255, 255, 255, 0.8);
|
|
636
|
+
height: 30px;
|
|
637
|
+
border-radius: 6px;
|
|
638
|
+
font-size: 12px;
|
|
639
|
+
padding: 0 24px;
|
|
640
|
+
font-family: inherit;
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
.aio-popup-theme1 .aio-popup-body button.active {
|
|
644
|
+
background: dodgerblue;
|
|
645
|
+
border: 1px solid dodgerblue;
|
|
646
|
+
color: #fff;
|
|
647
|
+
height: 30px;
|
|
648
|
+
border-radius: 6px;
|
|
649
|
+
font-size: 12px;
|
|
650
|
+
padding: 0 24px;
|
|
651
|
+
font-family: inherit;
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
.aio-popup-theme1 .aio-popup-body p {
|
|
655
|
+
border: 1px solid #364458;
|
|
656
|
+
padding: 6px;
|
|
657
|
+
}
|
|
658
|
+
|
|
659
|
+
.aio-popup-prompt .aio-popup-body {
|
|
660
|
+
padding: 6px;
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
.aio-popup-prompt .aio-popup-body textarea {
|
|
664
|
+
width: 100%;
|
|
665
|
+
left: 0;
|
|
666
|
+
top: 0;
|
|
667
|
+
border: none;
|
|
668
|
+
height: 60px;
|
|
669
|
+
font-family: inherit;
|
|
670
|
+
outline: none;
|
|
671
|
+
color: inherit;
|
|
672
|
+
padding: 6px;
|
|
549
673
|
}
|
|
550
674
|
|
|
551
675
|
.aio-popup-highlight {
|
|
552
676
|
font-size: 24px;
|
|
553
677
|
pointer-events: none;
|
|
554
|
-
direction:ltr;
|
|
678
|
+
direction: ltr;
|
|
555
679
|
color: rgba(255, 255, 255, 0.5);
|
|
556
680
|
position: fixed;
|
|
557
|
-
left:0;
|
|
558
|
-
top:0;
|
|
559
|
-
width:100%;
|
|
560
|
-
height:100%;
|
|
561
|
-
display:flex;
|
|
681
|
+
left: 0;
|
|
682
|
+
top: 0;
|
|
683
|
+
width: 100%;
|
|
684
|
+
height: 100%;
|
|
685
|
+
display: flex;
|
|
562
686
|
flex-direction: column;
|
|
563
687
|
box-sizing: border-box;
|
|
564
688
|
}
|
|
565
|
-
|
|
566
|
-
|
|
689
|
+
|
|
690
|
+
.aio-popup-highlight-main {
|
|
691
|
+
display: flex;
|
|
567
692
|
position: relative;
|
|
568
693
|
box-sizing: border-box;
|
|
569
|
-
overflow:hidden;
|
|
694
|
+
overflow: hidden;
|
|
570
695
|
}
|
|
696
|
+
|
|
571
697
|
.aio-popup-highlight-mask {
|
|
572
698
|
background: rgba(0, 0, 0, 0.8);
|
|
573
699
|
pointer-events: all;
|
|
574
|
-
display:flex;
|
|
700
|
+
display: flex;
|
|
575
701
|
align-items: center;
|
|
576
702
|
justify-content: center;
|
|
577
703
|
position: relative;
|
|
578
704
|
box-sizing: border-box;
|
|
579
|
-
height:100%;
|
|
580
|
-
overflow:hidden;
|
|
581
|
-
}
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
705
|
+
height: 100%;
|
|
706
|
+
overflow: hidden;
|
|
707
|
+
}
|
|
708
|
+
|
|
709
|
+
.aio-popup-highlight-mask-flex {
|
|
710
|
+
flex: 1;
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
.aio-popup-highlight-html-container {
|
|
714
|
+
position: absolute;
|
|
715
|
+
left: 0;
|
|
716
|
+
top: 0;
|
|
717
|
+
height: 100%;
|
|
718
|
+
width: 100%;
|
|
719
|
+
display: flex;
|
|
720
|
+
flex: 1;
|
|
593
721
|
flex-direction: column;
|
|
594
|
-
overflow:hidden;
|
|
722
|
+
overflow: hidden;
|
|
595
723
|
}
|
|
596
|
-
|
|
597
|
-
|
|
724
|
+
|
|
725
|
+
.aio-popup-highlight-space {
|
|
726
|
+
flex: 1;
|
|
598
727
|
}
|
|
599
|
-
|
|
600
|
-
|
|
728
|
+
|
|
729
|
+
.aio-popup-highlight-focus-container {
|
|
730
|
+
overflow: hidden;
|
|
601
731
|
}
|
|
732
|
+
|
|
602
733
|
.aio-popup-highlight-focus {
|
|
603
734
|
width: 100%;
|
|
604
735
|
height: 100%;
|
|
605
736
|
box-shadow: 0 0 0 24px rgba(0, 0, 0, 0.8);
|
|
606
737
|
border-radius: 6px;
|
|
607
738
|
position: relative;
|
|
608
|
-
overflow:hidden;
|
|
739
|
+
overflow: hidden;
|
|
609
740
|
}
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
741
|
+
|
|
742
|
+
.aio-popup-highlight-html {
|
|
743
|
+
background: rgba(0, 0, 0, 0.2);
|
|
744
|
+
padding: 12px;
|
|
613
745
|
box-sizing: border-box;
|
|
614
|
-
display:flex;
|
|
746
|
+
display: flex;
|
|
615
747
|
align-items: center;
|
|
616
748
|
justify-content: center;
|
|
617
749
|
position: relative;
|
|
618
750
|
}
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
751
|
+
|
|
752
|
+
.aio-popup-highlight-arrow {
|
|
753
|
+
padding: 0 12px;
|
|
754
|
+
height: 48px;
|
|
622
755
|
box-sizing: border-box;
|
|
623
756
|
}
|
|
757
|
+
|
|
624
758
|
.aio-popup-highlight-arrow-bottom {
|
|
625
759
|
fill: rgba(255, 255, 255, 1);
|
|
626
760
|
animation-name: puls;
|
|
@@ -640,42 +774,111 @@
|
|
|
640
774
|
|
|
641
775
|
@keyframes puls {
|
|
642
776
|
0% {
|
|
643
|
-
|
|
644
|
-
|
|
777
|
+
transform: translateY(12px);
|
|
778
|
+
opacity: 1;
|
|
645
779
|
}
|
|
646
780
|
|
|
647
781
|
100% {
|
|
648
|
-
|
|
649
|
-
|
|
782
|
+
transform: translateY(0px);
|
|
783
|
+
opacity: 0;
|
|
650
784
|
}
|
|
651
785
|
}
|
|
652
786
|
|
|
653
787
|
@keyframes puls1 {
|
|
654
788
|
0% {
|
|
655
|
-
|
|
656
|
-
|
|
789
|
+
transform: translateY(0px) rotate(180deg);
|
|
790
|
+
opacity: 1;
|
|
657
791
|
}
|
|
658
792
|
|
|
659
793
|
100% {
|
|
660
|
-
|
|
661
|
-
|
|
794
|
+
transform: translateY(12px) rotate(180deg);
|
|
795
|
+
opacity: 0;
|
|
662
796
|
}
|
|
663
797
|
}
|
|
664
798
|
|
|
665
799
|
/* .aio-popup-snackebar-item{
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
}
|
|
673
|
-
|
|
674
|
-
|
|
800
|
+
background:linear-gradient(180deg, #ffffff, #d1d1d1);
|
|
801
|
+
color:#222;
|
|
802
|
+
font-weight:bold;
|
|
803
|
+
border-radius:6px;
|
|
804
|
+
border:2px solid #eee;
|
|
805
|
+
box-shadow:inset 2px 1px 4px 0px rgb(0 0 0 / 19%);
|
|
806
|
+
}
|
|
807
|
+
|
|
808
|
+
*/
|
|
675
809
|
/* .aio-popup-snackebar-item{
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
} */
|
|
810
|
+
background:#fff;
|
|
811
|
+
color:#222;
|
|
812
|
+
font-weight:bold;
|
|
813
|
+
border-radius:6px;
|
|
814
|
+
border:1px solid #eee;
|
|
815
|
+
} */
|
|
816
|
+
.aio-loading {
|
|
817
|
+
z-index: 100000000000000000000000000000;
|
|
818
|
+
position: absolute;
|
|
819
|
+
direction: ltr;
|
|
820
|
+
width: 100%;
|
|
821
|
+
height: 100%;
|
|
822
|
+
top: 0;
|
|
823
|
+
left: 0;
|
|
824
|
+
display: flex;
|
|
825
|
+
align-items: center;
|
|
826
|
+
align-items: center;
|
|
827
|
+
justify-content: center;
|
|
828
|
+
}
|
|
829
|
+
|
|
830
|
+
.aio-loading-container-0 {
|
|
831
|
+
border-radius: 12px;
|
|
832
|
+
height: 72px;
|
|
833
|
+
width: 72px;
|
|
834
|
+
display: flex;
|
|
835
|
+
align-items: center;
|
|
836
|
+
justify-content: center;
|
|
837
|
+
background: rgba(0, 0, 0, 0.7);
|
|
838
|
+
opacity: 1;
|
|
839
|
+
animation-name: aioloadingopacity;
|
|
840
|
+
animation-duration: 2s;
|
|
841
|
+
animation-fill-mode: forwards;
|
|
842
|
+
}
|
|
843
|
+
|
|
844
|
+
.aio-loading-0 {
|
|
845
|
+
width: 60px;
|
|
846
|
+
display: flex;
|
|
847
|
+
align-items: center;
|
|
848
|
+
justify-content: center;
|
|
849
|
+
}
|
|
850
|
+
|
|
851
|
+
.aio-loading-item-0 {
|
|
852
|
+
width: 4px;
|
|
853
|
+
height: 36px;
|
|
854
|
+
background: rgb(255, 255, 255);
|
|
855
|
+
margin: 0px 1.5px;
|
|
856
|
+
border-radius: 0px;
|
|
857
|
+
}
|
|
858
|
+
|
|
859
|
+
@keyframes aioloading0 {
|
|
860
|
+
|
|
861
|
+
0%,
|
|
862
|
+
40%,
|
|
863
|
+
100% {
|
|
864
|
+
transform: scaleY(0.4);
|
|
865
|
+
}
|
|
866
|
+
|
|
867
|
+
20% {
|
|
868
|
+
transform: scaleY(1.0);
|
|
869
|
+
}
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
@keyframes aioloadingopacity {
|
|
873
|
+
0% {
|
|
874
|
+
opacity: 0;
|
|
875
|
+
}
|
|
876
|
+
|
|
877
|
+
50% {
|
|
878
|
+
opacity: 0;
|
|
879
|
+
}
|
|
880
|
+
|
|
881
|
+
100% {
|
|
882
|
+
opacity: 1;
|
|
883
|
+
}
|
|
884
|
+
}
|