@bagelink/vue 1.4.139 → 1.4.145

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.
Files changed (73) hide show
  1. package/dist/components/Btn.vue.d.ts.map +1 -1
  2. package/dist/components/Carousel.vue.d.ts +1 -1
  3. package/dist/components/Modal.vue.d.ts +3 -0
  4. package/dist/components/Modal.vue.d.ts.map +1 -1
  5. package/dist/components/Slider.vue.d.ts +1 -1
  6. package/dist/components/Slider.vue.d.ts.map +1 -1
  7. package/dist/components/analytics/BarChart.vue.d.ts +11 -3
  8. package/dist/components/analytics/BarChart.vue.d.ts.map +1 -1
  9. package/dist/components/analytics/LineChart.vue.d.ts +9 -0
  10. package/dist/components/analytics/LineChart.vue.d.ts.map +1 -1
  11. package/dist/components/analytics/PieChart.vue.d.ts +30 -2
  12. package/dist/components/analytics/PieChart.vue.d.ts.map +1 -1
  13. package/dist/components/form/inputs/RichText/components/EditorToolbar.vue.d.ts +8 -0
  14. package/dist/components/form/inputs/RichText/components/EditorToolbar.vue.d.ts.map +1 -1
  15. package/dist/components/form/inputs/RichText/components/TableGridSelector.vue.d.ts +9 -0
  16. package/dist/components/form/inputs/RichText/components/TableGridSelector.vue.d.ts.map +1 -0
  17. package/dist/components/form/inputs/RichText/composables/useCommands.d.ts.map +1 -1
  18. package/dist/components/form/inputs/RichText/composables/useEditor.d.ts +0 -14
  19. package/dist/components/form/inputs/RichText/composables/useEditor.d.ts.map +1 -1
  20. package/dist/components/form/inputs/RichText/composables/useEditorKeyboard.d.ts.map +1 -1
  21. package/dist/components/form/inputs/RichText/config.d.ts.map +1 -1
  22. package/dist/components/form/inputs/RichText/index.vue.d.ts +15 -15
  23. package/dist/components/form/inputs/RichText/index.vue.d.ts.map +1 -1
  24. package/dist/components/form/inputs/RichText/richTextTypes.d.ts +1 -3
  25. package/dist/components/form/inputs/RichText/richTextTypes.d.ts.map +1 -1
  26. package/dist/components/form/inputs/RichText/utils/commands.d.ts.map +1 -1
  27. package/dist/components/form/inputs/RichText/utils/formatting.d.ts.map +1 -1
  28. package/dist/components/form/inputs/RichText/utils/media-clean.d.ts +2 -0
  29. package/dist/components/form/inputs/RichText/utils/media-clean.d.ts.map +1 -0
  30. package/dist/components/form/inputs/RichText/utils/media.d.ts +4 -4
  31. package/dist/components/form/inputs/RichText/utils/media.d.ts.map +1 -1
  32. package/dist/components/form/inputs/RichText/utils/selection.d.ts.map +1 -1
  33. package/dist/components/form/inputs/RichText/utils/table.d.ts +1 -1
  34. package/dist/components/form/inputs/RichText/utils/table.d.ts.map +1 -1
  35. package/dist/components/index.d.ts +1 -0
  36. package/dist/components/index.d.ts.map +1 -1
  37. package/dist/components/layout/AppContent.vue.d.ts.map +1 -1
  38. package/dist/components/layout/AppLayout.vue.d.ts.map +1 -1
  39. package/dist/components/layout/AppSidebar.vue.d.ts.map +1 -1
  40. package/dist/index.cjs +123 -22
  41. package/dist/index.mjs +123 -22
  42. package/dist/style.css +1 -1
  43. package/package.json +1 -1
  44. package/src/components/Btn.vue +50 -42
  45. package/src/components/Modal.vue +49 -50
  46. package/src/components/analytics/BarChart.vue +118 -7
  47. package/src/components/analytics/KpiCard.vue +2 -2
  48. package/src/components/analytics/LineChart.vue +189 -105
  49. package/src/components/analytics/PieChart.vue +392 -49
  50. package/src/components/dataTable/DataTable.vue +1 -1
  51. package/src/components/form/inputs/RichText/CheckList.md +23 -0
  52. package/src/components/form/inputs/RichText/components/EditorToolbar.vue +243 -27
  53. package/src/components/form/inputs/RichText/components/TableGridSelector.vue +94 -0
  54. package/src/components/form/inputs/RichText/composables/useCommands.ts +45 -0
  55. package/src/components/form/inputs/RichText/composables/useEditor.ts +13 -10
  56. package/src/components/form/inputs/RichText/composables/useEditorKeyboard.ts +3 -128
  57. package/src/components/form/inputs/RichText/config.ts +33 -10
  58. package/src/components/form/inputs/RichText/editor.css +300 -33
  59. package/src/components/form/inputs/RichText/index.vue +3271 -130
  60. package/src/components/form/inputs/RichText/richTextTypes.ts +7 -3
  61. package/src/components/form/inputs/RichText/utils/commands.ts +851 -90
  62. package/src/components/form/inputs/RichText/utils/formatting.ts +17 -15
  63. package/src/components/form/inputs/RichText/utils/media-clean.ts +0 -0
  64. package/src/components/form/inputs/RichText/utils/media.ts +133 -67
  65. package/src/components/form/inputs/RichText/utils/selection.ts +40 -11
  66. package/src/components/form/inputs/RichText/utils/table.ts +1 -1
  67. package/src/components/index.ts +1 -0
  68. package/src/components/layout/AppContent.vue +26 -26
  69. package/src/components/layout/AppLayout.vue +21 -3
  70. package/src/components/layout/AppSidebar.vue +5 -2
  71. package/src/styles/layout.css +267 -0
  72. package/src/styles/mobilLayout.css +266 -0
  73. package/src/styles/modal.css +3 -17
@@ -19,6 +19,11 @@
19
19
  display: flex !important;
20
20
  }
21
21
 
22
+ .m_contents,
23
+ .m_display-contents {
24
+ display: contents !important;
25
+ }
26
+
22
27
  .inline-flex {
23
28
  display: inline-flex !important;
24
29
  }
@@ -2682,11 +2687,18 @@
2682
2687
  gap: 20rem;
2683
2688
  }
2684
2689
 
2690
+ .m_gap-1-25 {
2691
+ gap: 1.25rem;
2692
+ }
2685
2693
 
2686
2694
  .m_gap-1-5 {
2687
2695
  gap: 1.5rem;
2688
2696
  }
2689
2697
 
2698
+ .m_gap-1-75 {
2699
+ gap: 1.75rem;
2700
+ }
2701
+
2690
2702
  .m_gap-2-5 {
2691
2703
  gap: 2.5rem;
2692
2704
  }
@@ -2789,11 +2801,21 @@
2789
2801
  column-gap: 10rem;
2790
2802
  }
2791
2803
 
2804
+ .m_gap-col-1-25,
2805
+ .col-gap-1-25 {
2806
+ column-gap: 1.25rem;
2807
+ }
2808
+
2792
2809
  .m_gap-col-1-5,
2793
2810
  .col-gap-1-5 {
2794
2811
  column-gap: 1.5rem;
2795
2812
  }
2796
2813
 
2814
+ .m_gap-col-1-75,
2815
+ .col-gap-1-75 {
2816
+ column-gap: 1.75rem;
2817
+ }
2818
+
2797
2819
  .m_gap-col-2-5,
2798
2820
  .col-gap-2-5 {
2799
2821
  column-gap: 2.5rem;
@@ -2904,11 +2926,21 @@
2904
2926
  row-gap: 10rem;
2905
2927
  }
2906
2928
 
2929
+ .m_gap-row-1-25,
2930
+ .row-gap-1-25 {
2931
+ row-gap: 1.25rem;
2932
+ }
2933
+
2907
2934
  .m_gap-row-1-5,
2908
2935
  .row-gap-1-5 {
2909
2936
  row-gap: 1.5rem;
2910
2937
  }
2911
2938
 
2939
+ .m_gap-row-1-75,
2940
+ .row-gap-1-75 {
2941
+ row-gap: 1.75rem;
2942
+ }
2943
+
2912
2944
  .m_gap-row-2-5,
2913
2945
  .row-gap-2-5 {
2914
2946
  row-gap: 2.5rem;
@@ -3052,10 +3084,18 @@
3052
3084
  margin-bottom: 1rem !important;
3053
3085
  }
3054
3086
 
3087
+ .m_mb-1-25 {
3088
+ margin-bottom: 1.25rem !important;
3089
+ }
3090
+
3055
3091
  .m_mb-1-5 {
3056
3092
  margin-bottom: 1.5rem !important;
3057
3093
  }
3058
3094
 
3095
+ .m_mb-1-75 {
3096
+ margin-bottom: 1.75rem !important;
3097
+ }
3098
+
3059
3099
  .m_mb-2-5 {
3060
3100
  margin-bottom: 2.5rem !important;
3061
3101
  }
@@ -3193,10 +3233,18 @@
3193
3233
  margin-top: 1rem !important;
3194
3234
  }
3195
3235
 
3236
+ .m_mt-1-25 {
3237
+ margin-top: 1.25rem !important;
3238
+ }
3239
+
3196
3240
  .m_mt-1-5 {
3197
3241
  margin-top: 1.5rem !important;
3198
3242
  }
3199
3243
 
3244
+ .m_mt-1-75 {
3245
+ margin-top: 1.75rem !important;
3246
+ }
3247
+
3200
3248
  .m_mt-2-5 {
3201
3249
  margin-top: 2.5rem !important;
3202
3250
  }
@@ -3341,11 +3389,21 @@
3341
3389
  margin-bottom: 1rem !important;
3342
3390
  }
3343
3391
 
3392
+ .m_my-1-25 {
3393
+ margin-top: 1.25rem !important;
3394
+ margin-bottom: 1.25rem !important;
3395
+ }
3396
+
3344
3397
  .m_my-1-5 {
3345
3398
  margin-top: 1.5rem !important;
3346
3399
  margin-bottom: 1.5rem !important;
3347
3400
  }
3348
3401
 
3402
+ .m_my-1-75 {
3403
+ margin-top: 1.75rem !important;
3404
+ margin-bottom: 1.75rem !important;
3405
+ }
3406
+
3349
3407
  .m_my-2-5 {
3350
3408
  margin-top: 2.5rem !important;
3351
3409
  margin-bottom: 2.5rem !important;
@@ -3461,10 +3519,18 @@
3461
3519
  margin-inline-start: 1rem !important;
3462
3520
  }
3463
3521
 
3522
+ .m_ms-1-25 {
3523
+ margin-inline-start: 1.25rem !important;
3524
+ }
3525
+
3464
3526
  .m_ms-1-5 {
3465
3527
  margin-inline-start: 1.5rem !important;
3466
3528
  }
3467
3529
 
3530
+ .m_ms-1-75 {
3531
+ margin-inline-start: 1.75rem !important;
3532
+ }
3533
+
3468
3534
  .m_ms-2-5 {
3469
3535
  margin-inline-start: 2.5rem !important;
3470
3536
  }
@@ -3562,10 +3628,18 @@
3562
3628
  margin-inline-end: 1rem !important;
3563
3629
  }
3564
3630
 
3631
+ .m_me-1-25 {
3632
+ margin-inline-end: 1.25rem !important;
3633
+ }
3634
+
3565
3635
  .m_me-1-5 {
3566
3636
  margin-inline-end: 1.5rem !important;
3567
3637
  }
3568
3638
 
3639
+ .m_me-1-75 {
3640
+ margin-inline-end: 1.75rem !important;
3641
+ }
3642
+
3569
3643
  .m_me-2-5 {
3570
3644
  margin-inline-end: 2.5rem !important;
3571
3645
  }
@@ -3669,11 +3743,21 @@
3669
3743
  margin-inline-end: 1rem !important;
3670
3744
  }
3671
3745
 
3746
+ .m_mx-1-25 {
3747
+ margin-inline-start: 1.25rem !important;
3748
+ margin-inline-end: 1.25rem !important;
3749
+ }
3750
+
3672
3751
  .m_mx-1-5 {
3673
3752
  margin-inline-start: 1.5rem !important;
3674
3753
  margin-inline-end: 1.5rem !important;
3675
3754
  }
3676
3755
 
3756
+ .m_mx-1-75 {
3757
+ margin-inline-start: 1.75rem !important;
3758
+ margin-inline-end: 1.75rem !important;
3759
+ }
3760
+
3677
3761
  .m_mx-2-5 {
3678
3762
  margin-inline-start: 2.5rem !important;
3679
3763
  margin-inline-end: 2.5rem !important;
@@ -3788,10 +3872,18 @@
3788
3872
  margin: 1rem !important;
3789
3873
  }
3790
3874
 
3875
+ .m_m-1-25 {
3876
+ margin: 1.25rem !important;
3877
+ }
3878
+
3791
3879
  .m_m-1-5 {
3792
3880
  margin: 1.5rem !important;
3793
3881
  }
3794
3882
 
3883
+ .m_m-1-75 {
3884
+ margin: 1.75rem !important;
3885
+ }
3886
+
3795
3887
  .m_m-2-5 {
3796
3888
  margin: 2.5rem !important;
3797
3889
  }
@@ -3884,11 +3976,21 @@
3884
3976
  margin-bottom: -1rem !important;
3885
3977
  }
3886
3978
 
3979
+ .m_-mb-1-25,
3980
+ .m_mb--1-25 {
3981
+ margin-bottom: -1.25rem !important;
3982
+ }
3983
+
3887
3984
  .m_-mb-1-5,
3888
3985
  .m_mb--1-5 {
3889
3986
  margin-bottom: -1.5rem !important;
3890
3987
  }
3891
3988
 
3989
+ .m_-mb-1-75,
3990
+ .m_mb--1-75 {
3991
+ margin-bottom: -1.75rem !important;
3992
+ }
3993
+
3892
3994
  .m_-mb-2-5,
3893
3995
  .m_mb--2-5 {
3894
3996
  margin-bottom: -2.5rem !important;
@@ -4049,11 +4151,21 @@
4049
4151
  margin-top: -1rem !important;
4050
4152
  }
4051
4153
 
4154
+ .m_-mt-1-25,
4155
+ .m_mt--1-25 {
4156
+ margin-top: -1.25rem !important;
4157
+ }
4158
+
4052
4159
  .m_-mt-1-5,
4053
4160
  .m_mt--1-5 {
4054
4161
  margin-top: -1.5rem !important;
4055
4162
  }
4056
4163
 
4164
+ .m_-mt-1-75,
4165
+ .m_mt--1-75 {
4166
+ margin-top: -1.75rem !important;
4167
+ }
4168
+
4057
4169
  .m_-mt-2-5,
4058
4170
  .m_mt--2-5 {
4059
4171
  margin-top: -2.5rem !important;
@@ -4215,11 +4327,21 @@
4215
4327
  margin-bottom: -1rem !important;
4216
4328
  }
4217
4329
 
4330
+ .m_-my-1-25 {
4331
+ margin-top: -1.25rem !important;
4332
+ margin-bottom: -1.25rem !important;
4333
+ }
4334
+
4218
4335
  .m_-my-1-5 {
4219
4336
  margin-top: -1.5rem !important;
4220
4337
  margin-bottom: -1.5rem !important;
4221
4338
  }
4222
4339
 
4340
+ .m_-my-1-75 {
4341
+ margin-top: -1.75rem !important;
4342
+ margin-bottom: -1.75rem !important;
4343
+ }
4344
+
4223
4345
  .m_-my-2-5 {
4224
4346
  margin-top: -2.5rem !important;
4225
4347
  margin-bottom: -2.5rem !important;
@@ -4330,11 +4452,21 @@
4330
4452
  margin-inline-start: -1rem !important;
4331
4453
  }
4332
4454
 
4455
+ .m_-ms-1-25,
4456
+ .m_ms--1-25 {
4457
+ margin-inline-start: -1.25rem !important;
4458
+ }
4459
+
4333
4460
  .m_-ms-1-5,
4334
4461
  .m_ms--1-5 {
4335
4462
  margin-inline-start: -1.5rem !important;
4336
4463
  }
4337
4464
 
4465
+ .m_-ms-1-75,
4466
+ .m_ms--1-75 {
4467
+ margin-inline-start: -1.75rem !important;
4468
+ }
4469
+
4338
4470
  .m_-ms-2-5,
4339
4471
  .m_ms--2-5 {
4340
4472
  margin-inline-start: -2.5rem !important;
@@ -4446,11 +4578,21 @@
4446
4578
  margin-inline-end: -1rem !important;
4447
4579
  }
4448
4580
 
4581
+ .m_-me-1-25,
4582
+ .m_me--1-25 {
4583
+ margin-inline-end: -1.25rem !important;
4584
+ }
4585
+
4449
4586
  .m_-me-1-5,
4450
4587
  .m_me--1-5 {
4451
4588
  margin-inline-end: -1.5rem !important;
4452
4589
  }
4453
4590
 
4591
+ .m_-me-1-75,
4592
+ .m_me--1-75 {
4593
+ margin-inline-end: -1.75rem !important;
4594
+ }
4595
+
4454
4596
  .m_-me-2-5,
4455
4597
  .m_me--2-5 {
4456
4598
  margin-inline-end: -2.5rem !important;
@@ -4554,10 +4696,18 @@
4554
4696
  padding-bottom: 1rem !important;
4555
4697
  }
4556
4698
 
4699
+ .m_pb-1-25 {
4700
+ padding-bottom: 1.25rem !important;
4701
+ }
4702
+
4557
4703
  .m_pb-1-5 {
4558
4704
  padding-bottom: 1.5rem !important;
4559
4705
  }
4560
4706
 
4707
+ .m_pb-1-75 {
4708
+ padding-bottom: 1.75rem !important;
4709
+ }
4710
+
4561
4711
  .m_pb-2-5 {
4562
4712
  padding-bottom: 2.5rem !important;
4563
4713
  }
@@ -4650,10 +4800,18 @@
4650
4800
  padding-top: 1rem !important;
4651
4801
  }
4652
4802
 
4803
+ .m_pt-1-25 {
4804
+ padding-top: 1.25rem !important;
4805
+ }
4806
+
4653
4807
  .m_pt-1-5 {
4654
4808
  padding-top: 1.5rem !important;
4655
4809
  }
4656
4810
 
4811
+ .m_pt-1-75 {
4812
+ padding-top: 1.75rem !important;
4813
+ }
4814
+
4657
4815
  .m_pt-2-5 {
4658
4816
  padding-top: 2.5rem !important;
4659
4817
  }
@@ -4747,10 +4905,18 @@
4747
4905
  padding-inline-start: 1rem !important;
4748
4906
  }
4749
4907
 
4908
+ .m_ps-1-25 {
4909
+ padding-inline-start: 1.25rem !important;
4910
+ }
4911
+
4750
4912
  .m_ps-1-5 {
4751
4913
  padding-inline-start: 1.5rem !important;
4752
4914
  }
4753
4915
 
4916
+ .m_ps-1-75 {
4917
+ padding-inline-start: 1.75rem !important;
4918
+ }
4919
+
4754
4920
  .m_ps-2-5 {
4755
4921
  padding-inline-start: 2.5rem !important;
4756
4922
  }
@@ -4843,10 +5009,18 @@
4843
5009
  padding-inline-end: 1rem !important;
4844
5010
  }
4845
5011
 
5012
+ .m_pe-1-25 {
5013
+ padding-inline-end: 1.25rem !important;
5014
+ }
5015
+
4846
5016
  .m_pe-1-5 {
4847
5017
  padding-inline-end: 1.5rem !important;
4848
5018
  }
4849
5019
 
5020
+ .m_pe-1-75 {
5021
+ padding-inline-end: 1.75rem !important;
5022
+ }
5023
+
4850
5024
  .m_pe-2-5 {
4851
5025
  padding-inline-end: 2.5rem !important;
4852
5026
  }
@@ -4942,11 +5116,21 @@
4942
5116
  padding-inline-start: 1rem !important;
4943
5117
  }
4944
5118
 
5119
+ .m_px-1-25 {
5120
+ padding-inline-start: 1.25rem !important;
5121
+ padding-inline-end: 1.25rem !important;
5122
+ }
5123
+
4945
5124
  .m_px-1-5 {
4946
5125
  padding-inline-start: 1.5rem !important;
4947
5126
  padding-inline-end: 1.5rem !important;
4948
5127
  }
4949
5128
 
5129
+ .m_px-1-75 {
5130
+ padding-inline-start: 1.75rem !important;
5131
+ padding-inline-end: 1.75rem !important;
5132
+ }
5133
+
4950
5134
  .m_px-2-5 {
4951
5135
  padding-inline-start: 2.5rem !important;
4952
5136
  padding-inline-end: 2.5rem !important;
@@ -5062,11 +5246,21 @@
5062
5246
  padding-bottom: 1rem !important;
5063
5247
  }
5064
5248
 
5249
+ .m_py-1-25 {
5250
+ padding-top: 1.25rem !important;
5251
+ padding-bottom: 1.25rem !important;
5252
+ }
5253
+
5065
5254
  .m_py-1-5 {
5066
5255
  padding-top: 1.5rem !important;
5067
5256
  padding-bottom: 1.5rem !important;
5068
5257
  }
5069
5258
 
5259
+ .m_py-1-75 {
5260
+ padding-top: 1.75rem !important;
5261
+ padding-bottom: 1.75rem !important;
5262
+ }
5263
+
5070
5264
  .m_py-2-5 {
5071
5265
  padding-top: 2.5rem !important;
5072
5266
  padding-bottom: 2.5rem !important;
@@ -5180,10 +5374,18 @@
5180
5374
  padding: 1rem !important;
5181
5375
  }
5182
5376
 
5377
+ .m_p-1-25 {
5378
+ padding: 1.25rem !important;
5379
+ }
5380
+
5183
5381
  .m_p-1-5 {
5184
5382
  padding: 1.5rem !important;
5185
5383
  }
5186
5384
 
5385
+ .m_p-1-75 {
5386
+ padding: 1.75rem !important;
5387
+ }
5388
+
5187
5389
  .m_p-2-5 {
5188
5390
  padding: 2.5rem !important;
5189
5391
  }
@@ -5864,10 +6066,18 @@
5864
6066
  inset-inline-start: 1rem !important;
5865
6067
  }
5866
6068
 
6069
+ .m_start-1-25 {
6070
+ inset-inline-start: 1.25rem !important;
6071
+ }
6072
+
5867
6073
  .m_start-1-5 {
5868
6074
  inset-inline-start: 1.5rem !important;
5869
6075
  }
5870
6076
 
6077
+ .m_start-1-75 {
6078
+ inset-inline-start: 1.75rem !important;
6079
+ }
6080
+
5871
6081
  .m_start-2 {
5872
6082
  inset-inline-start: 2rem !important;
5873
6083
  }
@@ -5952,10 +6162,18 @@
5952
6162
  inset-inline-start: -1rem !important;
5953
6163
  }
5954
6164
 
6165
+ .m_-start-1-25 {
6166
+ inset-inline-start: -1.25rem !important;
6167
+ }
6168
+
5955
6169
  .m_-start-1-5 {
5956
6170
  inset-inline-start: -1.5rem !important;
5957
6171
  }
5958
6172
 
6173
+ .m_-start-1-75 {
6174
+ inset-inline-start: -1.75rem !important;
6175
+ }
6176
+
5959
6177
  .m_-start-2 {
5960
6178
  inset-inline-start: -2rem !important;
5961
6179
  }
@@ -6050,10 +6268,18 @@
6050
6268
  inset-inline-end: 1rem !important;
6051
6269
  }
6052
6270
 
6271
+ .m_end-1-25 {
6272
+ inset-inline-end: 1.25rem !important;
6273
+ }
6274
+
6053
6275
  .m_end-1-5 {
6054
6276
  inset-inline-end: 1.5rem !important;
6055
6277
  }
6056
6278
 
6279
+ .m_end-1-75 {
6280
+ inset-inline-end: 1.75rem !important;
6281
+ }
6282
+
6057
6283
  .m_end-2 {
6058
6284
  inset-inline-end: 2rem !important;
6059
6285
  }
@@ -6138,10 +6364,18 @@
6138
6364
  inset-inline-end: -1rem !important;
6139
6365
  }
6140
6366
 
6367
+ .m_-end-1-25 {
6368
+ inset-inline-end: -1.25rem !important;
6369
+ }
6370
+
6141
6371
  .m_-end-1-5 {
6142
6372
  inset-inline-end: -1.5rem !important;
6143
6373
  }
6144
6374
 
6375
+ .m_-end-1-75 {
6376
+ inset-inline-end: -1.75rem !important;
6377
+ }
6378
+
6145
6379
  .m_-end-2 {
6146
6380
  inset-inline-end: -2rem !important;
6147
6381
  }
@@ -6235,10 +6469,18 @@
6235
6469
  top: 1rem !important;
6236
6470
  }
6237
6471
 
6472
+ .m_top-1-25 {
6473
+ top: 1.25rem !important;
6474
+ }
6475
+
6238
6476
  .m_top-1-5 {
6239
6477
  top: 1.5rem !important;
6240
6478
  }
6241
6479
 
6480
+ .m_top-1-75 {
6481
+ top: 1.75rem !important;
6482
+ }
6483
+
6242
6484
  .m_top-2 {
6243
6485
  top: 2rem !important;
6244
6486
  }
@@ -6323,10 +6565,18 @@
6323
6565
  top: -1rem !important;
6324
6566
  }
6325
6567
 
6568
+ .m_-top-1-25 {
6569
+ top: -1.25rem !important;
6570
+ }
6571
+
6326
6572
  .m_-top-1-5 {
6327
6573
  top: -1.5rem !important;
6328
6574
  }
6329
6575
 
6576
+ .m_-top-1-75 {
6577
+ top: -1.75rem !important;
6578
+ }
6579
+
6330
6580
  .m_-top-2 {
6331
6581
  top: -2rem !important;
6332
6582
  }
@@ -6424,10 +6674,18 @@
6424
6674
  bottom: 1rem !important;
6425
6675
  }
6426
6676
 
6677
+ .m_bottom-1-25 {
6678
+ bottom: 1.25rem !important;
6679
+ }
6680
+
6427
6681
  .m_bottom-1-5 {
6428
6682
  bottom: 1.5rem !important;
6429
6683
  }
6430
6684
 
6685
+ .m_bottom-1-75 {
6686
+ bottom: 1.75rem !important;
6687
+ }
6688
+
6431
6689
  .m_bottom-2 {
6432
6690
  bottom: 2rem !important;
6433
6691
  }
@@ -6512,10 +6770,18 @@
6512
6770
  bottom: -1rem !important;
6513
6771
  }
6514
6772
 
6773
+ .m_-bottom-1-25 {
6774
+ bottom: -1.25rem !important;
6775
+ }
6776
+
6515
6777
  .m_-bottom-1-5 {
6516
6778
  bottom: -1.5rem !important;
6517
6779
  }
6518
6780
 
6781
+ .m_-bottom-1-75 {
6782
+ bottom: -1.75rem !important;
6783
+ }
6784
+
6519
6785
  .m_-bottom-2 {
6520
6786
  bottom: -2rem !important;
6521
6787
  }
@@ -1,9 +1,6 @@
1
1
  .bg-dark {
2
2
  position: fixed;
3
- top: 0;
4
- right: 0;
5
- left: 0;
6
- bottom: 0;
3
+ inset: 0;
7
4
  background-color: var(--bgl-dark-bg);
8
5
  pointer-events: none;
9
6
  opacity: 0;
@@ -24,8 +21,6 @@
24
21
  .modal {
25
22
  width: 96%;
26
23
  max-width: 720px;
27
- /* transform: scale(0.5); */
28
- /* opacity: 0; */
29
24
  transition: all ease-in-out 0.18s;
30
25
  margin-left: auto;
31
26
  margin-right: auto;
@@ -54,16 +49,7 @@
54
49
  }
55
50
 
56
51
  .tool-bar {
57
- margin: -1rem -1rem 1rem;
58
- display: flex;
59
- justify-content: space-between;
60
- position: -webkit-sticky;
61
- position: sticky;
62
- padding-top: 0rem;
63
- top: 0rem;
64
- z-index: 3;
65
52
  background: var(--bgl-popup-bg);
66
- /* border-radius: var(--card-border-radius); */
67
53
  }
68
54
 
69
55
  .modal-size {
@@ -120,11 +106,11 @@ body:has(.bg-dark.is-active) {
120
106
  }
121
107
 
122
108
  @media screen and (max-width: 910px) {
123
- .tool-bar {
109
+ /* .tool-bar {
124
110
  margin: -1rem 0rem 1rem;
125
111
  padding-bottom: 1rem;
126
112
  align-items: center;
127
- }
113
+ } */
128
114
 
129
115
  .is-active.is-side .modal {
130
116
  margin-inline-end: 2%;