@bagelink/vue 1.4.141 → 1.4.147
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/components/Btn.vue.d.ts.map +1 -1
- package/dist/components/Carousel.vue.d.ts +1 -1
- package/dist/components/Modal.vue.d.ts +3 -0
- package/dist/components/Modal.vue.d.ts.map +1 -1
- package/dist/components/Slider.vue.d.ts +1 -1
- package/dist/components/Slider.vue.d.ts.map +1 -1
- package/dist/components/analytics/BarChart.vue.d.ts +11 -3
- package/dist/components/analytics/BarChart.vue.d.ts.map +1 -1
- package/dist/components/analytics/LineChart.vue.d.ts +9 -0
- package/dist/components/analytics/LineChart.vue.d.ts.map +1 -1
- package/dist/components/analytics/PieChart.vue.d.ts +30 -2
- package/dist/components/analytics/PieChart.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/RichText/components/EditorToolbar.vue.d.ts +8 -0
- package/dist/components/form/inputs/RichText/components/EditorToolbar.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/RichText/components/TableGridSelector.vue.d.ts +9 -0
- package/dist/components/form/inputs/RichText/components/TableGridSelector.vue.d.ts.map +1 -0
- package/dist/components/form/inputs/RichText/composables/useCommands.d.ts.map +1 -1
- package/dist/components/form/inputs/RichText/composables/useEditor.d.ts +0 -14
- package/dist/components/form/inputs/RichText/composables/useEditor.d.ts.map +1 -1
- package/dist/components/form/inputs/RichText/composables/useEditorKeyboard.d.ts.map +1 -1
- package/dist/components/form/inputs/RichText/config.d.ts.map +1 -1
- package/dist/components/form/inputs/RichText/index.vue.d.ts +15 -15
- package/dist/components/form/inputs/RichText/index.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/RichText/richTextTypes.d.ts +1 -3
- package/dist/components/form/inputs/RichText/richTextTypes.d.ts.map +1 -1
- package/dist/components/form/inputs/RichText/utils/commands.d.ts.map +1 -1
- package/dist/components/form/inputs/RichText/utils/media-clean.d.ts +2 -0
- package/dist/components/form/inputs/RichText/utils/media-clean.d.ts.map +1 -0
- package/dist/components/form/inputs/RichText/utils/media.d.ts +4 -4
- package/dist/components/form/inputs/RichText/utils/media.d.ts.map +1 -1
- package/dist/components/form/inputs/RichText/utils/selection.d.ts.map +1 -1
- package/dist/components/form/inputs/RichText/utils/table.d.ts +1 -1
- package/dist/components/form/inputs/RichText/utils/table.d.ts.map +1 -1
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.d.ts.map +1 -1
- package/dist/components/layout/AppContent.vue.d.ts.map +1 -1
- package/dist/components/layout/AppLayout.vue.d.ts.map +1 -1
- package/dist/components/layout/AppSidebar.vue.d.ts.map +1 -1
- package/dist/index.cjs +123 -22
- package/dist/index.mjs +123 -22
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/Btn.vue +50 -42
- package/src/components/Modal.vue +49 -50
- package/src/components/analytics/BarChart.vue +118 -7
- package/src/components/analytics/KpiCard.vue +2 -2
- package/src/components/analytics/LineChart.vue +189 -105
- package/src/components/analytics/PieChart.vue +392 -49
- package/src/components/form/inputs/RichText/CheckList.md +23 -0
- package/src/components/form/inputs/RichText/components/EditorToolbar.vue +243 -38
- package/src/components/form/inputs/RichText/components/TableGridSelector.vue +94 -0
- package/src/components/form/inputs/RichText/composables/useCommands.ts +4 -1
- package/src/components/form/inputs/RichText/composables/useEditor.ts +6 -6
- package/src/components/form/inputs/RichText/composables/useEditorKeyboard.ts +1 -0
- package/src/components/form/inputs/RichText/config.ts +23 -11
- package/src/components/form/inputs/RichText/editor.css +300 -33
- package/src/components/form/inputs/RichText/index.vue +3014 -75
- package/src/components/form/inputs/RichText/richTextTypes.ts +2 -3
- package/src/components/form/inputs/RichText/utils/commands.ts +279 -50
- package/src/components/form/inputs/RichText/utils/media-clean.ts +0 -0
- package/src/components/form/inputs/RichText/utils/media.ts +133 -67
- package/src/components/form/inputs/RichText/utils/selection.ts +10 -2
- package/src/components/form/inputs/RichText/utils/table.ts +1 -1
- package/src/components/index.ts +1 -0
- package/src/components/layout/AppContent.vue +26 -26
- package/src/components/layout/AppLayout.vue +21 -3
- package/src/components/layout/AppSidebar.vue +5 -2
- package/src/styles/layout.css +267 -0
- package/src/styles/mobilLayout.css +266 -0
- package/src/styles/modal.css +3 -17
package/src/styles/layout.css
CHANGED
|
@@ -258,10 +258,18 @@
|
|
|
258
258
|
inset-inline-start: 1rem;
|
|
259
259
|
}
|
|
260
260
|
|
|
261
|
+
.start-1-25 {
|
|
262
|
+
inset-inline-start: 1.25rem;
|
|
263
|
+
}
|
|
264
|
+
|
|
261
265
|
.start-1-5 {
|
|
262
266
|
inset-inline-start: 1.5rem;
|
|
263
267
|
}
|
|
264
268
|
|
|
269
|
+
.start-1-75 {
|
|
270
|
+
inset-inline-start: 1.75rem;
|
|
271
|
+
}
|
|
272
|
+
|
|
265
273
|
.start-2 {
|
|
266
274
|
inset-inline-start: 2rem;
|
|
267
275
|
}
|
|
@@ -346,10 +354,18 @@
|
|
|
346
354
|
inset-inline-start: -1rem;
|
|
347
355
|
}
|
|
348
356
|
|
|
357
|
+
.-start-1-25 {
|
|
358
|
+
inset-inline-start: -1.25rem;
|
|
359
|
+
}
|
|
360
|
+
|
|
349
361
|
.-start-1-5 {
|
|
350
362
|
inset-inline-start: -1.5rem;
|
|
351
363
|
}
|
|
352
364
|
|
|
365
|
+
.-start-1-75 {
|
|
366
|
+
inset-inline-start: -1.75rem;
|
|
367
|
+
}
|
|
368
|
+
|
|
353
369
|
.-start-2 {
|
|
354
370
|
inset-inline-start: -2rem;
|
|
355
371
|
}
|
|
@@ -444,10 +460,18 @@
|
|
|
444
460
|
inset-inline-end: 1rem;
|
|
445
461
|
}
|
|
446
462
|
|
|
463
|
+
.end-1-25 {
|
|
464
|
+
inset-inline-end: 1.25rem;
|
|
465
|
+
}
|
|
466
|
+
|
|
447
467
|
.end-1-5 {
|
|
448
468
|
inset-inline-end: 1.5rem;
|
|
449
469
|
}
|
|
450
470
|
|
|
471
|
+
.end-1-75 {
|
|
472
|
+
inset-inline-end: 1.75rem;
|
|
473
|
+
}
|
|
474
|
+
|
|
451
475
|
.end-2 {
|
|
452
476
|
inset-inline-end: 2rem;
|
|
453
477
|
}
|
|
@@ -532,10 +556,18 @@
|
|
|
532
556
|
inset-inline-end: -1rem;
|
|
533
557
|
}
|
|
534
558
|
|
|
559
|
+
.-end-1-25 {
|
|
560
|
+
inset-inline-end: -1.25rem;
|
|
561
|
+
}
|
|
562
|
+
|
|
535
563
|
.-end-1-5 {
|
|
536
564
|
inset-inline-end: -1.5rem;
|
|
537
565
|
}
|
|
538
566
|
|
|
567
|
+
.-end-1-75 {
|
|
568
|
+
inset-inline-end: -1.75rem;
|
|
569
|
+
}
|
|
570
|
+
|
|
539
571
|
.-end-2 {
|
|
540
572
|
inset-inline-end: -2rem;
|
|
541
573
|
}
|
|
@@ -629,10 +661,18 @@
|
|
|
629
661
|
top: 1rem;
|
|
630
662
|
}
|
|
631
663
|
|
|
664
|
+
.top-1-25 {
|
|
665
|
+
top: 1.25rem;
|
|
666
|
+
}
|
|
667
|
+
|
|
632
668
|
.top-1-5 {
|
|
633
669
|
top: 1.5rem;
|
|
634
670
|
}
|
|
635
671
|
|
|
672
|
+
.top-1-75 {
|
|
673
|
+
top: 1.75rem;
|
|
674
|
+
}
|
|
675
|
+
|
|
636
676
|
.top-2 {
|
|
637
677
|
top: 2rem;
|
|
638
678
|
}
|
|
@@ -721,10 +761,18 @@
|
|
|
721
761
|
top: -1rem;
|
|
722
762
|
}
|
|
723
763
|
|
|
764
|
+
.-top-1-25 {
|
|
765
|
+
top: -1.25rem;
|
|
766
|
+
}
|
|
767
|
+
|
|
724
768
|
.-top-1-5 {
|
|
725
769
|
top: -1.5rem;
|
|
726
770
|
}
|
|
727
771
|
|
|
772
|
+
.-top-1-75 {
|
|
773
|
+
top: -1.75rem;
|
|
774
|
+
}
|
|
775
|
+
|
|
728
776
|
.-top-2 {
|
|
729
777
|
top: -2rem;
|
|
730
778
|
}
|
|
@@ -818,10 +866,18 @@
|
|
|
818
866
|
bottom: 1rem;
|
|
819
867
|
}
|
|
820
868
|
|
|
869
|
+
.bottom-1-25 {
|
|
870
|
+
bottom: 1.25rem;
|
|
871
|
+
}
|
|
872
|
+
|
|
821
873
|
.bottom-1-5 {
|
|
822
874
|
bottom: 1.5rem;
|
|
823
875
|
}
|
|
824
876
|
|
|
877
|
+
.bottom-1-75 {
|
|
878
|
+
bottom: 1.75rem;
|
|
879
|
+
}
|
|
880
|
+
|
|
825
881
|
.bottom-2 {
|
|
826
882
|
bottom: 2rem;
|
|
827
883
|
}
|
|
@@ -906,10 +962,18 @@
|
|
|
906
962
|
bottom: -1rem;
|
|
907
963
|
}
|
|
908
964
|
|
|
965
|
+
.-bottom-1-25 {
|
|
966
|
+
bottom: -1.25rem;
|
|
967
|
+
}
|
|
968
|
+
|
|
909
969
|
.-bottom-1-5 {
|
|
910
970
|
bottom: -1.5rem;
|
|
911
971
|
}
|
|
912
972
|
|
|
973
|
+
.-bottom-1-75 {
|
|
974
|
+
bottom: -1.75rem;
|
|
975
|
+
}
|
|
976
|
+
|
|
913
977
|
.-bottom-2 {
|
|
914
978
|
bottom: -2rem;
|
|
915
979
|
}
|
|
@@ -3410,10 +3474,18 @@
|
|
|
3410
3474
|
gap: 20rem;
|
|
3411
3475
|
}
|
|
3412
3476
|
|
|
3477
|
+
.gap-1-25 {
|
|
3478
|
+
gap: 1.25rem;
|
|
3479
|
+
}
|
|
3480
|
+
|
|
3413
3481
|
.gap-1-5 {
|
|
3414
3482
|
gap: 1.5rem;
|
|
3415
3483
|
}
|
|
3416
3484
|
|
|
3485
|
+
.gap-1-75 {
|
|
3486
|
+
gap: 1.75rem;
|
|
3487
|
+
}
|
|
3488
|
+
|
|
3417
3489
|
.gap-2-5 {
|
|
3418
3490
|
gap: 2.5rem;
|
|
3419
3491
|
}
|
|
@@ -3516,11 +3588,21 @@
|
|
|
3516
3588
|
column-gap: 10rem;
|
|
3517
3589
|
}
|
|
3518
3590
|
|
|
3591
|
+
.gap-col-1-25,
|
|
3592
|
+
.col-gap-1-25 {
|
|
3593
|
+
column-gap: 1.25rem;
|
|
3594
|
+
}
|
|
3595
|
+
|
|
3519
3596
|
.gap-col-1-5,
|
|
3520
3597
|
.col-gap-1-5 {
|
|
3521
3598
|
column-gap: 1.5rem;
|
|
3522
3599
|
}
|
|
3523
3600
|
|
|
3601
|
+
.gap-col-1-75,
|
|
3602
|
+
.col-gap-1-75 {
|
|
3603
|
+
column-gap: 1.75rem;
|
|
3604
|
+
}
|
|
3605
|
+
|
|
3524
3606
|
.gap-col-2-5,
|
|
3525
3607
|
.col-gap-2-5 {
|
|
3526
3608
|
column-gap: 2.5rem;
|
|
@@ -3631,11 +3713,21 @@
|
|
|
3631
3713
|
row-gap: 10rem;
|
|
3632
3714
|
}
|
|
3633
3715
|
|
|
3716
|
+
.gap-1-25,
|
|
3717
|
+
.row-gap-1-25 {
|
|
3718
|
+
row-gap: 1.25rem;
|
|
3719
|
+
}
|
|
3720
|
+
|
|
3634
3721
|
.gap-row-1-5,
|
|
3635
3722
|
.row-gap-1-5 {
|
|
3636
3723
|
row-gap: 1.5rem;
|
|
3637
3724
|
}
|
|
3638
3725
|
|
|
3726
|
+
.gap-row-1-75,
|
|
3727
|
+
.row-gap-1-75 {
|
|
3728
|
+
row-gap: 1.75rem;
|
|
3729
|
+
}
|
|
3730
|
+
|
|
3639
3731
|
.gap-row-2-5,
|
|
3640
3732
|
.row-gap-2-5 {
|
|
3641
3733
|
row-gap: 2.5rem;
|
|
@@ -3779,10 +3871,18 @@
|
|
|
3779
3871
|
margin-bottom: 1rem !important;
|
|
3780
3872
|
}
|
|
3781
3873
|
|
|
3874
|
+
.mb-1-25 {
|
|
3875
|
+
margin-bottom: 1.25rem !important;
|
|
3876
|
+
}
|
|
3877
|
+
|
|
3782
3878
|
.mb-1-5 {
|
|
3783
3879
|
margin-bottom: 1.5rem !important;
|
|
3784
3880
|
}
|
|
3785
3881
|
|
|
3882
|
+
.mb-1-75 {
|
|
3883
|
+
margin-bottom: 1.75rem !important;
|
|
3884
|
+
}
|
|
3885
|
+
|
|
3786
3886
|
.mb-2-5 {
|
|
3787
3887
|
margin-bottom: 2.5rem !important;
|
|
3788
3888
|
}
|
|
@@ -3919,10 +4019,18 @@
|
|
|
3919
4019
|
margin-top: 1rem !important;
|
|
3920
4020
|
}
|
|
3921
4021
|
|
|
4022
|
+
.mt-1-25 {
|
|
4023
|
+
margin-top: 1.25rem !important;
|
|
4024
|
+
}
|
|
4025
|
+
|
|
3922
4026
|
.mt-1-5 {
|
|
3923
4027
|
margin-top: 1.5rem !important;
|
|
3924
4028
|
}
|
|
3925
4029
|
|
|
4030
|
+
.mt-1-75 {
|
|
4031
|
+
margin-top: 1.75rem !important;
|
|
4032
|
+
}
|
|
4033
|
+
|
|
3926
4034
|
.mt-2-5 {
|
|
3927
4035
|
margin-top: 2.5rem !important;
|
|
3928
4036
|
}
|
|
@@ -4065,11 +4173,21 @@
|
|
|
4065
4173
|
margin-bottom: 1rem !important;
|
|
4066
4174
|
}
|
|
4067
4175
|
|
|
4176
|
+
.my-1-25 {
|
|
4177
|
+
margin-top: 1.25rem !important;
|
|
4178
|
+
margin-bottom: 1.25rem !important;
|
|
4179
|
+
}
|
|
4180
|
+
|
|
4068
4181
|
.my-1-5 {
|
|
4069
4182
|
margin-top: 1.5rem !important;
|
|
4070
4183
|
margin-bottom: 1.5rem !important;
|
|
4071
4184
|
}
|
|
4072
4185
|
|
|
4186
|
+
.my-1-75 {
|
|
4187
|
+
margin-top: 1.75rem !important;
|
|
4188
|
+
margin-bottom: 1.75rem !important;
|
|
4189
|
+
}
|
|
4190
|
+
|
|
4073
4191
|
.my-2-5 {
|
|
4074
4192
|
margin-top: 2.5rem !important;
|
|
4075
4193
|
margin-bottom: 2.5rem !important;
|
|
@@ -4184,10 +4302,18 @@
|
|
|
4184
4302
|
margin-inline-start: 1rem !important;
|
|
4185
4303
|
}
|
|
4186
4304
|
|
|
4305
|
+
.ms-1-25 {
|
|
4306
|
+
margin-inline-start: 1.25rem !important;
|
|
4307
|
+
}
|
|
4308
|
+
|
|
4187
4309
|
.ms-1-5 {
|
|
4188
4310
|
margin-inline-start: 1.5rem !important;
|
|
4189
4311
|
}
|
|
4190
4312
|
|
|
4313
|
+
.ms-1-75 {
|
|
4314
|
+
margin-inline-start: 1.75rem !important;
|
|
4315
|
+
}
|
|
4316
|
+
|
|
4191
4317
|
.ms-2-5 {
|
|
4192
4318
|
margin-inline-start: 2.5rem !important;
|
|
4193
4319
|
}
|
|
@@ -4284,10 +4410,18 @@
|
|
|
4284
4410
|
margin-inline-end: 1rem !important;
|
|
4285
4411
|
}
|
|
4286
4412
|
|
|
4413
|
+
.me-1-25 {
|
|
4414
|
+
margin-inline-end: 1.25rem !important;
|
|
4415
|
+
}
|
|
4416
|
+
|
|
4287
4417
|
.me-1-5 {
|
|
4288
4418
|
margin-inline-end: 1.5rem !important;
|
|
4289
4419
|
}
|
|
4290
4420
|
|
|
4421
|
+
.me-1-75 {
|
|
4422
|
+
margin-inline-end: 1.75rem !important;
|
|
4423
|
+
}
|
|
4424
|
+
|
|
4291
4425
|
.me-2-5 {
|
|
4292
4426
|
margin-inline-end: 2.5rem !important;
|
|
4293
4427
|
}
|
|
@@ -4391,11 +4525,21 @@
|
|
|
4391
4525
|
margin-inline-end: 1rem !important;
|
|
4392
4526
|
}
|
|
4393
4527
|
|
|
4528
|
+
.mx-1-25 {
|
|
4529
|
+
margin-inline-start: 1.25rem !important;
|
|
4530
|
+
margin-inline-end: 1.25rem !important;
|
|
4531
|
+
}
|
|
4532
|
+
|
|
4394
4533
|
.mx-1-5 {
|
|
4395
4534
|
margin-inline-start: 1.5rem !important;
|
|
4396
4535
|
margin-inline-end: 1.5rem !important;
|
|
4397
4536
|
}
|
|
4398
4537
|
|
|
4538
|
+
.mx-1-75 {
|
|
4539
|
+
margin-inline-start: 1.75rem !important;
|
|
4540
|
+
margin-inline-end: 1.75rem !important;
|
|
4541
|
+
}
|
|
4542
|
+
|
|
4399
4543
|
.mx-2-5 {
|
|
4400
4544
|
margin-inline-start: 2.5rem !important;
|
|
4401
4545
|
margin-inline-end: 2.5rem !important;
|
|
@@ -4510,10 +4654,18 @@
|
|
|
4510
4654
|
margin: 1rem !important;
|
|
4511
4655
|
}
|
|
4512
4656
|
|
|
4657
|
+
.m-1-25 {
|
|
4658
|
+
margin: 1.25rem !important;
|
|
4659
|
+
}
|
|
4660
|
+
|
|
4513
4661
|
.m-1-5 {
|
|
4514
4662
|
margin: 1.5rem !important;
|
|
4515
4663
|
}
|
|
4516
4664
|
|
|
4665
|
+
.m-1-75 {
|
|
4666
|
+
margin: 1.75rem !important;
|
|
4667
|
+
}
|
|
4668
|
+
|
|
4517
4669
|
.m-2-5 {
|
|
4518
4670
|
margin: 2.5rem !important;
|
|
4519
4671
|
}
|
|
@@ -4610,11 +4762,21 @@
|
|
|
4610
4762
|
margin-bottom: -1rem !important;
|
|
4611
4763
|
}
|
|
4612
4764
|
|
|
4765
|
+
.-mb-1-25,
|
|
4766
|
+
.mb--1-25 {
|
|
4767
|
+
margin-bottom: -1.25rem !important;
|
|
4768
|
+
}
|
|
4769
|
+
|
|
4613
4770
|
.-mb-1-5,
|
|
4614
4771
|
.mb--1-5 {
|
|
4615
4772
|
margin-bottom: -1.5rem !important;
|
|
4616
4773
|
}
|
|
4617
4774
|
|
|
4775
|
+
.-mb-1-75,
|
|
4776
|
+
.mb--1-75 {
|
|
4777
|
+
margin-bottom: -1.75rem !important;
|
|
4778
|
+
}
|
|
4779
|
+
|
|
4618
4780
|
.-mb-2-5,
|
|
4619
4781
|
.mb--2-5 {
|
|
4620
4782
|
margin-bottom: -2.5rem !important;
|
|
@@ -4775,11 +4937,21 @@
|
|
|
4775
4937
|
margin-top: -1rem !important;
|
|
4776
4938
|
}
|
|
4777
4939
|
|
|
4940
|
+
.-mt-1-25,
|
|
4941
|
+
.mt--1-25 {
|
|
4942
|
+
margin-top: -1.25rem !important;
|
|
4943
|
+
}
|
|
4944
|
+
|
|
4778
4945
|
.-mt-1-5,
|
|
4779
4946
|
.mt--1-5 {
|
|
4780
4947
|
margin-top: -1.5rem !important;
|
|
4781
4948
|
}
|
|
4782
4949
|
|
|
4950
|
+
.-mt-1-75,
|
|
4951
|
+
.mt--1-75 {
|
|
4952
|
+
margin-top: -1.75rem !important;
|
|
4953
|
+
}
|
|
4954
|
+
|
|
4783
4955
|
.-mt-2-5,
|
|
4784
4956
|
.mt--2-5 {
|
|
4785
4957
|
margin-top: -2.5rem !important;
|
|
@@ -4940,11 +5112,21 @@
|
|
|
4940
5112
|
margin-bottom: -1rem !important;
|
|
4941
5113
|
}
|
|
4942
5114
|
|
|
5115
|
+
.-my-1-25 {
|
|
5116
|
+
margin-top: -1.25rem !important;
|
|
5117
|
+
margin-bottom: -1.25rem !important;
|
|
5118
|
+
}
|
|
5119
|
+
|
|
4943
5120
|
.-my-1-5 {
|
|
4944
5121
|
margin-top: -1.5rem !important;
|
|
4945
5122
|
margin-bottom: -1.5rem !important;
|
|
4946
5123
|
}
|
|
4947
5124
|
|
|
5125
|
+
.-my-1-75 {
|
|
5126
|
+
margin-top: -1.75rem !important;
|
|
5127
|
+
margin-bottom: -1.75rem !important;
|
|
5128
|
+
}
|
|
5129
|
+
|
|
4948
5130
|
.-my-2-5 {
|
|
4949
5131
|
margin-top: -2.5rem !important;
|
|
4950
5132
|
margin-bottom: -2.5rem !important;
|
|
@@ -5055,11 +5237,21 @@
|
|
|
5055
5237
|
margin-inline-start: -1rem !important;
|
|
5056
5238
|
}
|
|
5057
5239
|
|
|
5240
|
+
.-ms-1-25,
|
|
5241
|
+
.ms--1-25 {
|
|
5242
|
+
margin-inline-start: -1.25rem !important;
|
|
5243
|
+
}
|
|
5244
|
+
|
|
5058
5245
|
.-ms-1-5,
|
|
5059
5246
|
.ms--1-5 {
|
|
5060
5247
|
margin-inline-start: -1.5rem !important;
|
|
5061
5248
|
}
|
|
5062
5249
|
|
|
5250
|
+
.-ms-1-75,
|
|
5251
|
+
.ms--1-75 {
|
|
5252
|
+
margin-inline-start: -1.75rem !important;
|
|
5253
|
+
}
|
|
5254
|
+
|
|
5063
5255
|
.-ms-2-5,
|
|
5064
5256
|
.ms--2-5 {
|
|
5065
5257
|
margin-inline-start: -2.5rem !important;
|
|
@@ -5170,11 +5362,21 @@
|
|
|
5170
5362
|
margin-inline-end: -1rem !important;
|
|
5171
5363
|
}
|
|
5172
5364
|
|
|
5365
|
+
.-me-1-25,
|
|
5366
|
+
.me--1-25 {
|
|
5367
|
+
margin-inline-end: -1.25rem !important;
|
|
5368
|
+
}
|
|
5369
|
+
|
|
5173
5370
|
.-me-1-5,
|
|
5174
5371
|
.me--1-5 {
|
|
5175
5372
|
margin-inline-end: -1.5rem !important;
|
|
5176
5373
|
}
|
|
5177
5374
|
|
|
5375
|
+
.-me-1-75,
|
|
5376
|
+
.me--1-75 {
|
|
5377
|
+
margin-inline-end: -1.75rem !important;
|
|
5378
|
+
}
|
|
5379
|
+
|
|
5178
5380
|
.-me-2-5,
|
|
5179
5381
|
.me--2-5 {
|
|
5180
5382
|
margin-inline-end: -2.5rem !important;
|
|
@@ -5278,10 +5480,18 @@
|
|
|
5278
5480
|
padding-bottom: 1rem !important;
|
|
5279
5481
|
}
|
|
5280
5482
|
|
|
5483
|
+
.pb-1-25 {
|
|
5484
|
+
padding-bottom: 1.25rem !important;
|
|
5485
|
+
}
|
|
5486
|
+
|
|
5281
5487
|
.pb-1-5 {
|
|
5282
5488
|
padding-bottom: 1.5rem !important;
|
|
5283
5489
|
}
|
|
5284
5490
|
|
|
5491
|
+
.pb-1-75 {
|
|
5492
|
+
padding-bottom: 1.75rem !important;
|
|
5493
|
+
}
|
|
5494
|
+
|
|
5285
5495
|
.pb-2-5 {
|
|
5286
5496
|
padding-bottom: 2.5rem !important;
|
|
5287
5497
|
}
|
|
@@ -5374,10 +5584,18 @@
|
|
|
5374
5584
|
padding-top: 1rem !important;
|
|
5375
5585
|
}
|
|
5376
5586
|
|
|
5587
|
+
.pt-1-25 {
|
|
5588
|
+
padding-top: 1.25rem !important;
|
|
5589
|
+
}
|
|
5590
|
+
|
|
5377
5591
|
.pt-1-5 {
|
|
5378
5592
|
padding-top: 1.5rem !important;
|
|
5379
5593
|
}
|
|
5380
5594
|
|
|
5595
|
+
.pt-1-75 {
|
|
5596
|
+
padding-top: 1.75rem !important;
|
|
5597
|
+
}
|
|
5598
|
+
|
|
5381
5599
|
.pt-2-5 {
|
|
5382
5600
|
padding-top: 2.5rem !important;
|
|
5383
5601
|
}
|
|
@@ -5470,10 +5688,18 @@
|
|
|
5470
5688
|
padding-inline-start: 1rem !important;
|
|
5471
5689
|
}
|
|
5472
5690
|
|
|
5691
|
+
.ps-1-25 {
|
|
5692
|
+
padding-inline-start: 1.25rem !important;
|
|
5693
|
+
}
|
|
5694
|
+
|
|
5473
5695
|
.ps-1-5 {
|
|
5474
5696
|
padding-inline-start: 1.5rem !important;
|
|
5475
5697
|
}
|
|
5476
5698
|
|
|
5699
|
+
.ps-1-75 {
|
|
5700
|
+
padding-inline-start: 1.75rem !important;
|
|
5701
|
+
}
|
|
5702
|
+
|
|
5477
5703
|
.ps-2-5 {
|
|
5478
5704
|
padding-inline-start: 2.5rem !important;
|
|
5479
5705
|
}
|
|
@@ -5566,10 +5792,18 @@
|
|
|
5566
5792
|
padding-inline-end: 1rem !important;
|
|
5567
5793
|
}
|
|
5568
5794
|
|
|
5795
|
+
.pe-1-25 {
|
|
5796
|
+
padding-inline-end: 1.25rem !important;
|
|
5797
|
+
}
|
|
5798
|
+
|
|
5569
5799
|
.pe-1-5 {
|
|
5570
5800
|
padding-inline-end: 1.5rem !important;
|
|
5571
5801
|
}
|
|
5572
5802
|
|
|
5803
|
+
.pe-1-75 {
|
|
5804
|
+
padding-inline-end: 1.75rem !important;
|
|
5805
|
+
}
|
|
5806
|
+
|
|
5573
5807
|
.pe-2-5 {
|
|
5574
5808
|
padding-inline-end: 2.5rem !important;
|
|
5575
5809
|
}
|
|
@@ -5664,11 +5898,21 @@
|
|
|
5664
5898
|
padding-inline-start: 1rem !important;
|
|
5665
5899
|
}
|
|
5666
5900
|
|
|
5901
|
+
.px-1-25 {
|
|
5902
|
+
padding-inline-start: 1.25rem !important;
|
|
5903
|
+
padding-inline-end: 1.25rem !important;
|
|
5904
|
+
}
|
|
5905
|
+
|
|
5667
5906
|
.px-1-5 {
|
|
5668
5907
|
padding-inline-start: 1.5rem !important;
|
|
5669
5908
|
padding-inline-end: 1.5rem !important;
|
|
5670
5909
|
}
|
|
5671
5910
|
|
|
5911
|
+
.px-1-75 {
|
|
5912
|
+
padding-inline-start: 1.75rem !important;
|
|
5913
|
+
padding-inline-end: 1.75rem !important;
|
|
5914
|
+
}
|
|
5915
|
+
|
|
5672
5916
|
.px-2-5 {
|
|
5673
5917
|
padding-inline-start: 2.5rem !important;
|
|
5674
5918
|
padding-inline-end: 2.5rem !important;
|
|
@@ -5784,11 +6028,21 @@
|
|
|
5784
6028
|
padding-bottom: 1rem !important;
|
|
5785
6029
|
}
|
|
5786
6030
|
|
|
6031
|
+
.py-1-25 {
|
|
6032
|
+
padding-top: 1.25rem !important;
|
|
6033
|
+
padding-bottom: 1.25rem !important;
|
|
6034
|
+
}
|
|
6035
|
+
|
|
5787
6036
|
.py-1-5 {
|
|
5788
6037
|
padding-top: 1.5rem !important;
|
|
5789
6038
|
padding-bottom: 1.5rem !important;
|
|
5790
6039
|
}
|
|
5791
6040
|
|
|
6041
|
+
.py-1-75 {
|
|
6042
|
+
padding-top: 1.75rem !important;
|
|
6043
|
+
padding-bottom: 1.75rem !important;
|
|
6044
|
+
}
|
|
6045
|
+
|
|
5792
6046
|
.py-2-5 {
|
|
5793
6047
|
padding-top: 2.5rem !important;
|
|
5794
6048
|
padding-bottom: 2.5rem !important;
|
|
@@ -5902,10 +6156,18 @@
|
|
|
5902
6156
|
padding: 1rem !important;
|
|
5903
6157
|
}
|
|
5904
6158
|
|
|
6159
|
+
.p-1-25 {
|
|
6160
|
+
padding: 1.25rem !important;
|
|
6161
|
+
}
|
|
6162
|
+
|
|
5905
6163
|
.p-1-5 {
|
|
5906
6164
|
padding: 1.5rem !important;
|
|
5907
6165
|
}
|
|
5908
6166
|
|
|
6167
|
+
.p-1-75 {
|
|
6168
|
+
padding: 1.75rem !important;
|
|
6169
|
+
}
|
|
6170
|
+
|
|
5909
6171
|
.p-2-5 {
|
|
5910
6172
|
padding: 2.5rem !important;
|
|
5911
6173
|
}
|
|
@@ -6108,6 +6370,11 @@
|
|
|
6108
6370
|
align-items: stretch;
|
|
6109
6371
|
}
|
|
6110
6372
|
|
|
6373
|
+
.contents,
|
|
6374
|
+
.display-contents {
|
|
6375
|
+
display: contents !important;
|
|
6376
|
+
}
|
|
6377
|
+
|
|
6111
6378
|
.hide,
|
|
6112
6379
|
.none,
|
|
6113
6380
|
.display-none {
|