@popsure/dirty-swan 0.25.2 → 0.26.3
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/dist/index.css +716 -57
- package/dist/index.css.map +1 -1
- package/dist/index.js +12 -7
- package/dist/index.js.map +1 -1
- package/dist/lib/components/input/autoSuggestInput/index.d.ts +2 -1
- package/dist/lib/components/input/autoSuggestMultiSelect/index.d.ts +2 -1
- package/dist/lib/scss/private/base/_grid.scss +36 -0
- package/dist/lib/scss/private/base/_index.scss +1 -0
- package/dist/lib/scss/private/base/_spacing.scss +52 -20
- package/dist/lib/scss/private/base/flex/_flex.scss +63 -0
- package/dist/lib/scss/private/base/flex/style.module.scss +24 -0
- package/dist/lib/scss/private/components/_notices.scss +13 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -188,232 +188,883 @@ input[type=number]::-webkit-outer-spin-button {
|
|
|
188
188
|
}
|
|
189
189
|
}
|
|
190
190
|
|
|
191
|
+
/** Shared values across align and justify properties */
|
|
192
|
+
.ai-start {
|
|
193
|
+
align-items: flex-start;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.ai-end {
|
|
197
|
+
align-items: flex-end;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.ai-center {
|
|
201
|
+
align-items: center;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.ai-stretch {
|
|
205
|
+
align-items: stretch;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.ai-baseline {
|
|
209
|
+
align-items: baseline;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.jc-start {
|
|
213
|
+
justify-content: flex-start;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.jc-end {
|
|
217
|
+
justify-content: flex-end;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.jc-center {
|
|
221
|
+
justify-content: center;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
.jc-between {
|
|
225
|
+
justify-content: space-between;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.jc-around {
|
|
229
|
+
justify-content: space-around;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.jc-evenly {
|
|
233
|
+
justify-content: space-evenly;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.fd-row {
|
|
237
|
+
flex-direction: row !important;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.fd-row-reverse {
|
|
241
|
+
flex-direction: row-reverse !important;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.fd-column {
|
|
245
|
+
flex-direction: column !important;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.fd-column-reverse {
|
|
249
|
+
flex-direction: column-reverse !important;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.f-wrap {
|
|
253
|
+
flex-wrap: wrap;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.f-nowrap {
|
|
257
|
+
flex-wrap: nowrap;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
.m0 {
|
|
261
|
+
margin: 0px;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
.p0 {
|
|
265
|
+
padding: 0px;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.m8 {
|
|
269
|
+
margin: 8px;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.p8 {
|
|
273
|
+
padding: 8px;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
.m16 {
|
|
277
|
+
margin: 16px;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
.p16 {
|
|
281
|
+
padding: 16px;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
.m24 {
|
|
285
|
+
margin: 24px;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.p24 {
|
|
289
|
+
padding: 24px;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.m32 {
|
|
293
|
+
margin: 32px;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
.p32 {
|
|
297
|
+
padding: 32px;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
.m40 {
|
|
301
|
+
margin: 40px;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.p40 {
|
|
305
|
+
padding: 40px;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
.m48 {
|
|
309
|
+
margin: 48px;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.p48 {
|
|
313
|
+
padding: 48px;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.m56 {
|
|
317
|
+
margin: 56px;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
.p56 {
|
|
321
|
+
padding: 56px;
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
.m64 {
|
|
325
|
+
margin: 64px;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
.p64 {
|
|
329
|
+
padding: 64px;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
.m72 {
|
|
333
|
+
margin: 72px;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.p72 {
|
|
337
|
+
padding: 72px;
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
.m80 {
|
|
341
|
+
margin: 80px;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.p80 {
|
|
345
|
+
padding: 80px;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.m88 {
|
|
349
|
+
margin: 88px;
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
.p88 {
|
|
353
|
+
padding: 88px;
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
.m96 {
|
|
357
|
+
margin: 96px;
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
.p96 {
|
|
361
|
+
padding: 96px;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.mx0 {
|
|
365
|
+
margin-left: 0px;
|
|
366
|
+
margin-right: 0px;
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
.px0 {
|
|
370
|
+
padding-left: 0px;
|
|
371
|
+
padding-right: 0px;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
.mx8 {
|
|
375
|
+
margin-left: 8px;
|
|
376
|
+
margin-right: 8px;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
.px8 {
|
|
380
|
+
padding-left: 8px;
|
|
381
|
+
padding-right: 8px;
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
.mx16 {
|
|
385
|
+
margin-left: 16px;
|
|
386
|
+
margin-right: 16px;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
.px16 {
|
|
390
|
+
padding-left: 16px;
|
|
391
|
+
padding-right: 16px;
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
.mx24 {
|
|
395
|
+
margin-left: 24px;
|
|
396
|
+
margin-right: 24px;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
.px24 {
|
|
400
|
+
padding-left: 24px;
|
|
401
|
+
padding-right: 24px;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
.mx32 {
|
|
405
|
+
margin-left: 32px;
|
|
406
|
+
margin-right: 32px;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
.px32 {
|
|
410
|
+
padding-left: 32px;
|
|
411
|
+
padding-right: 32px;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
.mx40 {
|
|
415
|
+
margin-left: 40px;
|
|
416
|
+
margin-right: 40px;
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
.px40 {
|
|
420
|
+
padding-left: 40px;
|
|
421
|
+
padding-right: 40px;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
.mx48 {
|
|
425
|
+
margin-left: 48px;
|
|
426
|
+
margin-right: 48px;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
.px48 {
|
|
430
|
+
padding-left: 48px;
|
|
431
|
+
padding-right: 48px;
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
.mx56 {
|
|
435
|
+
margin-left: 56px;
|
|
436
|
+
margin-right: 56px;
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
.px56 {
|
|
440
|
+
padding-left: 56px;
|
|
441
|
+
padding-right: 56px;
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
.mx64 {
|
|
445
|
+
margin-left: 64px;
|
|
446
|
+
margin-right: 64px;
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
.px64 {
|
|
450
|
+
padding-left: 64px;
|
|
451
|
+
padding-right: 64px;
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
.mx72 {
|
|
455
|
+
margin-left: 72px;
|
|
456
|
+
margin-right: 72px;
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
.px72 {
|
|
460
|
+
padding-left: 72px;
|
|
461
|
+
padding-right: 72px;
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
.mx80 {
|
|
465
|
+
margin-left: 80px;
|
|
466
|
+
margin-right: 80px;
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
.px80 {
|
|
470
|
+
padding-left: 80px;
|
|
471
|
+
padding-right: 80px;
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
.mx88 {
|
|
475
|
+
margin-left: 88px;
|
|
476
|
+
margin-right: 88px;
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
.px88 {
|
|
480
|
+
padding-left: 88px;
|
|
481
|
+
padding-right: 88px;
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
.mx96 {
|
|
485
|
+
margin-left: 96px;
|
|
486
|
+
margin-right: 96px;
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
.px96 {
|
|
490
|
+
padding-left: 96px;
|
|
491
|
+
padding-right: 96px;
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
.my0 {
|
|
495
|
+
margin-top: 0px;
|
|
496
|
+
margin-bottom: 0px;
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
.py0 {
|
|
500
|
+
padding-top: 0px;
|
|
501
|
+
padding-bottom: 0px;
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
.my8 {
|
|
505
|
+
margin-top: 8px;
|
|
506
|
+
margin-bottom: 8px;
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
.py8 {
|
|
510
|
+
padding-top: 8px;
|
|
511
|
+
padding-bottom: 8px;
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
.my16 {
|
|
515
|
+
margin-top: 16px;
|
|
516
|
+
margin-bottom: 16px;
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
.py16 {
|
|
520
|
+
padding-top: 16px;
|
|
521
|
+
padding-bottom: 16px;
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
.my24 {
|
|
525
|
+
margin-top: 24px;
|
|
526
|
+
margin-bottom: 24px;
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
.py24 {
|
|
530
|
+
padding-top: 24px;
|
|
531
|
+
padding-bottom: 24px;
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
.my32 {
|
|
535
|
+
margin-top: 32px;
|
|
536
|
+
margin-bottom: 32px;
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
.py32 {
|
|
540
|
+
padding-top: 32px;
|
|
541
|
+
padding-bottom: 32px;
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
.my40 {
|
|
545
|
+
margin-top: 40px;
|
|
546
|
+
margin-bottom: 40px;
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
.py40 {
|
|
550
|
+
padding-top: 40px;
|
|
551
|
+
padding-bottom: 40px;
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
.my48 {
|
|
555
|
+
margin-top: 48px;
|
|
556
|
+
margin-bottom: 48px;
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
.py48 {
|
|
560
|
+
padding-top: 48px;
|
|
561
|
+
padding-bottom: 48px;
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
.my56 {
|
|
565
|
+
margin-top: 56px;
|
|
566
|
+
margin-bottom: 56px;
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
.py56 {
|
|
570
|
+
padding-top: 56px;
|
|
571
|
+
padding-bottom: 56px;
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
.my64 {
|
|
575
|
+
margin-top: 64px;
|
|
576
|
+
margin-bottom: 64px;
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
.py64 {
|
|
580
|
+
padding-top: 64px;
|
|
581
|
+
padding-bottom: 64px;
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
.my72 {
|
|
585
|
+
margin-top: 72px;
|
|
586
|
+
margin-bottom: 72px;
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
.py72 {
|
|
590
|
+
padding-top: 72px;
|
|
591
|
+
padding-bottom: 72px;
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
.my80 {
|
|
595
|
+
margin-top: 80px;
|
|
596
|
+
margin-bottom: 80px;
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
.py80 {
|
|
600
|
+
padding-top: 80px;
|
|
601
|
+
padding-bottom: 80px;
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
.my88 {
|
|
605
|
+
margin-top: 88px;
|
|
606
|
+
margin-bottom: 88px;
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
.py88 {
|
|
610
|
+
padding-top: 88px;
|
|
611
|
+
padding-bottom: 88px;
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
.my96 {
|
|
615
|
+
margin-top: 96px;
|
|
616
|
+
margin-bottom: 96px;
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
.py96 {
|
|
620
|
+
padding-top: 96px;
|
|
621
|
+
padding-bottom: 96px;
|
|
622
|
+
}
|
|
623
|
+
|
|
191
624
|
.mt0 {
|
|
192
625
|
margin-top: 0px;
|
|
193
626
|
}
|
|
194
627
|
|
|
628
|
+
.pt0 {
|
|
629
|
+
padding-top: 0px;
|
|
630
|
+
}
|
|
631
|
+
|
|
195
632
|
.mt8 {
|
|
196
633
|
margin-top: 8px;
|
|
197
634
|
}
|
|
198
635
|
|
|
636
|
+
.pt8 {
|
|
637
|
+
padding-top: 8px;
|
|
638
|
+
}
|
|
639
|
+
|
|
199
640
|
.mt16 {
|
|
200
641
|
margin-top: 16px;
|
|
201
642
|
}
|
|
202
643
|
|
|
644
|
+
.pt16 {
|
|
645
|
+
padding-top: 16px;
|
|
646
|
+
}
|
|
647
|
+
|
|
203
648
|
.mt24 {
|
|
204
649
|
margin-top: 24px;
|
|
205
650
|
}
|
|
206
651
|
|
|
652
|
+
.pt24 {
|
|
653
|
+
padding-top: 24px;
|
|
654
|
+
}
|
|
655
|
+
|
|
207
656
|
.mt32 {
|
|
208
657
|
margin-top: 32px;
|
|
209
658
|
}
|
|
210
659
|
|
|
660
|
+
.pt32 {
|
|
661
|
+
padding-top: 32px;
|
|
662
|
+
}
|
|
663
|
+
|
|
211
664
|
.mt40 {
|
|
212
665
|
margin-top: 40px;
|
|
213
666
|
}
|
|
214
667
|
|
|
668
|
+
.pt40 {
|
|
669
|
+
padding-top: 40px;
|
|
670
|
+
}
|
|
671
|
+
|
|
215
672
|
.mt48 {
|
|
216
673
|
margin-top: 48px;
|
|
217
674
|
}
|
|
218
675
|
|
|
676
|
+
.pt48 {
|
|
677
|
+
padding-top: 48px;
|
|
678
|
+
}
|
|
679
|
+
|
|
219
680
|
.mt56 {
|
|
220
681
|
margin-top: 56px;
|
|
221
682
|
}
|
|
222
683
|
|
|
684
|
+
.pt56 {
|
|
685
|
+
padding-top: 56px;
|
|
686
|
+
}
|
|
687
|
+
|
|
223
688
|
.mt64 {
|
|
224
689
|
margin-top: 64px;
|
|
225
690
|
}
|
|
226
691
|
|
|
692
|
+
.pt64 {
|
|
693
|
+
padding-top: 64px;
|
|
694
|
+
}
|
|
695
|
+
|
|
227
696
|
.mt72 {
|
|
228
697
|
margin-top: 72px;
|
|
229
698
|
}
|
|
230
699
|
|
|
700
|
+
.pt72 {
|
|
701
|
+
padding-top: 72px;
|
|
702
|
+
}
|
|
703
|
+
|
|
231
704
|
.mt80 {
|
|
232
705
|
margin-top: 80px;
|
|
233
706
|
}
|
|
234
707
|
|
|
708
|
+
.pt80 {
|
|
709
|
+
padding-top: 80px;
|
|
710
|
+
}
|
|
711
|
+
|
|
235
712
|
.mt88 {
|
|
236
713
|
margin-top: 88px;
|
|
237
714
|
}
|
|
238
715
|
|
|
716
|
+
.pt88 {
|
|
717
|
+
padding-top: 88px;
|
|
718
|
+
}
|
|
719
|
+
|
|
239
720
|
.mt96 {
|
|
240
721
|
margin-top: 96px;
|
|
241
722
|
}
|
|
242
723
|
|
|
724
|
+
.pt96 {
|
|
725
|
+
padding-top: 96px;
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
.mt-auto {
|
|
729
|
+
margin-top: auto;
|
|
730
|
+
}
|
|
731
|
+
|
|
243
732
|
.mb0 {
|
|
244
733
|
margin-bottom: 0px;
|
|
245
734
|
}
|
|
246
735
|
|
|
736
|
+
.pb0 {
|
|
737
|
+
padding-bottom: 0px;
|
|
738
|
+
}
|
|
739
|
+
|
|
247
740
|
.mb8 {
|
|
248
741
|
margin-bottom: 8px;
|
|
249
742
|
}
|
|
250
743
|
|
|
251
|
-
.
|
|
252
|
-
|
|
744
|
+
.pb8 {
|
|
745
|
+
padding-bottom: 8px;
|
|
253
746
|
}
|
|
254
747
|
|
|
255
|
-
.
|
|
256
|
-
margin-bottom:
|
|
748
|
+
.mb16 {
|
|
749
|
+
margin-bottom: 16px;
|
|
257
750
|
}
|
|
258
751
|
|
|
259
|
-
.
|
|
260
|
-
|
|
752
|
+
.pb16 {
|
|
753
|
+
padding-bottom: 16px;
|
|
261
754
|
}
|
|
262
755
|
|
|
263
|
-
.
|
|
264
|
-
margin-bottom:
|
|
756
|
+
.mb24 {
|
|
757
|
+
margin-bottom: 24px;
|
|
265
758
|
}
|
|
266
759
|
|
|
267
|
-
.
|
|
268
|
-
|
|
760
|
+
.pb24 {
|
|
761
|
+
padding-bottom: 24px;
|
|
269
762
|
}
|
|
270
763
|
|
|
271
|
-
.
|
|
272
|
-
margin-bottom:
|
|
764
|
+
.mb32 {
|
|
765
|
+
margin-bottom: 32px;
|
|
273
766
|
}
|
|
274
767
|
|
|
275
|
-
.
|
|
276
|
-
|
|
768
|
+
.pb32 {
|
|
769
|
+
padding-bottom: 32px;
|
|
277
770
|
}
|
|
278
771
|
|
|
279
|
-
.
|
|
280
|
-
margin-bottom:
|
|
772
|
+
.mb40 {
|
|
773
|
+
margin-bottom: 40px;
|
|
281
774
|
}
|
|
282
775
|
|
|
283
|
-
.
|
|
284
|
-
|
|
776
|
+
.pb40 {
|
|
777
|
+
padding-bottom: 40px;
|
|
285
778
|
}
|
|
286
779
|
|
|
287
|
-
.
|
|
288
|
-
margin-bottom:
|
|
780
|
+
.mb48 {
|
|
781
|
+
margin-bottom: 48px;
|
|
289
782
|
}
|
|
290
783
|
|
|
291
|
-
.
|
|
292
|
-
|
|
784
|
+
.pb48 {
|
|
785
|
+
padding-bottom: 48px;
|
|
293
786
|
}
|
|
294
787
|
|
|
295
|
-
.
|
|
296
|
-
margin-
|
|
788
|
+
.mb56 {
|
|
789
|
+
margin-bottom: 56px;
|
|
297
790
|
}
|
|
298
791
|
|
|
299
|
-
.
|
|
300
|
-
|
|
792
|
+
.pb56 {
|
|
793
|
+
padding-bottom: 56px;
|
|
301
794
|
}
|
|
302
795
|
|
|
303
|
-
.
|
|
304
|
-
margin-
|
|
796
|
+
.mb64 {
|
|
797
|
+
margin-bottom: 64px;
|
|
305
798
|
}
|
|
306
799
|
|
|
307
|
-
.
|
|
308
|
-
|
|
800
|
+
.pb64 {
|
|
801
|
+
padding-bottom: 64px;
|
|
309
802
|
}
|
|
310
803
|
|
|
311
|
-
.
|
|
312
|
-
margin-
|
|
804
|
+
.mb72 {
|
|
805
|
+
margin-bottom: 72px;
|
|
313
806
|
}
|
|
314
807
|
|
|
315
|
-
.
|
|
316
|
-
|
|
808
|
+
.pb72 {
|
|
809
|
+
padding-bottom: 72px;
|
|
317
810
|
}
|
|
318
811
|
|
|
319
|
-
.
|
|
320
|
-
margin-
|
|
812
|
+
.mb80 {
|
|
813
|
+
margin-bottom: 80px;
|
|
321
814
|
}
|
|
322
815
|
|
|
323
|
-
.
|
|
324
|
-
|
|
816
|
+
.pb80 {
|
|
817
|
+
padding-bottom: 80px;
|
|
325
818
|
}
|
|
326
819
|
|
|
327
|
-
.
|
|
328
|
-
margin-
|
|
820
|
+
.mb88 {
|
|
821
|
+
margin-bottom: 88px;
|
|
329
822
|
}
|
|
330
823
|
|
|
331
|
-
.
|
|
332
|
-
|
|
824
|
+
.pb88 {
|
|
825
|
+
padding-bottom: 88px;
|
|
333
826
|
}
|
|
334
827
|
|
|
335
|
-
.
|
|
336
|
-
margin-
|
|
828
|
+
.mb96 {
|
|
829
|
+
margin-bottom: 96px;
|
|
337
830
|
}
|
|
338
831
|
|
|
339
|
-
.
|
|
340
|
-
|
|
832
|
+
.pb96 {
|
|
833
|
+
padding-bottom: 96px;
|
|
341
834
|
}
|
|
342
835
|
|
|
343
|
-
.
|
|
344
|
-
margin-
|
|
836
|
+
.mb-auto {
|
|
837
|
+
margin-bottom: auto;
|
|
345
838
|
}
|
|
346
839
|
|
|
347
840
|
.ml0 {
|
|
348
841
|
margin-left: 0px;
|
|
349
842
|
}
|
|
350
843
|
|
|
844
|
+
.pl0 {
|
|
845
|
+
padding-left: 0px;
|
|
846
|
+
}
|
|
847
|
+
|
|
351
848
|
.ml8 {
|
|
352
849
|
margin-left: 8px;
|
|
353
850
|
}
|
|
354
851
|
|
|
852
|
+
.pl8 {
|
|
853
|
+
padding-left: 8px;
|
|
854
|
+
}
|
|
855
|
+
|
|
355
856
|
.ml16 {
|
|
356
857
|
margin-left: 16px;
|
|
357
858
|
}
|
|
358
859
|
|
|
860
|
+
.pl16 {
|
|
861
|
+
padding-left: 16px;
|
|
862
|
+
}
|
|
863
|
+
|
|
359
864
|
.ml24 {
|
|
360
865
|
margin-left: 24px;
|
|
361
866
|
}
|
|
362
867
|
|
|
868
|
+
.pl24 {
|
|
869
|
+
padding-left: 24px;
|
|
870
|
+
}
|
|
871
|
+
|
|
363
872
|
.ml32 {
|
|
364
873
|
margin-left: 32px;
|
|
365
874
|
}
|
|
366
875
|
|
|
876
|
+
.pl32 {
|
|
877
|
+
padding-left: 32px;
|
|
878
|
+
}
|
|
879
|
+
|
|
367
880
|
.ml40 {
|
|
368
881
|
margin-left: 40px;
|
|
369
882
|
}
|
|
370
883
|
|
|
884
|
+
.pl40 {
|
|
885
|
+
padding-left: 40px;
|
|
886
|
+
}
|
|
887
|
+
|
|
371
888
|
.ml48 {
|
|
372
889
|
margin-left: 48px;
|
|
373
890
|
}
|
|
374
891
|
|
|
892
|
+
.pl48 {
|
|
893
|
+
padding-left: 48px;
|
|
894
|
+
}
|
|
895
|
+
|
|
375
896
|
.ml56 {
|
|
376
897
|
margin-left: 56px;
|
|
377
898
|
}
|
|
378
899
|
|
|
900
|
+
.pl56 {
|
|
901
|
+
padding-left: 56px;
|
|
902
|
+
}
|
|
903
|
+
|
|
379
904
|
.ml64 {
|
|
380
905
|
margin-left: 64px;
|
|
381
906
|
}
|
|
382
907
|
|
|
908
|
+
.pl64 {
|
|
909
|
+
padding-left: 64px;
|
|
910
|
+
}
|
|
911
|
+
|
|
383
912
|
.ml72 {
|
|
384
913
|
margin-left: 72px;
|
|
385
914
|
}
|
|
386
915
|
|
|
916
|
+
.pl72 {
|
|
917
|
+
padding-left: 72px;
|
|
918
|
+
}
|
|
919
|
+
|
|
387
920
|
.ml80 {
|
|
388
921
|
margin-left: 80px;
|
|
389
922
|
}
|
|
390
923
|
|
|
924
|
+
.pl80 {
|
|
925
|
+
padding-left: 80px;
|
|
926
|
+
}
|
|
927
|
+
|
|
391
928
|
.ml88 {
|
|
392
929
|
margin-left: 88px;
|
|
393
930
|
}
|
|
394
931
|
|
|
932
|
+
.pl88 {
|
|
933
|
+
padding-left: 88px;
|
|
934
|
+
}
|
|
935
|
+
|
|
395
936
|
.ml96 {
|
|
396
937
|
margin-left: 96px;
|
|
397
938
|
}
|
|
398
939
|
|
|
399
|
-
.
|
|
400
|
-
|
|
940
|
+
.pl96 {
|
|
941
|
+
padding-left: 96px;
|
|
401
942
|
}
|
|
402
943
|
|
|
403
|
-
.
|
|
404
|
-
margin-
|
|
944
|
+
.ml-auto {
|
|
945
|
+
margin-left: auto;
|
|
405
946
|
}
|
|
406
947
|
|
|
407
|
-
.
|
|
408
|
-
margin-
|
|
948
|
+
.mr0 {
|
|
949
|
+
margin-right: 0px;
|
|
950
|
+
}
|
|
951
|
+
|
|
952
|
+
.pr0 {
|
|
953
|
+
padding-right: 0px;
|
|
954
|
+
}
|
|
955
|
+
|
|
956
|
+
.mr8 {
|
|
957
|
+
margin-right: 8px;
|
|
958
|
+
}
|
|
959
|
+
|
|
960
|
+
.pr8 {
|
|
961
|
+
padding-right: 8px;
|
|
962
|
+
}
|
|
963
|
+
|
|
964
|
+
.mr16 {
|
|
965
|
+
margin-right: 16px;
|
|
966
|
+
}
|
|
967
|
+
|
|
968
|
+
.pr16 {
|
|
969
|
+
padding-right: 16px;
|
|
970
|
+
}
|
|
971
|
+
|
|
972
|
+
.mr24 {
|
|
973
|
+
margin-right: 24px;
|
|
974
|
+
}
|
|
975
|
+
|
|
976
|
+
.pr24 {
|
|
977
|
+
padding-right: 24px;
|
|
978
|
+
}
|
|
979
|
+
|
|
980
|
+
.mr32 {
|
|
981
|
+
margin-right: 32px;
|
|
982
|
+
}
|
|
983
|
+
|
|
984
|
+
.pr32 {
|
|
985
|
+
padding-right: 32px;
|
|
986
|
+
}
|
|
987
|
+
|
|
988
|
+
.mr40 {
|
|
989
|
+
margin-right: 40px;
|
|
990
|
+
}
|
|
991
|
+
|
|
992
|
+
.pr40 {
|
|
993
|
+
padding-right: 40px;
|
|
994
|
+
}
|
|
995
|
+
|
|
996
|
+
.mr48 {
|
|
997
|
+
margin-right: 48px;
|
|
998
|
+
}
|
|
999
|
+
|
|
1000
|
+
.pr48 {
|
|
1001
|
+
padding-right: 48px;
|
|
1002
|
+
}
|
|
1003
|
+
|
|
1004
|
+
.mr56 {
|
|
1005
|
+
margin-right: 56px;
|
|
1006
|
+
}
|
|
1007
|
+
|
|
1008
|
+
.pr56 {
|
|
1009
|
+
padding-right: 56px;
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
.mr64 {
|
|
1013
|
+
margin-right: 64px;
|
|
1014
|
+
}
|
|
1015
|
+
|
|
1016
|
+
.pr64 {
|
|
1017
|
+
padding-right: 64px;
|
|
1018
|
+
}
|
|
1019
|
+
|
|
1020
|
+
.mr72 {
|
|
1021
|
+
margin-right: 72px;
|
|
1022
|
+
}
|
|
1023
|
+
|
|
1024
|
+
.pr72 {
|
|
1025
|
+
padding-right: 72px;
|
|
1026
|
+
}
|
|
1027
|
+
|
|
1028
|
+
.mr80 {
|
|
1029
|
+
margin-right: 80px;
|
|
1030
|
+
}
|
|
1031
|
+
|
|
1032
|
+
.pr80 {
|
|
1033
|
+
padding-right: 80px;
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
.mr88 {
|
|
1037
|
+
margin-right: 88px;
|
|
1038
|
+
}
|
|
1039
|
+
|
|
1040
|
+
.pr88 {
|
|
1041
|
+
padding-right: 88px;
|
|
1042
|
+
}
|
|
1043
|
+
|
|
1044
|
+
.mr96 {
|
|
1045
|
+
margin-right: 96px;
|
|
1046
|
+
}
|
|
1047
|
+
|
|
1048
|
+
.pr96 {
|
|
1049
|
+
padding-right: 96px;
|
|
409
1050
|
}
|
|
410
1051
|
|
|
411
1052
|
.mr-auto {
|
|
412
1053
|
margin-right: auto;
|
|
413
1054
|
}
|
|
414
1055
|
|
|
415
|
-
.
|
|
1056
|
+
.m-auto {
|
|
1057
|
+
margin: auto;
|
|
1058
|
+
}
|
|
1059
|
+
|
|
1060
|
+
.mx-auto {
|
|
416
1061
|
margin-left: auto;
|
|
1062
|
+
margin-right: auto;
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1065
|
+
.my-auto {
|
|
1066
|
+
margin-top: auto;
|
|
1067
|
+
margin-bottom: auto;
|
|
417
1068
|
}
|
|
418
1069
|
|
|
419
1070
|
.ws1 {
|
|
@@ -1457,12 +2108,12 @@ input:checked[type=checkbox] + .p-label--bordered {
|
|
|
1457
2108
|
font-family: Arial, Helvetica, sans-serif;
|
|
1458
2109
|
}
|
|
1459
2110
|
|
|
1460
|
-
.p-notice, .p-notice--warning, .p-notice--danger, .p-notice--
|
|
2111
|
+
.p-notice, .p-notice--info, .p-notice--success, .p-notice--warning, .p-notice--danger, .p-notice--primary {
|
|
1461
2112
|
padding: 8px 16px;
|
|
1462
2113
|
border: 1px solid;
|
|
1463
2114
|
border-radius: 8px;
|
|
1464
2115
|
}
|
|
1465
|
-
.p-notice--
|
|
2116
|
+
.p-notice--primary {
|
|
1466
2117
|
background-color: #e6e5ff;
|
|
1467
2118
|
border-color: #8e8cee;
|
|
1468
2119
|
color: #26262e;
|
|
@@ -1476,6 +2127,14 @@ input:checked[type=checkbox] + .p-label--bordered {
|
|
|
1476
2127
|
background-color: #fff8e3;
|
|
1477
2128
|
border-color: #f7ce5c;
|
|
1478
2129
|
}
|
|
2130
|
+
.p-notice--success {
|
|
2131
|
+
background-color: #e4ffe6;
|
|
2132
|
+
border-color: #84de8a;
|
|
2133
|
+
}
|
|
2134
|
+
.p-notice--info {
|
|
2135
|
+
background-color: #e5f0ff;
|
|
2136
|
+
border-color: #8bb4ea;
|
|
2137
|
+
}
|
|
1479
2138
|
|
|
1480
2139
|
.p-badge, .p-badge--info, .p-badge--danger, .p-badge--inactive, .p-badge--pending, .p-badge--active {
|
|
1481
2140
|
display: inline-block;
|