vuetify 3.3.15 → 3.4.0-alpha.1
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/json/attributes.json +111 -11
- package/dist/json/importMap.json +4 -4
- package/dist/json/tags.json +25 -0
- package/dist/json/web-types.json +263 -18
- package/dist/vuetify-labs.css +1558 -518
- package/dist/vuetify-labs.d.ts +499 -179
- package/dist/vuetify-labs.esm.js +264 -73
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +263 -72
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1080 -40
- package/dist/vuetify.d.ts +484 -170
- package/dist/vuetify.esm.js +264 -73
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +263 -72
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +914 -895
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/index.d.mts +20 -14
- package/lib/components/VAvatar/VAvatar.mjs +2 -1
- package/lib/components/VAvatar/VAvatar.mjs.map +1 -1
- package/lib/components/VAvatar/index.d.mts +6 -0
- package/lib/components/VBanner/VBanner.mjs +5 -3
- package/lib/components/VBanner/VBanner.mjs.map +1 -1
- package/lib/components/VBanner/index.d.mts +10 -0
- package/lib/components/VBreadcrumbs/VBreadcrumbs.mjs +9 -4
- package/lib/components/VBreadcrumbs/VBreadcrumbs.mjs.map +1 -1
- package/lib/components/VBreadcrumbs/index.d.mts +28 -2
- package/lib/components/VCarousel/index.d.mts +26 -0
- package/lib/components/VCheckbox/index.d.mts +12 -0
- package/lib/components/VColorPicker/VColorPickerPreview.css +5 -0
- package/lib/components/VColorPicker/VColorPickerPreview.mjs +28 -2
- package/lib/components/VColorPicker/VColorPickerPreview.mjs.map +1 -1
- package/lib/components/VColorPicker/VColorPickerPreview.sass +4 -0
- package/lib/components/VColorPicker/_variables.scss +1 -0
- package/lib/components/VCombobox/index.d.mts +20 -14
- package/lib/components/VDialog/index.d.mts +41 -20
- package/lib/components/VField/index.d.mts +4 -4
- package/lib/components/VFileInput/index.d.mts +4 -4
- package/lib/components/VImg/VImg.mjs +13 -1
- package/lib/components/VImg/VImg.mjs.map +1 -1
- package/lib/components/VImg/index.d.mts +26 -0
- package/lib/components/VList/index.d.mts +12 -12
- package/lib/components/VMenu/index.d.mts +41 -20
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs +5 -3
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs.map +1 -1
- package/lib/components/VNavigationDrawer/index.d.mts +10 -0
- package/lib/components/VOverlay/VOverlay.mjs +9 -4
- package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
- package/lib/components/VOverlay/index.d.mts +17 -8
- package/lib/components/VOverlay/locationStrategies.mjs +9 -9
- package/lib/components/VOverlay/locationStrategies.mjs.map +1 -1
- package/lib/components/VOverlay/scrollStrategies.mjs +3 -3
- package/lib/components/VOverlay/scrollStrategies.mjs.map +1 -1
- package/lib/components/VOverlay/useActivator.mjs +50 -21
- package/lib/components/VOverlay/useActivator.mjs.map +1 -1
- package/lib/components/VRadio/index.d.mts +6 -0
- package/lib/components/VRangeSlider/VRangeSlider.mjs +4 -2
- package/lib/components/VRangeSlider/VRangeSlider.mjs.map +1 -1
- package/lib/components/VRangeSlider/index.d.mts +14 -0
- package/lib/components/VSelect/index.d.mts +20 -14
- package/lib/components/VSelectionControl/VSelectionControl.mjs +3 -1
- package/lib/components/VSelectionControl/VSelectionControl.mjs.map +1 -1
- package/lib/components/VSelectionControl/index.d.mts +6 -0
- package/lib/components/VSlideGroup/VSlideGroup.mjs +5 -3
- package/lib/components/VSlideGroup/VSlideGroup.mjs.map +1 -1
- package/lib/components/VSlideGroup/index.d.mts +10 -0
- package/lib/components/VSlider/VSlider.mjs +2 -1
- package/lib/components/VSlider/VSlider.mjs.map +1 -1
- package/lib/components/VSlider/index.d.mts +14 -0
- package/lib/components/VSlider/slider.mjs +5 -1
- package/lib/components/VSlider/slider.mjs.map +1 -1
- package/lib/components/VSnackbar/VSnackbar.css +9 -0
- package/lib/components/VSnackbar/VSnackbar.mjs +65 -6
- package/lib/components/VSnackbar/VSnackbar.mjs.map +1 -1
- package/lib/components/VSnackbar/VSnackbar.sass +9 -0
- package/lib/components/VSnackbar/index.d.mts +52 -25
- package/lib/components/VSwitch/index.d.mts +6 -0
- package/lib/components/VTabs/index.d.mts +10 -0
- package/lib/components/VTextField/index.d.mts +16 -16
- package/lib/components/VTextarea/index.d.mts +4 -4
- package/lib/components/VTooltip/index.d.mts +41 -20
- package/lib/components/index.d.mts +455 -168
- package/lib/components/transitions/dialog-transition.mjs +4 -3
- package/lib/components/transitions/dialog-transition.mjs.map +1 -1
- package/lib/components/transitions/index.d.mts +6 -6
- package/lib/composables/directiveComponent.mjs +69 -0
- package/lib/composables/directiveComponent.mjs.map +1 -0
- package/lib/composables/display.mjs +23 -3
- package/lib/composables/display.mjs.map +1 -1
- package/lib/composables/resizeObserver.mjs.map +1 -1
- package/lib/composables/theme.mjs +7 -7
- package/lib/composables/theme.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/entry-bundler.mjs.map +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/framework.mjs.map +1 -1
- package/lib/iconsets/fa.mjs +2 -1
- package/lib/iconsets/fa.mjs.map +1 -1
- package/lib/iconsets/fa4.mjs +2 -1
- package/lib/iconsets/fa4.mjs.map +1 -1
- package/lib/iconsets/md.mjs +2 -1
- package/lib/iconsets/md.mjs.map +1 -1
- package/lib/iconsets/mdi-svg.mjs +2 -1
- package/lib/iconsets/mdi-svg.mjs.map +1 -1
- package/lib/iconsets/mdi.mjs +2 -1
- package/lib/iconsets/mdi.mjs.map +1 -1
- package/lib/index.d.mts +33 -2
- package/lib/labs/VBottomSheet/index.d.mts +14 -8
- package/lib/labs/VDateInput/index.d.mts +4 -4
- package/lib/labs/VOtpInput/index.d.mts +4 -4
- package/lib/labs/components.d.mts +18 -12
- package/lib/styles/main.css +1026 -0
- package/lib/styles/settings/_utilities.scss +20 -0
- package/lib/util/box.mjs +12 -0
- package/lib/util/box.mjs.map +1 -1
- package/lib/util/globals.mjs +1 -0
- package/lib/util/globals.mjs.map +1 -1
- package/lib/util/helpers.mjs +9 -1
- package/lib/util/helpers.mjs.map +1 -1
- package/package.json +2 -2
package/dist/vuetify-labs.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.
|
|
2
|
+
* Vuetify v3.4.0-alpha.1
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -3686,6 +3686,222 @@ html.overflow-y-hidden {
|
|
|
3686
3686
|
order: 13 !important;
|
|
3687
3687
|
}
|
|
3688
3688
|
|
|
3689
|
+
.ga-0 {
|
|
3690
|
+
gap: 0px !important;
|
|
3691
|
+
}
|
|
3692
|
+
|
|
3693
|
+
.ga-1 {
|
|
3694
|
+
gap: 4px !important;
|
|
3695
|
+
}
|
|
3696
|
+
|
|
3697
|
+
.ga-2 {
|
|
3698
|
+
gap: 8px !important;
|
|
3699
|
+
}
|
|
3700
|
+
|
|
3701
|
+
.ga-3 {
|
|
3702
|
+
gap: 12px !important;
|
|
3703
|
+
}
|
|
3704
|
+
|
|
3705
|
+
.ga-4 {
|
|
3706
|
+
gap: 16px !important;
|
|
3707
|
+
}
|
|
3708
|
+
|
|
3709
|
+
.ga-5 {
|
|
3710
|
+
gap: 20px !important;
|
|
3711
|
+
}
|
|
3712
|
+
|
|
3713
|
+
.ga-6 {
|
|
3714
|
+
gap: 24px !important;
|
|
3715
|
+
}
|
|
3716
|
+
|
|
3717
|
+
.ga-7 {
|
|
3718
|
+
gap: 28px !important;
|
|
3719
|
+
}
|
|
3720
|
+
|
|
3721
|
+
.ga-8 {
|
|
3722
|
+
gap: 32px !important;
|
|
3723
|
+
}
|
|
3724
|
+
|
|
3725
|
+
.ga-9 {
|
|
3726
|
+
gap: 36px !important;
|
|
3727
|
+
}
|
|
3728
|
+
|
|
3729
|
+
.ga-10 {
|
|
3730
|
+
gap: 40px !important;
|
|
3731
|
+
}
|
|
3732
|
+
|
|
3733
|
+
.ga-11 {
|
|
3734
|
+
gap: 44px !important;
|
|
3735
|
+
}
|
|
3736
|
+
|
|
3737
|
+
.ga-12 {
|
|
3738
|
+
gap: 48px !important;
|
|
3739
|
+
}
|
|
3740
|
+
|
|
3741
|
+
.ga-13 {
|
|
3742
|
+
gap: 52px !important;
|
|
3743
|
+
}
|
|
3744
|
+
|
|
3745
|
+
.ga-14 {
|
|
3746
|
+
gap: 56px !important;
|
|
3747
|
+
}
|
|
3748
|
+
|
|
3749
|
+
.ga-15 {
|
|
3750
|
+
gap: 60px !important;
|
|
3751
|
+
}
|
|
3752
|
+
|
|
3753
|
+
.ga-16 {
|
|
3754
|
+
gap: 64px !important;
|
|
3755
|
+
}
|
|
3756
|
+
|
|
3757
|
+
.ga-auto {
|
|
3758
|
+
gap: auto !important;
|
|
3759
|
+
}
|
|
3760
|
+
|
|
3761
|
+
.gr-0 {
|
|
3762
|
+
row-gap: 0px !important;
|
|
3763
|
+
}
|
|
3764
|
+
|
|
3765
|
+
.gr-1 {
|
|
3766
|
+
row-gap: 4px !important;
|
|
3767
|
+
}
|
|
3768
|
+
|
|
3769
|
+
.gr-2 {
|
|
3770
|
+
row-gap: 8px !important;
|
|
3771
|
+
}
|
|
3772
|
+
|
|
3773
|
+
.gr-3 {
|
|
3774
|
+
row-gap: 12px !important;
|
|
3775
|
+
}
|
|
3776
|
+
|
|
3777
|
+
.gr-4 {
|
|
3778
|
+
row-gap: 16px !important;
|
|
3779
|
+
}
|
|
3780
|
+
|
|
3781
|
+
.gr-5 {
|
|
3782
|
+
row-gap: 20px !important;
|
|
3783
|
+
}
|
|
3784
|
+
|
|
3785
|
+
.gr-6 {
|
|
3786
|
+
row-gap: 24px !important;
|
|
3787
|
+
}
|
|
3788
|
+
|
|
3789
|
+
.gr-7 {
|
|
3790
|
+
row-gap: 28px !important;
|
|
3791
|
+
}
|
|
3792
|
+
|
|
3793
|
+
.gr-8 {
|
|
3794
|
+
row-gap: 32px !important;
|
|
3795
|
+
}
|
|
3796
|
+
|
|
3797
|
+
.gr-9 {
|
|
3798
|
+
row-gap: 36px !important;
|
|
3799
|
+
}
|
|
3800
|
+
|
|
3801
|
+
.gr-10 {
|
|
3802
|
+
row-gap: 40px !important;
|
|
3803
|
+
}
|
|
3804
|
+
|
|
3805
|
+
.gr-11 {
|
|
3806
|
+
row-gap: 44px !important;
|
|
3807
|
+
}
|
|
3808
|
+
|
|
3809
|
+
.gr-12 {
|
|
3810
|
+
row-gap: 48px !important;
|
|
3811
|
+
}
|
|
3812
|
+
|
|
3813
|
+
.gr-13 {
|
|
3814
|
+
row-gap: 52px !important;
|
|
3815
|
+
}
|
|
3816
|
+
|
|
3817
|
+
.gr-14 {
|
|
3818
|
+
row-gap: 56px !important;
|
|
3819
|
+
}
|
|
3820
|
+
|
|
3821
|
+
.gr-15 {
|
|
3822
|
+
row-gap: 60px !important;
|
|
3823
|
+
}
|
|
3824
|
+
|
|
3825
|
+
.gr-16 {
|
|
3826
|
+
row-gap: 64px !important;
|
|
3827
|
+
}
|
|
3828
|
+
|
|
3829
|
+
.gr-auto {
|
|
3830
|
+
row-gap: auto !important;
|
|
3831
|
+
}
|
|
3832
|
+
|
|
3833
|
+
.gc-0 {
|
|
3834
|
+
column-gap: 0px !important;
|
|
3835
|
+
}
|
|
3836
|
+
|
|
3837
|
+
.gc-1 {
|
|
3838
|
+
column-gap: 4px !important;
|
|
3839
|
+
}
|
|
3840
|
+
|
|
3841
|
+
.gc-2 {
|
|
3842
|
+
column-gap: 8px !important;
|
|
3843
|
+
}
|
|
3844
|
+
|
|
3845
|
+
.gc-3 {
|
|
3846
|
+
column-gap: 12px !important;
|
|
3847
|
+
}
|
|
3848
|
+
|
|
3849
|
+
.gc-4 {
|
|
3850
|
+
column-gap: 16px !important;
|
|
3851
|
+
}
|
|
3852
|
+
|
|
3853
|
+
.gc-5 {
|
|
3854
|
+
column-gap: 20px !important;
|
|
3855
|
+
}
|
|
3856
|
+
|
|
3857
|
+
.gc-6 {
|
|
3858
|
+
column-gap: 24px !important;
|
|
3859
|
+
}
|
|
3860
|
+
|
|
3861
|
+
.gc-7 {
|
|
3862
|
+
column-gap: 28px !important;
|
|
3863
|
+
}
|
|
3864
|
+
|
|
3865
|
+
.gc-8 {
|
|
3866
|
+
column-gap: 32px !important;
|
|
3867
|
+
}
|
|
3868
|
+
|
|
3869
|
+
.gc-9 {
|
|
3870
|
+
column-gap: 36px !important;
|
|
3871
|
+
}
|
|
3872
|
+
|
|
3873
|
+
.gc-10 {
|
|
3874
|
+
column-gap: 40px !important;
|
|
3875
|
+
}
|
|
3876
|
+
|
|
3877
|
+
.gc-11 {
|
|
3878
|
+
column-gap: 44px !important;
|
|
3879
|
+
}
|
|
3880
|
+
|
|
3881
|
+
.gc-12 {
|
|
3882
|
+
column-gap: 48px !important;
|
|
3883
|
+
}
|
|
3884
|
+
|
|
3885
|
+
.gc-13 {
|
|
3886
|
+
column-gap: 52px !important;
|
|
3887
|
+
}
|
|
3888
|
+
|
|
3889
|
+
.gc-14 {
|
|
3890
|
+
column-gap: 56px !important;
|
|
3891
|
+
}
|
|
3892
|
+
|
|
3893
|
+
.gc-15 {
|
|
3894
|
+
column-gap: 60px !important;
|
|
3895
|
+
}
|
|
3896
|
+
|
|
3897
|
+
.gc-16 {
|
|
3898
|
+
column-gap: 64px !important;
|
|
3899
|
+
}
|
|
3900
|
+
|
|
3901
|
+
.gc-auto {
|
|
3902
|
+
column-gap: auto !important;
|
|
3903
|
+
}
|
|
3904
|
+
|
|
3689
3905
|
.ma-0 {
|
|
3690
3906
|
margin: 0px !important;
|
|
3691
3907
|
}
|
|
@@ -6938,6 +7154,168 @@ html.overflow-y-hidden {
|
|
|
6938
7154
|
.order-sm-last {
|
|
6939
7155
|
order: 13 !important;
|
|
6940
7156
|
}
|
|
7157
|
+
.ga-sm-0 {
|
|
7158
|
+
gap: 0px !important;
|
|
7159
|
+
}
|
|
7160
|
+
.ga-sm-1 {
|
|
7161
|
+
gap: 4px !important;
|
|
7162
|
+
}
|
|
7163
|
+
.ga-sm-2 {
|
|
7164
|
+
gap: 8px !important;
|
|
7165
|
+
}
|
|
7166
|
+
.ga-sm-3 {
|
|
7167
|
+
gap: 12px !important;
|
|
7168
|
+
}
|
|
7169
|
+
.ga-sm-4 {
|
|
7170
|
+
gap: 16px !important;
|
|
7171
|
+
}
|
|
7172
|
+
.ga-sm-5 {
|
|
7173
|
+
gap: 20px !important;
|
|
7174
|
+
}
|
|
7175
|
+
.ga-sm-6 {
|
|
7176
|
+
gap: 24px !important;
|
|
7177
|
+
}
|
|
7178
|
+
.ga-sm-7 {
|
|
7179
|
+
gap: 28px !important;
|
|
7180
|
+
}
|
|
7181
|
+
.ga-sm-8 {
|
|
7182
|
+
gap: 32px !important;
|
|
7183
|
+
}
|
|
7184
|
+
.ga-sm-9 {
|
|
7185
|
+
gap: 36px !important;
|
|
7186
|
+
}
|
|
7187
|
+
.ga-sm-10 {
|
|
7188
|
+
gap: 40px !important;
|
|
7189
|
+
}
|
|
7190
|
+
.ga-sm-11 {
|
|
7191
|
+
gap: 44px !important;
|
|
7192
|
+
}
|
|
7193
|
+
.ga-sm-12 {
|
|
7194
|
+
gap: 48px !important;
|
|
7195
|
+
}
|
|
7196
|
+
.ga-sm-13 {
|
|
7197
|
+
gap: 52px !important;
|
|
7198
|
+
}
|
|
7199
|
+
.ga-sm-14 {
|
|
7200
|
+
gap: 56px !important;
|
|
7201
|
+
}
|
|
7202
|
+
.ga-sm-15 {
|
|
7203
|
+
gap: 60px !important;
|
|
7204
|
+
}
|
|
7205
|
+
.ga-sm-16 {
|
|
7206
|
+
gap: 64px !important;
|
|
7207
|
+
}
|
|
7208
|
+
.ga-sm-auto {
|
|
7209
|
+
gap: auto !important;
|
|
7210
|
+
}
|
|
7211
|
+
.gr-sm-0 {
|
|
7212
|
+
row-gap: 0px !important;
|
|
7213
|
+
}
|
|
7214
|
+
.gr-sm-1 {
|
|
7215
|
+
row-gap: 4px !important;
|
|
7216
|
+
}
|
|
7217
|
+
.gr-sm-2 {
|
|
7218
|
+
row-gap: 8px !important;
|
|
7219
|
+
}
|
|
7220
|
+
.gr-sm-3 {
|
|
7221
|
+
row-gap: 12px !important;
|
|
7222
|
+
}
|
|
7223
|
+
.gr-sm-4 {
|
|
7224
|
+
row-gap: 16px !important;
|
|
7225
|
+
}
|
|
7226
|
+
.gr-sm-5 {
|
|
7227
|
+
row-gap: 20px !important;
|
|
7228
|
+
}
|
|
7229
|
+
.gr-sm-6 {
|
|
7230
|
+
row-gap: 24px !important;
|
|
7231
|
+
}
|
|
7232
|
+
.gr-sm-7 {
|
|
7233
|
+
row-gap: 28px !important;
|
|
7234
|
+
}
|
|
7235
|
+
.gr-sm-8 {
|
|
7236
|
+
row-gap: 32px !important;
|
|
7237
|
+
}
|
|
7238
|
+
.gr-sm-9 {
|
|
7239
|
+
row-gap: 36px !important;
|
|
7240
|
+
}
|
|
7241
|
+
.gr-sm-10 {
|
|
7242
|
+
row-gap: 40px !important;
|
|
7243
|
+
}
|
|
7244
|
+
.gr-sm-11 {
|
|
7245
|
+
row-gap: 44px !important;
|
|
7246
|
+
}
|
|
7247
|
+
.gr-sm-12 {
|
|
7248
|
+
row-gap: 48px !important;
|
|
7249
|
+
}
|
|
7250
|
+
.gr-sm-13 {
|
|
7251
|
+
row-gap: 52px !important;
|
|
7252
|
+
}
|
|
7253
|
+
.gr-sm-14 {
|
|
7254
|
+
row-gap: 56px !important;
|
|
7255
|
+
}
|
|
7256
|
+
.gr-sm-15 {
|
|
7257
|
+
row-gap: 60px !important;
|
|
7258
|
+
}
|
|
7259
|
+
.gr-sm-16 {
|
|
7260
|
+
row-gap: 64px !important;
|
|
7261
|
+
}
|
|
7262
|
+
.gr-sm-auto {
|
|
7263
|
+
row-gap: auto !important;
|
|
7264
|
+
}
|
|
7265
|
+
.gc-sm-0 {
|
|
7266
|
+
column-gap: 0px !important;
|
|
7267
|
+
}
|
|
7268
|
+
.gc-sm-1 {
|
|
7269
|
+
column-gap: 4px !important;
|
|
7270
|
+
}
|
|
7271
|
+
.gc-sm-2 {
|
|
7272
|
+
column-gap: 8px !important;
|
|
7273
|
+
}
|
|
7274
|
+
.gc-sm-3 {
|
|
7275
|
+
column-gap: 12px !important;
|
|
7276
|
+
}
|
|
7277
|
+
.gc-sm-4 {
|
|
7278
|
+
column-gap: 16px !important;
|
|
7279
|
+
}
|
|
7280
|
+
.gc-sm-5 {
|
|
7281
|
+
column-gap: 20px !important;
|
|
7282
|
+
}
|
|
7283
|
+
.gc-sm-6 {
|
|
7284
|
+
column-gap: 24px !important;
|
|
7285
|
+
}
|
|
7286
|
+
.gc-sm-7 {
|
|
7287
|
+
column-gap: 28px !important;
|
|
7288
|
+
}
|
|
7289
|
+
.gc-sm-8 {
|
|
7290
|
+
column-gap: 32px !important;
|
|
7291
|
+
}
|
|
7292
|
+
.gc-sm-9 {
|
|
7293
|
+
column-gap: 36px !important;
|
|
7294
|
+
}
|
|
7295
|
+
.gc-sm-10 {
|
|
7296
|
+
column-gap: 40px !important;
|
|
7297
|
+
}
|
|
7298
|
+
.gc-sm-11 {
|
|
7299
|
+
column-gap: 44px !important;
|
|
7300
|
+
}
|
|
7301
|
+
.gc-sm-12 {
|
|
7302
|
+
column-gap: 48px !important;
|
|
7303
|
+
}
|
|
7304
|
+
.gc-sm-13 {
|
|
7305
|
+
column-gap: 52px !important;
|
|
7306
|
+
}
|
|
7307
|
+
.gc-sm-14 {
|
|
7308
|
+
column-gap: 56px !important;
|
|
7309
|
+
}
|
|
7310
|
+
.gc-sm-15 {
|
|
7311
|
+
column-gap: 60px !important;
|
|
7312
|
+
}
|
|
7313
|
+
.gc-sm-16 {
|
|
7314
|
+
column-gap: 64px !important;
|
|
7315
|
+
}
|
|
7316
|
+
.gc-sm-auto {
|
|
7317
|
+
column-gap: auto !important;
|
|
7318
|
+
}
|
|
6941
7319
|
.ma-sm-0 {
|
|
6942
7320
|
margin: 0px !important;
|
|
6943
7321
|
}
|
|
@@ -8766,6 +9144,168 @@ html.overflow-y-hidden {
|
|
|
8766
9144
|
.order-md-last {
|
|
8767
9145
|
order: 13 !important;
|
|
8768
9146
|
}
|
|
9147
|
+
.ga-md-0 {
|
|
9148
|
+
gap: 0px !important;
|
|
9149
|
+
}
|
|
9150
|
+
.ga-md-1 {
|
|
9151
|
+
gap: 4px !important;
|
|
9152
|
+
}
|
|
9153
|
+
.ga-md-2 {
|
|
9154
|
+
gap: 8px !important;
|
|
9155
|
+
}
|
|
9156
|
+
.ga-md-3 {
|
|
9157
|
+
gap: 12px !important;
|
|
9158
|
+
}
|
|
9159
|
+
.ga-md-4 {
|
|
9160
|
+
gap: 16px !important;
|
|
9161
|
+
}
|
|
9162
|
+
.ga-md-5 {
|
|
9163
|
+
gap: 20px !important;
|
|
9164
|
+
}
|
|
9165
|
+
.ga-md-6 {
|
|
9166
|
+
gap: 24px !important;
|
|
9167
|
+
}
|
|
9168
|
+
.ga-md-7 {
|
|
9169
|
+
gap: 28px !important;
|
|
9170
|
+
}
|
|
9171
|
+
.ga-md-8 {
|
|
9172
|
+
gap: 32px !important;
|
|
9173
|
+
}
|
|
9174
|
+
.ga-md-9 {
|
|
9175
|
+
gap: 36px !important;
|
|
9176
|
+
}
|
|
9177
|
+
.ga-md-10 {
|
|
9178
|
+
gap: 40px !important;
|
|
9179
|
+
}
|
|
9180
|
+
.ga-md-11 {
|
|
9181
|
+
gap: 44px !important;
|
|
9182
|
+
}
|
|
9183
|
+
.ga-md-12 {
|
|
9184
|
+
gap: 48px !important;
|
|
9185
|
+
}
|
|
9186
|
+
.ga-md-13 {
|
|
9187
|
+
gap: 52px !important;
|
|
9188
|
+
}
|
|
9189
|
+
.ga-md-14 {
|
|
9190
|
+
gap: 56px !important;
|
|
9191
|
+
}
|
|
9192
|
+
.ga-md-15 {
|
|
9193
|
+
gap: 60px !important;
|
|
9194
|
+
}
|
|
9195
|
+
.ga-md-16 {
|
|
9196
|
+
gap: 64px !important;
|
|
9197
|
+
}
|
|
9198
|
+
.ga-md-auto {
|
|
9199
|
+
gap: auto !important;
|
|
9200
|
+
}
|
|
9201
|
+
.gr-md-0 {
|
|
9202
|
+
row-gap: 0px !important;
|
|
9203
|
+
}
|
|
9204
|
+
.gr-md-1 {
|
|
9205
|
+
row-gap: 4px !important;
|
|
9206
|
+
}
|
|
9207
|
+
.gr-md-2 {
|
|
9208
|
+
row-gap: 8px !important;
|
|
9209
|
+
}
|
|
9210
|
+
.gr-md-3 {
|
|
9211
|
+
row-gap: 12px !important;
|
|
9212
|
+
}
|
|
9213
|
+
.gr-md-4 {
|
|
9214
|
+
row-gap: 16px !important;
|
|
9215
|
+
}
|
|
9216
|
+
.gr-md-5 {
|
|
9217
|
+
row-gap: 20px !important;
|
|
9218
|
+
}
|
|
9219
|
+
.gr-md-6 {
|
|
9220
|
+
row-gap: 24px !important;
|
|
9221
|
+
}
|
|
9222
|
+
.gr-md-7 {
|
|
9223
|
+
row-gap: 28px !important;
|
|
9224
|
+
}
|
|
9225
|
+
.gr-md-8 {
|
|
9226
|
+
row-gap: 32px !important;
|
|
9227
|
+
}
|
|
9228
|
+
.gr-md-9 {
|
|
9229
|
+
row-gap: 36px !important;
|
|
9230
|
+
}
|
|
9231
|
+
.gr-md-10 {
|
|
9232
|
+
row-gap: 40px !important;
|
|
9233
|
+
}
|
|
9234
|
+
.gr-md-11 {
|
|
9235
|
+
row-gap: 44px !important;
|
|
9236
|
+
}
|
|
9237
|
+
.gr-md-12 {
|
|
9238
|
+
row-gap: 48px !important;
|
|
9239
|
+
}
|
|
9240
|
+
.gr-md-13 {
|
|
9241
|
+
row-gap: 52px !important;
|
|
9242
|
+
}
|
|
9243
|
+
.gr-md-14 {
|
|
9244
|
+
row-gap: 56px !important;
|
|
9245
|
+
}
|
|
9246
|
+
.gr-md-15 {
|
|
9247
|
+
row-gap: 60px !important;
|
|
9248
|
+
}
|
|
9249
|
+
.gr-md-16 {
|
|
9250
|
+
row-gap: 64px !important;
|
|
9251
|
+
}
|
|
9252
|
+
.gr-md-auto {
|
|
9253
|
+
row-gap: auto !important;
|
|
9254
|
+
}
|
|
9255
|
+
.gc-md-0 {
|
|
9256
|
+
column-gap: 0px !important;
|
|
9257
|
+
}
|
|
9258
|
+
.gc-md-1 {
|
|
9259
|
+
column-gap: 4px !important;
|
|
9260
|
+
}
|
|
9261
|
+
.gc-md-2 {
|
|
9262
|
+
column-gap: 8px !important;
|
|
9263
|
+
}
|
|
9264
|
+
.gc-md-3 {
|
|
9265
|
+
column-gap: 12px !important;
|
|
9266
|
+
}
|
|
9267
|
+
.gc-md-4 {
|
|
9268
|
+
column-gap: 16px !important;
|
|
9269
|
+
}
|
|
9270
|
+
.gc-md-5 {
|
|
9271
|
+
column-gap: 20px !important;
|
|
9272
|
+
}
|
|
9273
|
+
.gc-md-6 {
|
|
9274
|
+
column-gap: 24px !important;
|
|
9275
|
+
}
|
|
9276
|
+
.gc-md-7 {
|
|
9277
|
+
column-gap: 28px !important;
|
|
9278
|
+
}
|
|
9279
|
+
.gc-md-8 {
|
|
9280
|
+
column-gap: 32px !important;
|
|
9281
|
+
}
|
|
9282
|
+
.gc-md-9 {
|
|
9283
|
+
column-gap: 36px !important;
|
|
9284
|
+
}
|
|
9285
|
+
.gc-md-10 {
|
|
9286
|
+
column-gap: 40px !important;
|
|
9287
|
+
}
|
|
9288
|
+
.gc-md-11 {
|
|
9289
|
+
column-gap: 44px !important;
|
|
9290
|
+
}
|
|
9291
|
+
.gc-md-12 {
|
|
9292
|
+
column-gap: 48px !important;
|
|
9293
|
+
}
|
|
9294
|
+
.gc-md-13 {
|
|
9295
|
+
column-gap: 52px !important;
|
|
9296
|
+
}
|
|
9297
|
+
.gc-md-14 {
|
|
9298
|
+
column-gap: 56px !important;
|
|
9299
|
+
}
|
|
9300
|
+
.gc-md-15 {
|
|
9301
|
+
column-gap: 60px !important;
|
|
9302
|
+
}
|
|
9303
|
+
.gc-md-16 {
|
|
9304
|
+
column-gap: 64px !important;
|
|
9305
|
+
}
|
|
9306
|
+
.gc-md-auto {
|
|
9307
|
+
column-gap: auto !important;
|
|
9308
|
+
}
|
|
8769
9309
|
.ma-md-0 {
|
|
8770
9310
|
margin: 0px !important;
|
|
8771
9311
|
}
|
|
@@ -10594,65 +11134,227 @@ html.overflow-y-hidden {
|
|
|
10594
11134
|
.order-lg-last {
|
|
10595
11135
|
order: 13 !important;
|
|
10596
11136
|
}
|
|
10597
|
-
.
|
|
10598
|
-
|
|
11137
|
+
.ga-lg-0 {
|
|
11138
|
+
gap: 0px !important;
|
|
10599
11139
|
}
|
|
10600
|
-
.
|
|
10601
|
-
|
|
11140
|
+
.ga-lg-1 {
|
|
11141
|
+
gap: 4px !important;
|
|
10602
11142
|
}
|
|
10603
|
-
.
|
|
10604
|
-
|
|
11143
|
+
.ga-lg-2 {
|
|
11144
|
+
gap: 8px !important;
|
|
10605
11145
|
}
|
|
10606
|
-
.
|
|
10607
|
-
|
|
11146
|
+
.ga-lg-3 {
|
|
11147
|
+
gap: 12px !important;
|
|
10608
11148
|
}
|
|
10609
|
-
.
|
|
10610
|
-
|
|
11149
|
+
.ga-lg-4 {
|
|
11150
|
+
gap: 16px !important;
|
|
10611
11151
|
}
|
|
10612
|
-
.
|
|
10613
|
-
|
|
11152
|
+
.ga-lg-5 {
|
|
11153
|
+
gap: 20px !important;
|
|
10614
11154
|
}
|
|
10615
|
-
.
|
|
10616
|
-
|
|
11155
|
+
.ga-lg-6 {
|
|
11156
|
+
gap: 24px !important;
|
|
10617
11157
|
}
|
|
10618
|
-
.
|
|
10619
|
-
|
|
11158
|
+
.ga-lg-7 {
|
|
11159
|
+
gap: 28px !important;
|
|
10620
11160
|
}
|
|
10621
|
-
.
|
|
10622
|
-
|
|
11161
|
+
.ga-lg-8 {
|
|
11162
|
+
gap: 32px !important;
|
|
10623
11163
|
}
|
|
10624
|
-
.
|
|
10625
|
-
|
|
11164
|
+
.ga-lg-9 {
|
|
11165
|
+
gap: 36px !important;
|
|
10626
11166
|
}
|
|
10627
|
-
.
|
|
10628
|
-
|
|
11167
|
+
.ga-lg-10 {
|
|
11168
|
+
gap: 40px !important;
|
|
10629
11169
|
}
|
|
10630
|
-
.
|
|
10631
|
-
|
|
11170
|
+
.ga-lg-11 {
|
|
11171
|
+
gap: 44px !important;
|
|
10632
11172
|
}
|
|
10633
|
-
.
|
|
10634
|
-
|
|
11173
|
+
.ga-lg-12 {
|
|
11174
|
+
gap: 48px !important;
|
|
10635
11175
|
}
|
|
10636
|
-
.
|
|
10637
|
-
|
|
11176
|
+
.ga-lg-13 {
|
|
11177
|
+
gap: 52px !important;
|
|
10638
11178
|
}
|
|
10639
|
-
.
|
|
10640
|
-
|
|
11179
|
+
.ga-lg-14 {
|
|
11180
|
+
gap: 56px !important;
|
|
10641
11181
|
}
|
|
10642
|
-
.
|
|
10643
|
-
|
|
11182
|
+
.ga-lg-15 {
|
|
11183
|
+
gap: 60px !important;
|
|
10644
11184
|
}
|
|
10645
|
-
.
|
|
10646
|
-
|
|
11185
|
+
.ga-lg-16 {
|
|
11186
|
+
gap: 64px !important;
|
|
10647
11187
|
}
|
|
10648
|
-
.
|
|
10649
|
-
|
|
11188
|
+
.ga-lg-auto {
|
|
11189
|
+
gap: auto !important;
|
|
10650
11190
|
}
|
|
10651
|
-
.
|
|
10652
|
-
|
|
10653
|
-
margin-left: 0px !important;
|
|
11191
|
+
.gr-lg-0 {
|
|
11192
|
+
row-gap: 0px !important;
|
|
10654
11193
|
}
|
|
10655
|
-
.
|
|
11194
|
+
.gr-lg-1 {
|
|
11195
|
+
row-gap: 4px !important;
|
|
11196
|
+
}
|
|
11197
|
+
.gr-lg-2 {
|
|
11198
|
+
row-gap: 8px !important;
|
|
11199
|
+
}
|
|
11200
|
+
.gr-lg-3 {
|
|
11201
|
+
row-gap: 12px !important;
|
|
11202
|
+
}
|
|
11203
|
+
.gr-lg-4 {
|
|
11204
|
+
row-gap: 16px !important;
|
|
11205
|
+
}
|
|
11206
|
+
.gr-lg-5 {
|
|
11207
|
+
row-gap: 20px !important;
|
|
11208
|
+
}
|
|
11209
|
+
.gr-lg-6 {
|
|
11210
|
+
row-gap: 24px !important;
|
|
11211
|
+
}
|
|
11212
|
+
.gr-lg-7 {
|
|
11213
|
+
row-gap: 28px !important;
|
|
11214
|
+
}
|
|
11215
|
+
.gr-lg-8 {
|
|
11216
|
+
row-gap: 32px !important;
|
|
11217
|
+
}
|
|
11218
|
+
.gr-lg-9 {
|
|
11219
|
+
row-gap: 36px !important;
|
|
11220
|
+
}
|
|
11221
|
+
.gr-lg-10 {
|
|
11222
|
+
row-gap: 40px !important;
|
|
11223
|
+
}
|
|
11224
|
+
.gr-lg-11 {
|
|
11225
|
+
row-gap: 44px !important;
|
|
11226
|
+
}
|
|
11227
|
+
.gr-lg-12 {
|
|
11228
|
+
row-gap: 48px !important;
|
|
11229
|
+
}
|
|
11230
|
+
.gr-lg-13 {
|
|
11231
|
+
row-gap: 52px !important;
|
|
11232
|
+
}
|
|
11233
|
+
.gr-lg-14 {
|
|
11234
|
+
row-gap: 56px !important;
|
|
11235
|
+
}
|
|
11236
|
+
.gr-lg-15 {
|
|
11237
|
+
row-gap: 60px !important;
|
|
11238
|
+
}
|
|
11239
|
+
.gr-lg-16 {
|
|
11240
|
+
row-gap: 64px !important;
|
|
11241
|
+
}
|
|
11242
|
+
.gr-lg-auto {
|
|
11243
|
+
row-gap: auto !important;
|
|
11244
|
+
}
|
|
11245
|
+
.gc-lg-0 {
|
|
11246
|
+
column-gap: 0px !important;
|
|
11247
|
+
}
|
|
11248
|
+
.gc-lg-1 {
|
|
11249
|
+
column-gap: 4px !important;
|
|
11250
|
+
}
|
|
11251
|
+
.gc-lg-2 {
|
|
11252
|
+
column-gap: 8px !important;
|
|
11253
|
+
}
|
|
11254
|
+
.gc-lg-3 {
|
|
11255
|
+
column-gap: 12px !important;
|
|
11256
|
+
}
|
|
11257
|
+
.gc-lg-4 {
|
|
11258
|
+
column-gap: 16px !important;
|
|
11259
|
+
}
|
|
11260
|
+
.gc-lg-5 {
|
|
11261
|
+
column-gap: 20px !important;
|
|
11262
|
+
}
|
|
11263
|
+
.gc-lg-6 {
|
|
11264
|
+
column-gap: 24px !important;
|
|
11265
|
+
}
|
|
11266
|
+
.gc-lg-7 {
|
|
11267
|
+
column-gap: 28px !important;
|
|
11268
|
+
}
|
|
11269
|
+
.gc-lg-8 {
|
|
11270
|
+
column-gap: 32px !important;
|
|
11271
|
+
}
|
|
11272
|
+
.gc-lg-9 {
|
|
11273
|
+
column-gap: 36px !important;
|
|
11274
|
+
}
|
|
11275
|
+
.gc-lg-10 {
|
|
11276
|
+
column-gap: 40px !important;
|
|
11277
|
+
}
|
|
11278
|
+
.gc-lg-11 {
|
|
11279
|
+
column-gap: 44px !important;
|
|
11280
|
+
}
|
|
11281
|
+
.gc-lg-12 {
|
|
11282
|
+
column-gap: 48px !important;
|
|
11283
|
+
}
|
|
11284
|
+
.gc-lg-13 {
|
|
11285
|
+
column-gap: 52px !important;
|
|
11286
|
+
}
|
|
11287
|
+
.gc-lg-14 {
|
|
11288
|
+
column-gap: 56px !important;
|
|
11289
|
+
}
|
|
11290
|
+
.gc-lg-15 {
|
|
11291
|
+
column-gap: 60px !important;
|
|
11292
|
+
}
|
|
11293
|
+
.gc-lg-16 {
|
|
11294
|
+
column-gap: 64px !important;
|
|
11295
|
+
}
|
|
11296
|
+
.gc-lg-auto {
|
|
11297
|
+
column-gap: auto !important;
|
|
11298
|
+
}
|
|
11299
|
+
.ma-lg-0 {
|
|
11300
|
+
margin: 0px !important;
|
|
11301
|
+
}
|
|
11302
|
+
.ma-lg-1 {
|
|
11303
|
+
margin: 4px !important;
|
|
11304
|
+
}
|
|
11305
|
+
.ma-lg-2 {
|
|
11306
|
+
margin: 8px !important;
|
|
11307
|
+
}
|
|
11308
|
+
.ma-lg-3 {
|
|
11309
|
+
margin: 12px !important;
|
|
11310
|
+
}
|
|
11311
|
+
.ma-lg-4 {
|
|
11312
|
+
margin: 16px !important;
|
|
11313
|
+
}
|
|
11314
|
+
.ma-lg-5 {
|
|
11315
|
+
margin: 20px !important;
|
|
11316
|
+
}
|
|
11317
|
+
.ma-lg-6 {
|
|
11318
|
+
margin: 24px !important;
|
|
11319
|
+
}
|
|
11320
|
+
.ma-lg-7 {
|
|
11321
|
+
margin: 28px !important;
|
|
11322
|
+
}
|
|
11323
|
+
.ma-lg-8 {
|
|
11324
|
+
margin: 32px !important;
|
|
11325
|
+
}
|
|
11326
|
+
.ma-lg-9 {
|
|
11327
|
+
margin: 36px !important;
|
|
11328
|
+
}
|
|
11329
|
+
.ma-lg-10 {
|
|
11330
|
+
margin: 40px !important;
|
|
11331
|
+
}
|
|
11332
|
+
.ma-lg-11 {
|
|
11333
|
+
margin: 44px !important;
|
|
11334
|
+
}
|
|
11335
|
+
.ma-lg-12 {
|
|
11336
|
+
margin: 48px !important;
|
|
11337
|
+
}
|
|
11338
|
+
.ma-lg-13 {
|
|
11339
|
+
margin: 52px !important;
|
|
11340
|
+
}
|
|
11341
|
+
.ma-lg-14 {
|
|
11342
|
+
margin: 56px !important;
|
|
11343
|
+
}
|
|
11344
|
+
.ma-lg-15 {
|
|
11345
|
+
margin: 60px !important;
|
|
11346
|
+
}
|
|
11347
|
+
.ma-lg-16 {
|
|
11348
|
+
margin: 64px !important;
|
|
11349
|
+
}
|
|
11350
|
+
.ma-lg-auto {
|
|
11351
|
+
margin: auto !important;
|
|
11352
|
+
}
|
|
11353
|
+
.mx-lg-0 {
|
|
11354
|
+
margin-right: 0px !important;
|
|
11355
|
+
margin-left: 0px !important;
|
|
11356
|
+
}
|
|
11357
|
+
.mx-lg-1 {
|
|
10656
11358
|
margin-right: 4px !important;
|
|
10657
11359
|
margin-left: 4px !important;
|
|
10658
11360
|
}
|
|
@@ -12422,6 +13124,168 @@ html.overflow-y-hidden {
|
|
|
12422
13124
|
.order-xl-last {
|
|
12423
13125
|
order: 13 !important;
|
|
12424
13126
|
}
|
|
13127
|
+
.ga-xl-0 {
|
|
13128
|
+
gap: 0px !important;
|
|
13129
|
+
}
|
|
13130
|
+
.ga-xl-1 {
|
|
13131
|
+
gap: 4px !important;
|
|
13132
|
+
}
|
|
13133
|
+
.ga-xl-2 {
|
|
13134
|
+
gap: 8px !important;
|
|
13135
|
+
}
|
|
13136
|
+
.ga-xl-3 {
|
|
13137
|
+
gap: 12px !important;
|
|
13138
|
+
}
|
|
13139
|
+
.ga-xl-4 {
|
|
13140
|
+
gap: 16px !important;
|
|
13141
|
+
}
|
|
13142
|
+
.ga-xl-5 {
|
|
13143
|
+
gap: 20px !important;
|
|
13144
|
+
}
|
|
13145
|
+
.ga-xl-6 {
|
|
13146
|
+
gap: 24px !important;
|
|
13147
|
+
}
|
|
13148
|
+
.ga-xl-7 {
|
|
13149
|
+
gap: 28px !important;
|
|
13150
|
+
}
|
|
13151
|
+
.ga-xl-8 {
|
|
13152
|
+
gap: 32px !important;
|
|
13153
|
+
}
|
|
13154
|
+
.ga-xl-9 {
|
|
13155
|
+
gap: 36px !important;
|
|
13156
|
+
}
|
|
13157
|
+
.ga-xl-10 {
|
|
13158
|
+
gap: 40px !important;
|
|
13159
|
+
}
|
|
13160
|
+
.ga-xl-11 {
|
|
13161
|
+
gap: 44px !important;
|
|
13162
|
+
}
|
|
13163
|
+
.ga-xl-12 {
|
|
13164
|
+
gap: 48px !important;
|
|
13165
|
+
}
|
|
13166
|
+
.ga-xl-13 {
|
|
13167
|
+
gap: 52px !important;
|
|
13168
|
+
}
|
|
13169
|
+
.ga-xl-14 {
|
|
13170
|
+
gap: 56px !important;
|
|
13171
|
+
}
|
|
13172
|
+
.ga-xl-15 {
|
|
13173
|
+
gap: 60px !important;
|
|
13174
|
+
}
|
|
13175
|
+
.ga-xl-16 {
|
|
13176
|
+
gap: 64px !important;
|
|
13177
|
+
}
|
|
13178
|
+
.ga-xl-auto {
|
|
13179
|
+
gap: auto !important;
|
|
13180
|
+
}
|
|
13181
|
+
.gr-xl-0 {
|
|
13182
|
+
row-gap: 0px !important;
|
|
13183
|
+
}
|
|
13184
|
+
.gr-xl-1 {
|
|
13185
|
+
row-gap: 4px !important;
|
|
13186
|
+
}
|
|
13187
|
+
.gr-xl-2 {
|
|
13188
|
+
row-gap: 8px !important;
|
|
13189
|
+
}
|
|
13190
|
+
.gr-xl-3 {
|
|
13191
|
+
row-gap: 12px !important;
|
|
13192
|
+
}
|
|
13193
|
+
.gr-xl-4 {
|
|
13194
|
+
row-gap: 16px !important;
|
|
13195
|
+
}
|
|
13196
|
+
.gr-xl-5 {
|
|
13197
|
+
row-gap: 20px !important;
|
|
13198
|
+
}
|
|
13199
|
+
.gr-xl-6 {
|
|
13200
|
+
row-gap: 24px !important;
|
|
13201
|
+
}
|
|
13202
|
+
.gr-xl-7 {
|
|
13203
|
+
row-gap: 28px !important;
|
|
13204
|
+
}
|
|
13205
|
+
.gr-xl-8 {
|
|
13206
|
+
row-gap: 32px !important;
|
|
13207
|
+
}
|
|
13208
|
+
.gr-xl-9 {
|
|
13209
|
+
row-gap: 36px !important;
|
|
13210
|
+
}
|
|
13211
|
+
.gr-xl-10 {
|
|
13212
|
+
row-gap: 40px !important;
|
|
13213
|
+
}
|
|
13214
|
+
.gr-xl-11 {
|
|
13215
|
+
row-gap: 44px !important;
|
|
13216
|
+
}
|
|
13217
|
+
.gr-xl-12 {
|
|
13218
|
+
row-gap: 48px !important;
|
|
13219
|
+
}
|
|
13220
|
+
.gr-xl-13 {
|
|
13221
|
+
row-gap: 52px !important;
|
|
13222
|
+
}
|
|
13223
|
+
.gr-xl-14 {
|
|
13224
|
+
row-gap: 56px !important;
|
|
13225
|
+
}
|
|
13226
|
+
.gr-xl-15 {
|
|
13227
|
+
row-gap: 60px !important;
|
|
13228
|
+
}
|
|
13229
|
+
.gr-xl-16 {
|
|
13230
|
+
row-gap: 64px !important;
|
|
13231
|
+
}
|
|
13232
|
+
.gr-xl-auto {
|
|
13233
|
+
row-gap: auto !important;
|
|
13234
|
+
}
|
|
13235
|
+
.gc-xl-0 {
|
|
13236
|
+
column-gap: 0px !important;
|
|
13237
|
+
}
|
|
13238
|
+
.gc-xl-1 {
|
|
13239
|
+
column-gap: 4px !important;
|
|
13240
|
+
}
|
|
13241
|
+
.gc-xl-2 {
|
|
13242
|
+
column-gap: 8px !important;
|
|
13243
|
+
}
|
|
13244
|
+
.gc-xl-3 {
|
|
13245
|
+
column-gap: 12px !important;
|
|
13246
|
+
}
|
|
13247
|
+
.gc-xl-4 {
|
|
13248
|
+
column-gap: 16px !important;
|
|
13249
|
+
}
|
|
13250
|
+
.gc-xl-5 {
|
|
13251
|
+
column-gap: 20px !important;
|
|
13252
|
+
}
|
|
13253
|
+
.gc-xl-6 {
|
|
13254
|
+
column-gap: 24px !important;
|
|
13255
|
+
}
|
|
13256
|
+
.gc-xl-7 {
|
|
13257
|
+
column-gap: 28px !important;
|
|
13258
|
+
}
|
|
13259
|
+
.gc-xl-8 {
|
|
13260
|
+
column-gap: 32px !important;
|
|
13261
|
+
}
|
|
13262
|
+
.gc-xl-9 {
|
|
13263
|
+
column-gap: 36px !important;
|
|
13264
|
+
}
|
|
13265
|
+
.gc-xl-10 {
|
|
13266
|
+
column-gap: 40px !important;
|
|
13267
|
+
}
|
|
13268
|
+
.gc-xl-11 {
|
|
13269
|
+
column-gap: 44px !important;
|
|
13270
|
+
}
|
|
13271
|
+
.gc-xl-12 {
|
|
13272
|
+
column-gap: 48px !important;
|
|
13273
|
+
}
|
|
13274
|
+
.gc-xl-13 {
|
|
13275
|
+
column-gap: 52px !important;
|
|
13276
|
+
}
|
|
13277
|
+
.gc-xl-14 {
|
|
13278
|
+
column-gap: 56px !important;
|
|
13279
|
+
}
|
|
13280
|
+
.gc-xl-15 {
|
|
13281
|
+
column-gap: 60px !important;
|
|
13282
|
+
}
|
|
13283
|
+
.gc-xl-16 {
|
|
13284
|
+
column-gap: 64px !important;
|
|
13285
|
+
}
|
|
13286
|
+
.gc-xl-auto {
|
|
13287
|
+
column-gap: auto !important;
|
|
13288
|
+
}
|
|
12425
13289
|
.ma-xl-0 {
|
|
12426
13290
|
margin: 0px !important;
|
|
12427
13291
|
}
|
|
@@ -14250,6 +15114,168 @@ html.overflow-y-hidden {
|
|
|
14250
15114
|
.order-xxl-last {
|
|
14251
15115
|
order: 13 !important;
|
|
14252
15116
|
}
|
|
15117
|
+
.ga-xxl-0 {
|
|
15118
|
+
gap: 0px !important;
|
|
15119
|
+
}
|
|
15120
|
+
.ga-xxl-1 {
|
|
15121
|
+
gap: 4px !important;
|
|
15122
|
+
}
|
|
15123
|
+
.ga-xxl-2 {
|
|
15124
|
+
gap: 8px !important;
|
|
15125
|
+
}
|
|
15126
|
+
.ga-xxl-3 {
|
|
15127
|
+
gap: 12px !important;
|
|
15128
|
+
}
|
|
15129
|
+
.ga-xxl-4 {
|
|
15130
|
+
gap: 16px !important;
|
|
15131
|
+
}
|
|
15132
|
+
.ga-xxl-5 {
|
|
15133
|
+
gap: 20px !important;
|
|
15134
|
+
}
|
|
15135
|
+
.ga-xxl-6 {
|
|
15136
|
+
gap: 24px !important;
|
|
15137
|
+
}
|
|
15138
|
+
.ga-xxl-7 {
|
|
15139
|
+
gap: 28px !important;
|
|
15140
|
+
}
|
|
15141
|
+
.ga-xxl-8 {
|
|
15142
|
+
gap: 32px !important;
|
|
15143
|
+
}
|
|
15144
|
+
.ga-xxl-9 {
|
|
15145
|
+
gap: 36px !important;
|
|
15146
|
+
}
|
|
15147
|
+
.ga-xxl-10 {
|
|
15148
|
+
gap: 40px !important;
|
|
15149
|
+
}
|
|
15150
|
+
.ga-xxl-11 {
|
|
15151
|
+
gap: 44px !important;
|
|
15152
|
+
}
|
|
15153
|
+
.ga-xxl-12 {
|
|
15154
|
+
gap: 48px !important;
|
|
15155
|
+
}
|
|
15156
|
+
.ga-xxl-13 {
|
|
15157
|
+
gap: 52px !important;
|
|
15158
|
+
}
|
|
15159
|
+
.ga-xxl-14 {
|
|
15160
|
+
gap: 56px !important;
|
|
15161
|
+
}
|
|
15162
|
+
.ga-xxl-15 {
|
|
15163
|
+
gap: 60px !important;
|
|
15164
|
+
}
|
|
15165
|
+
.ga-xxl-16 {
|
|
15166
|
+
gap: 64px !important;
|
|
15167
|
+
}
|
|
15168
|
+
.ga-xxl-auto {
|
|
15169
|
+
gap: auto !important;
|
|
15170
|
+
}
|
|
15171
|
+
.gr-xxl-0 {
|
|
15172
|
+
row-gap: 0px !important;
|
|
15173
|
+
}
|
|
15174
|
+
.gr-xxl-1 {
|
|
15175
|
+
row-gap: 4px !important;
|
|
15176
|
+
}
|
|
15177
|
+
.gr-xxl-2 {
|
|
15178
|
+
row-gap: 8px !important;
|
|
15179
|
+
}
|
|
15180
|
+
.gr-xxl-3 {
|
|
15181
|
+
row-gap: 12px !important;
|
|
15182
|
+
}
|
|
15183
|
+
.gr-xxl-4 {
|
|
15184
|
+
row-gap: 16px !important;
|
|
15185
|
+
}
|
|
15186
|
+
.gr-xxl-5 {
|
|
15187
|
+
row-gap: 20px !important;
|
|
15188
|
+
}
|
|
15189
|
+
.gr-xxl-6 {
|
|
15190
|
+
row-gap: 24px !important;
|
|
15191
|
+
}
|
|
15192
|
+
.gr-xxl-7 {
|
|
15193
|
+
row-gap: 28px !important;
|
|
15194
|
+
}
|
|
15195
|
+
.gr-xxl-8 {
|
|
15196
|
+
row-gap: 32px !important;
|
|
15197
|
+
}
|
|
15198
|
+
.gr-xxl-9 {
|
|
15199
|
+
row-gap: 36px !important;
|
|
15200
|
+
}
|
|
15201
|
+
.gr-xxl-10 {
|
|
15202
|
+
row-gap: 40px !important;
|
|
15203
|
+
}
|
|
15204
|
+
.gr-xxl-11 {
|
|
15205
|
+
row-gap: 44px !important;
|
|
15206
|
+
}
|
|
15207
|
+
.gr-xxl-12 {
|
|
15208
|
+
row-gap: 48px !important;
|
|
15209
|
+
}
|
|
15210
|
+
.gr-xxl-13 {
|
|
15211
|
+
row-gap: 52px !important;
|
|
15212
|
+
}
|
|
15213
|
+
.gr-xxl-14 {
|
|
15214
|
+
row-gap: 56px !important;
|
|
15215
|
+
}
|
|
15216
|
+
.gr-xxl-15 {
|
|
15217
|
+
row-gap: 60px !important;
|
|
15218
|
+
}
|
|
15219
|
+
.gr-xxl-16 {
|
|
15220
|
+
row-gap: 64px !important;
|
|
15221
|
+
}
|
|
15222
|
+
.gr-xxl-auto {
|
|
15223
|
+
row-gap: auto !important;
|
|
15224
|
+
}
|
|
15225
|
+
.gc-xxl-0 {
|
|
15226
|
+
column-gap: 0px !important;
|
|
15227
|
+
}
|
|
15228
|
+
.gc-xxl-1 {
|
|
15229
|
+
column-gap: 4px !important;
|
|
15230
|
+
}
|
|
15231
|
+
.gc-xxl-2 {
|
|
15232
|
+
column-gap: 8px !important;
|
|
15233
|
+
}
|
|
15234
|
+
.gc-xxl-3 {
|
|
15235
|
+
column-gap: 12px !important;
|
|
15236
|
+
}
|
|
15237
|
+
.gc-xxl-4 {
|
|
15238
|
+
column-gap: 16px !important;
|
|
15239
|
+
}
|
|
15240
|
+
.gc-xxl-5 {
|
|
15241
|
+
column-gap: 20px !important;
|
|
15242
|
+
}
|
|
15243
|
+
.gc-xxl-6 {
|
|
15244
|
+
column-gap: 24px !important;
|
|
15245
|
+
}
|
|
15246
|
+
.gc-xxl-7 {
|
|
15247
|
+
column-gap: 28px !important;
|
|
15248
|
+
}
|
|
15249
|
+
.gc-xxl-8 {
|
|
15250
|
+
column-gap: 32px !important;
|
|
15251
|
+
}
|
|
15252
|
+
.gc-xxl-9 {
|
|
15253
|
+
column-gap: 36px !important;
|
|
15254
|
+
}
|
|
15255
|
+
.gc-xxl-10 {
|
|
15256
|
+
column-gap: 40px !important;
|
|
15257
|
+
}
|
|
15258
|
+
.gc-xxl-11 {
|
|
15259
|
+
column-gap: 44px !important;
|
|
15260
|
+
}
|
|
15261
|
+
.gc-xxl-12 {
|
|
15262
|
+
column-gap: 48px !important;
|
|
15263
|
+
}
|
|
15264
|
+
.gc-xxl-13 {
|
|
15265
|
+
column-gap: 52px !important;
|
|
15266
|
+
}
|
|
15267
|
+
.gc-xxl-14 {
|
|
15268
|
+
column-gap: 56px !important;
|
|
15269
|
+
}
|
|
15270
|
+
.gc-xxl-15 {
|
|
15271
|
+
column-gap: 60px !important;
|
|
15272
|
+
}
|
|
15273
|
+
.gc-xxl-16 {
|
|
15274
|
+
column-gap: 64px !important;
|
|
15275
|
+
}
|
|
15276
|
+
.gc-xxl-auto {
|
|
15277
|
+
column-gap: auto !important;
|
|
15278
|
+
}
|
|
14253
15279
|
.ma-xxl-0 {
|
|
14254
15280
|
margin: 0px !important;
|
|
14255
15281
|
}
|
|
@@ -16172,6 +17198,27 @@ html.overflow-y-hidden {
|
|
|
16172
17198
|
--v-btn-height: 28px;
|
|
16173
17199
|
--v-btn-size: 0.75rem;
|
|
16174
17200
|
min-width: unset;
|
|
17201
|
+
}.v-date-picker__input {
|
|
17202
|
+
padding-top: 16px;
|
|
17203
|
+
padding-left: 24px;
|
|
17204
|
+
padding-right: 24px;
|
|
17205
|
+
}
|
|
17206
|
+
|
|
17207
|
+
.v-date-picker {
|
|
17208
|
+
overflow: hidden;
|
|
17209
|
+
}
|
|
17210
|
+
|
|
17211
|
+
.v-date-picker-month {
|
|
17212
|
+
padding: 0 12px 12px;
|
|
17213
|
+
}
|
|
17214
|
+
|
|
17215
|
+
.v-date-picker-month__day {
|
|
17216
|
+
height: 48px;
|
|
17217
|
+
width: 48px;
|
|
17218
|
+
}
|
|
17219
|
+
.v-date-picker-month__day .v-btn {
|
|
17220
|
+
--v-btn-height: 28px;
|
|
17221
|
+
--v-btn-size: 0.85rem;
|
|
16175
17222
|
}.v-date-picker-controls {
|
|
16176
17223
|
display: flex;
|
|
16177
17224
|
align-items: center;
|
|
@@ -16195,27 +17242,6 @@ html.overflow-y-hidden {
|
|
|
16195
17242
|
}
|
|
16196
17243
|
.v-locale--is-rtl.v-date-picker-controls__month, .v-locale--is-rtl .v-date-picker-controls__month {
|
|
16197
17244
|
flex-direction: row-reverse;
|
|
16198
|
-
}.v-date-picker__input {
|
|
16199
|
-
padding-top: 16px;
|
|
16200
|
-
padding-left: 24px;
|
|
16201
|
-
padding-right: 24px;
|
|
16202
|
-
}
|
|
16203
|
-
|
|
16204
|
-
.v-date-picker {
|
|
16205
|
-
overflow: hidden;
|
|
16206
|
-
}
|
|
16207
|
-
|
|
16208
|
-
.v-date-picker-month {
|
|
16209
|
-
padding: 0 12px 12px;
|
|
16210
|
-
}
|
|
16211
|
-
|
|
16212
|
-
.v-date-picker-month__day {
|
|
16213
|
-
height: 48px;
|
|
16214
|
-
width: 48px;
|
|
16215
|
-
}
|
|
16216
|
-
.v-date-picker-month__day .v-btn {
|
|
16217
|
-
--v-btn-height: 28px;
|
|
16218
|
-
--v-btn-size: 0.85rem;
|
|
16219
17245
|
}.v-date-picker-header {
|
|
16220
17246
|
display: grid;
|
|
16221
17247
|
grid-template-areas: "prepend content append";
|
|
@@ -16493,119 +17519,12 @@ html.overflow-y-hidden {
|
|
|
16493
17519
|
padding-bottom: 16px;
|
|
16494
17520
|
font-weight: 600;
|
|
16495
17521
|
letter-spacing: 0.1666666667em;
|
|
16496
|
-
}.v-
|
|
16497
|
-
box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
|
|
16498
|
-
border-radius: 4px;
|
|
16499
|
-
overflow: hidden;
|
|
16500
|
-
}
|
|
16501
|
-
|
|
16502
|
-
.v-stepper-header {
|
|
16503
|
-
box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
|
|
17522
|
+
}.v-skeleton-loader {
|
|
16504
17523
|
align-items: center;
|
|
17524
|
+
background: rgb(var(--v-theme-surface));
|
|
17525
|
+
border-radius: 4px;
|
|
16505
17526
|
display: flex;
|
|
16506
|
-
|
|
16507
|
-
overflow-x: auto;
|
|
16508
|
-
justify-content: space-between;
|
|
16509
|
-
z-index: 1;
|
|
16510
|
-
}
|
|
16511
|
-
.v-stepper-header .v-divider {
|
|
16512
|
-
margin: 0 -16px;
|
|
16513
|
-
}
|
|
16514
|
-
.v-stepper--alt-labels .v-stepper-header {
|
|
16515
|
-
height: auto;
|
|
16516
|
-
}
|
|
16517
|
-
.v-stepper--alt-labels .v-stepper-header .v-divider {
|
|
16518
|
-
align-self: flex-start;
|
|
16519
|
-
margin: 35px -67px 0;
|
|
16520
|
-
}
|
|
16521
|
-
|
|
16522
|
-
.v-stepper-window {
|
|
16523
|
-
margin: 1.5rem;
|
|
16524
|
-
}
|
|
16525
|
-
|
|
16526
|
-
.v-stepper-actions {
|
|
16527
|
-
display: flex;
|
|
16528
|
-
align-items: center;
|
|
16529
|
-
justify-content: space-between;
|
|
16530
|
-
padding: 1rem;
|
|
16531
|
-
}
|
|
16532
|
-
.v-stepper .v-stepper-actions {
|
|
16533
|
-
padding: 0 1.5rem 1rem;
|
|
16534
|
-
}
|
|
16535
|
-
.v-stepper-window-item .v-stepper-actions {
|
|
16536
|
-
padding: 1.5rem 0 0;
|
|
16537
|
-
}.v-stepper-item {
|
|
16538
|
-
align-items: center;
|
|
16539
|
-
align-self: stretch;
|
|
16540
|
-
display: inline-flex;
|
|
16541
|
-
flex: none;
|
|
16542
|
-
opacity: var(--v-medium-emphasis-opacity);
|
|
16543
|
-
padding: 1.5rem;
|
|
16544
|
-
transition-duration: 0.2s;
|
|
16545
|
-
transition-property: opacity;
|
|
16546
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
16547
|
-
}
|
|
16548
|
-
.v-stepper-item--selected {
|
|
16549
|
-
opacity: 1;
|
|
16550
|
-
}
|
|
16551
|
-
.v-stepper-item--error {
|
|
16552
|
-
color: rgb(var(--v-theme-error));
|
|
16553
|
-
}
|
|
16554
|
-
.v-stepper-item--disabled {
|
|
16555
|
-
opacity: var(--v-medium-emphasis-opacity);
|
|
16556
|
-
pointer-events: none;
|
|
16557
|
-
}
|
|
16558
|
-
.v-stepper--alt-labels .v-stepper-item {
|
|
16559
|
-
flex-direction: column;
|
|
16560
|
-
justify-content: flex-start;
|
|
16561
|
-
align-items: center;
|
|
16562
|
-
flex-basis: 175px;
|
|
16563
|
-
}
|
|
16564
|
-
|
|
16565
|
-
.v-stepper-item__avatar.v-avatar {
|
|
16566
|
-
background: rgba(var(--v-theme-surface-variant), var(--v-medium-emphasis-opacity));
|
|
16567
|
-
color: rgb(var(--v-theme-on-surface-variant));
|
|
16568
|
-
font-size: 0.75rem;
|
|
16569
|
-
margin-inline-end: 8px;
|
|
16570
|
-
}
|
|
16571
|
-
.v-stepper-item__avatar.v-avatar .v-icon {
|
|
16572
|
-
font-size: 0.875rem;
|
|
16573
|
-
}
|
|
16574
|
-
.v-stepper-item--selected .v-stepper-item__avatar.v-avatar, .v-stepper-item--complete .v-stepper-item__avatar.v-avatar {
|
|
16575
|
-
background: rgb(var(--v-theme-surface-variant));
|
|
16576
|
-
}
|
|
16577
|
-
.v-stepper-item--error .v-stepper-item__avatar.v-avatar {
|
|
16578
|
-
background: rgb(var(--v-theme-error));
|
|
16579
|
-
}
|
|
16580
|
-
.v-stepper--alt-labels .v-stepper-item__avatar.v-avatar {
|
|
16581
|
-
margin-bottom: 16px;
|
|
16582
|
-
margin-inline-end: 0;
|
|
16583
|
-
}
|
|
16584
|
-
|
|
16585
|
-
.v-stepper-item__title {
|
|
16586
|
-
line-height: 1;
|
|
16587
|
-
}
|
|
16588
|
-
.v-stepper--mobile .v-stepper-item__title {
|
|
16589
|
-
display: none;
|
|
16590
|
-
}
|
|
16591
|
-
|
|
16592
|
-
.v-stepper-item__subtitle {
|
|
16593
|
-
font-size: 0.75rem;
|
|
16594
|
-
text-align: left;
|
|
16595
|
-
line-height: 1;
|
|
16596
|
-
opacity: var(--v-medium-emphasis-opacity);
|
|
16597
|
-
}
|
|
16598
|
-
.v-stepper--alt-labels .v-stepper-item__subtitle {
|
|
16599
|
-
text-align: center;
|
|
16600
|
-
}
|
|
16601
|
-
.v-stepper--mobile .v-stepper-item__subtitle {
|
|
16602
|
-
display: none;
|
|
16603
|
-
}.v-skeleton-loader {
|
|
16604
|
-
align-items: center;
|
|
16605
|
-
background: rgb(var(--v-theme-surface));
|
|
16606
|
-
border-radius: 4px;
|
|
16607
|
-
display: flex;
|
|
16608
|
-
flex-wrap: wrap;
|
|
17527
|
+
flex-wrap: wrap;
|
|
16609
17528
|
position: relative;
|
|
16610
17529
|
vertical-align: top;
|
|
16611
17530
|
}
|
|
@@ -16820,6 +17739,113 @@ html.overflow-y-hidden {
|
|
|
16820
17739
|
100% {
|
|
16821
17740
|
transform: translateX(100%);
|
|
16822
17741
|
}
|
|
17742
|
+
}.v-stepper.v-sheet {
|
|
17743
|
+
box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
|
|
17744
|
+
border-radius: 4px;
|
|
17745
|
+
overflow: hidden;
|
|
17746
|
+
}
|
|
17747
|
+
|
|
17748
|
+
.v-stepper-header {
|
|
17749
|
+
box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
|
|
17750
|
+
align-items: center;
|
|
17751
|
+
display: flex;
|
|
17752
|
+
position: relative;
|
|
17753
|
+
overflow-x: auto;
|
|
17754
|
+
justify-content: space-between;
|
|
17755
|
+
z-index: 1;
|
|
17756
|
+
}
|
|
17757
|
+
.v-stepper-header .v-divider {
|
|
17758
|
+
margin: 0 -16px;
|
|
17759
|
+
}
|
|
17760
|
+
.v-stepper--alt-labels .v-stepper-header {
|
|
17761
|
+
height: auto;
|
|
17762
|
+
}
|
|
17763
|
+
.v-stepper--alt-labels .v-stepper-header .v-divider {
|
|
17764
|
+
align-self: flex-start;
|
|
17765
|
+
margin: 35px -67px 0;
|
|
17766
|
+
}
|
|
17767
|
+
|
|
17768
|
+
.v-stepper-window {
|
|
17769
|
+
margin: 1.5rem;
|
|
17770
|
+
}
|
|
17771
|
+
|
|
17772
|
+
.v-stepper-actions {
|
|
17773
|
+
display: flex;
|
|
17774
|
+
align-items: center;
|
|
17775
|
+
justify-content: space-between;
|
|
17776
|
+
padding: 1rem;
|
|
17777
|
+
}
|
|
17778
|
+
.v-stepper .v-stepper-actions {
|
|
17779
|
+
padding: 0 1.5rem 1rem;
|
|
17780
|
+
}
|
|
17781
|
+
.v-stepper-window-item .v-stepper-actions {
|
|
17782
|
+
padding: 1.5rem 0 0;
|
|
17783
|
+
}.v-stepper-item {
|
|
17784
|
+
align-items: center;
|
|
17785
|
+
align-self: stretch;
|
|
17786
|
+
display: inline-flex;
|
|
17787
|
+
flex: none;
|
|
17788
|
+
opacity: var(--v-medium-emphasis-opacity);
|
|
17789
|
+
padding: 1.5rem;
|
|
17790
|
+
transition-duration: 0.2s;
|
|
17791
|
+
transition-property: opacity;
|
|
17792
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
17793
|
+
}
|
|
17794
|
+
.v-stepper-item--selected {
|
|
17795
|
+
opacity: 1;
|
|
17796
|
+
}
|
|
17797
|
+
.v-stepper-item--error {
|
|
17798
|
+
color: rgb(var(--v-theme-error));
|
|
17799
|
+
}
|
|
17800
|
+
.v-stepper-item--disabled {
|
|
17801
|
+
opacity: var(--v-medium-emphasis-opacity);
|
|
17802
|
+
pointer-events: none;
|
|
17803
|
+
}
|
|
17804
|
+
.v-stepper--alt-labels .v-stepper-item {
|
|
17805
|
+
flex-direction: column;
|
|
17806
|
+
justify-content: flex-start;
|
|
17807
|
+
align-items: center;
|
|
17808
|
+
flex-basis: 175px;
|
|
17809
|
+
}
|
|
17810
|
+
|
|
17811
|
+
.v-stepper-item__avatar.v-avatar {
|
|
17812
|
+
background: rgba(var(--v-theme-surface-variant), var(--v-medium-emphasis-opacity));
|
|
17813
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
|
17814
|
+
font-size: 0.75rem;
|
|
17815
|
+
margin-inline-end: 8px;
|
|
17816
|
+
}
|
|
17817
|
+
.v-stepper-item__avatar.v-avatar .v-icon {
|
|
17818
|
+
font-size: 0.875rem;
|
|
17819
|
+
}
|
|
17820
|
+
.v-stepper-item--selected .v-stepper-item__avatar.v-avatar, .v-stepper-item--complete .v-stepper-item__avatar.v-avatar {
|
|
17821
|
+
background: rgb(var(--v-theme-surface-variant));
|
|
17822
|
+
}
|
|
17823
|
+
.v-stepper-item--error .v-stepper-item__avatar.v-avatar {
|
|
17824
|
+
background: rgb(var(--v-theme-error));
|
|
17825
|
+
}
|
|
17826
|
+
.v-stepper--alt-labels .v-stepper-item__avatar.v-avatar {
|
|
17827
|
+
margin-bottom: 16px;
|
|
17828
|
+
margin-inline-end: 0;
|
|
17829
|
+
}
|
|
17830
|
+
|
|
17831
|
+
.v-stepper-item__title {
|
|
17832
|
+
line-height: 1;
|
|
17833
|
+
}
|
|
17834
|
+
.v-stepper--mobile .v-stepper-item__title {
|
|
17835
|
+
display: none;
|
|
17836
|
+
}
|
|
17837
|
+
|
|
17838
|
+
.v-stepper-item__subtitle {
|
|
17839
|
+
font-size: 0.75rem;
|
|
17840
|
+
text-align: left;
|
|
17841
|
+
line-height: 1;
|
|
17842
|
+
opacity: var(--v-medium-emphasis-opacity);
|
|
17843
|
+
}
|
|
17844
|
+
.v-stepper--alt-labels .v-stepper-item__subtitle {
|
|
17845
|
+
text-align: center;
|
|
17846
|
+
}
|
|
17847
|
+
.v-stepper--mobile .v-stepper-item__subtitle {
|
|
17848
|
+
display: none;
|
|
16823
17849
|
}.v-application {
|
|
16824
17850
|
display: flex;
|
|
16825
17851
|
background: rgb(var(--v-theme-background));
|
|
@@ -18042,19 +19068,6 @@ html.overflow-y-hidden {
|
|
|
18042
19068
|
}
|
|
18043
19069
|
.v-btn-group--tile {
|
|
18044
19070
|
border-radius: 0;
|
|
18045
|
-
}.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
|
|
18046
|
-
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
|
18047
|
-
}
|
|
18048
|
-
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
|
|
18049
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
|
18050
|
-
}
|
|
18051
|
-
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
|
|
18052
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
18053
|
-
}
|
|
18054
|
-
@supports not selector(:focus-visible) {
|
|
18055
|
-
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
|
|
18056
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
18057
|
-
}
|
|
18058
19071
|
}.v-card {
|
|
18059
19072
|
display: block;
|
|
18060
19073
|
overflow: hidden;
|
|
@@ -18345,6 +19358,19 @@ html.overflow-y-hidden {
|
|
|
18345
19358
|
pointer-events: none;
|
|
18346
19359
|
opacity: 0;
|
|
18347
19360
|
transition: opacity 0.2s ease-in-out;
|
|
19361
|
+
}.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
|
|
19362
|
+
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
|
19363
|
+
}
|
|
19364
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
|
|
19365
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
|
19366
|
+
}
|
|
19367
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
|
|
19368
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
19369
|
+
}
|
|
19370
|
+
@supports not selector(:focus-visible) {
|
|
19371
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
|
|
19372
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
19373
|
+
}
|
|
18348
19374
|
}.v-carousel {
|
|
18349
19375
|
overflow: hidden;
|
|
18350
19376
|
position: relative;
|
|
@@ -18817,6 +19843,24 @@ html.overflow-y-hidden {
|
|
|
18817
19843
|
|
|
18818
19844
|
.v-chip--label {
|
|
18819
19845
|
border-radius: 4px;
|
|
19846
|
+
}.v-chip-group {
|
|
19847
|
+
display: flex;
|
|
19848
|
+
max-width: 100%;
|
|
19849
|
+
min-width: 0;
|
|
19850
|
+
overflow-x: auto;
|
|
19851
|
+
padding: 4px 0;
|
|
19852
|
+
flex-wrap: wrap;
|
|
19853
|
+
}
|
|
19854
|
+
.v-chip-group .v-chip {
|
|
19855
|
+
margin: 4px 8px 4px 0;
|
|
19856
|
+
}
|
|
19857
|
+
.v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
|
|
19858
|
+
opacity: var(--v-activated-opacity);
|
|
19859
|
+
}
|
|
19860
|
+
|
|
19861
|
+
.v-chip-group--column {
|
|
19862
|
+
flex-wrap: wrap;
|
|
19863
|
+
white-space: normal;
|
|
18820
19864
|
}.v-color-picker {
|
|
18821
19865
|
align-self: flex-start;
|
|
18822
19866
|
contain: content;
|
|
@@ -18837,11 +19881,90 @@ html.overflow-y-hidden {
|
|
|
18837
19881
|
}
|
|
18838
19882
|
.v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
|
|
18839
19883
|
box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
|
|
18840
|
-
}.v-
|
|
18841
|
-
|
|
18842
|
-
|
|
18843
|
-
|
|
18844
|
-
|
|
19884
|
+
}.v-combobox .v-field .v-text-field__prefix,
|
|
19885
|
+
.v-combobox .v-field .v-text-field__suffix,
|
|
19886
|
+
.v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
|
|
19887
|
+
cursor: text;
|
|
19888
|
+
}
|
|
19889
|
+
.v-combobox .v-field .v-field__input > input {
|
|
19890
|
+
align-self: flex-start;
|
|
19891
|
+
flex: 1 1;
|
|
19892
|
+
}
|
|
19893
|
+
.v-combobox .v-field input {
|
|
19894
|
+
min-width: 64px;
|
|
19895
|
+
}
|
|
19896
|
+
.v-combobox .v-field:not(.v-field--focused) input {
|
|
19897
|
+
min-width: 0;
|
|
19898
|
+
}
|
|
19899
|
+
.v-combobox .v-field--dirty .v-combobox__selection {
|
|
19900
|
+
margin-inline-end: 2px;
|
|
19901
|
+
}
|
|
19902
|
+
.v-combobox .v-combobox__selection-text {
|
|
19903
|
+
overflow: hidden;
|
|
19904
|
+
text-overflow: ellipsis;
|
|
19905
|
+
white-space: nowrap;
|
|
19906
|
+
}
|
|
19907
|
+
|
|
19908
|
+
.v-combobox__content {
|
|
19909
|
+
overflow: hidden;
|
|
19910
|
+
box-shadow: 0px 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 4px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 10px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
|
|
19911
|
+
border-radius: 4px;
|
|
19912
|
+
}
|
|
19913
|
+
.v-combobox__mask {
|
|
19914
|
+
background: rgb(var(--v-theme-on-surface-variant));
|
|
19915
|
+
}
|
|
19916
|
+
.v-combobox__selection {
|
|
19917
|
+
display: inline-flex;
|
|
19918
|
+
align-items: center;
|
|
19919
|
+
letter-spacing: inherit;
|
|
19920
|
+
line-height: inherit;
|
|
19921
|
+
max-width: 90%;
|
|
19922
|
+
}
|
|
19923
|
+
.v-combobox__selection {
|
|
19924
|
+
margin-top: var(--v-input-chips-margin-top);
|
|
19925
|
+
margin-bottom: var(--v-input-chips-margin-bottom);
|
|
19926
|
+
}
|
|
19927
|
+
.v-combobox__selection:first-child {
|
|
19928
|
+
margin-inline-start: 0;
|
|
19929
|
+
}
|
|
19930
|
+
.v-combobox--selecting-index .v-combobox__selection {
|
|
19931
|
+
opacity: var(--v-medium-emphasis-opacity);
|
|
19932
|
+
}
|
|
19933
|
+
.v-combobox--selecting-index .v-combobox__selection--selected {
|
|
19934
|
+
opacity: 1;
|
|
19935
|
+
}
|
|
19936
|
+
.v-combobox--selecting-index .v-field__input > input {
|
|
19937
|
+
caret-color: transparent;
|
|
19938
|
+
}
|
|
19939
|
+
.v-combobox--single.v-text-field input {
|
|
19940
|
+
flex: 1 1;
|
|
19941
|
+
position: absolute;
|
|
19942
|
+
left: 0;
|
|
19943
|
+
right: 0;
|
|
19944
|
+
width: 100%;
|
|
19945
|
+
padding-inline-start: inherit;
|
|
19946
|
+
padding-inline-end: inherit;
|
|
19947
|
+
}
|
|
19948
|
+
.v-combobox--single .v-field--variant-outlined input {
|
|
19949
|
+
top: 50%;
|
|
19950
|
+
transform: translateY(calc(-50% - (var(--v-input-chips-margin-top) + var(--v-input-chips-margin-bottom)) / 2));
|
|
19951
|
+
}
|
|
19952
|
+
.v-combobox--single .v-field--active input {
|
|
19953
|
+
transition: none;
|
|
19954
|
+
}
|
|
19955
|
+
.v-combobox--single .v-field--dirty:not(.v-field--focused) input {
|
|
19956
|
+
opacity: 0;
|
|
19957
|
+
}
|
|
19958
|
+
.v-combobox--single .v-field--focused .v-combobox__selection {
|
|
19959
|
+
opacity: 0;
|
|
19960
|
+
}
|
|
19961
|
+
.v-combobox__menu-icon {
|
|
19962
|
+
margin-inline-start: 4px;
|
|
19963
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
19964
|
+
}
|
|
19965
|
+
.v-combobox--active-menu .v-combobox__menu-icon {
|
|
19966
|
+
opacity: var(--v-high-emphasis-opacity);
|
|
19967
|
+
transform: rotate(180deg);
|
|
18845
19968
|
}.v-container {
|
|
18846
19969
|
width: 100%;
|
|
18847
19970
|
padding: 16px;
|
|
@@ -19738,90 +20861,11 @@ html.overflow-y-hidden {
|
|
|
19738
20861
|
.v-locale--is-rtl.offset-xxl-11, .v-locale--is-rtl .offset-xxl-11 {
|
|
19739
20862
|
margin-right: 91.6666666667%;
|
|
19740
20863
|
}
|
|
19741
|
-
}.v-
|
|
19742
|
-
|
|
19743
|
-
|
|
19744
|
-
|
|
19745
|
-
|
|
19746
|
-
.v-combobox .v-field .v-field__input > input {
|
|
19747
|
-
align-self: flex-start;
|
|
19748
|
-
flex: 1 1;
|
|
19749
|
-
}
|
|
19750
|
-
.v-combobox .v-field input {
|
|
19751
|
-
min-width: 64px;
|
|
19752
|
-
}
|
|
19753
|
-
.v-combobox .v-field:not(.v-field--focused) input {
|
|
19754
|
-
min-width: 0;
|
|
19755
|
-
}
|
|
19756
|
-
.v-combobox .v-field--dirty .v-combobox__selection {
|
|
19757
|
-
margin-inline-end: 2px;
|
|
19758
|
-
}
|
|
19759
|
-
.v-combobox .v-combobox__selection-text {
|
|
19760
|
-
overflow: hidden;
|
|
19761
|
-
text-overflow: ellipsis;
|
|
19762
|
-
white-space: nowrap;
|
|
19763
|
-
}
|
|
19764
|
-
|
|
19765
|
-
.v-combobox__content {
|
|
19766
|
-
overflow: hidden;
|
|
19767
|
-
box-shadow: 0px 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 4px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 10px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
|
|
19768
|
-
border-radius: 4px;
|
|
19769
|
-
}
|
|
19770
|
-
.v-combobox__mask {
|
|
19771
|
-
background: rgb(var(--v-theme-on-surface-variant));
|
|
19772
|
-
}
|
|
19773
|
-
.v-combobox__selection {
|
|
19774
|
-
display: inline-flex;
|
|
19775
|
-
align-items: center;
|
|
19776
|
-
letter-spacing: inherit;
|
|
19777
|
-
line-height: inherit;
|
|
19778
|
-
max-width: 90%;
|
|
19779
|
-
}
|
|
19780
|
-
.v-combobox__selection {
|
|
19781
|
-
margin-top: var(--v-input-chips-margin-top);
|
|
19782
|
-
margin-bottom: var(--v-input-chips-margin-bottom);
|
|
19783
|
-
}
|
|
19784
|
-
.v-combobox__selection:first-child {
|
|
19785
|
-
margin-inline-start: 0;
|
|
19786
|
-
}
|
|
19787
|
-
.v-combobox--selecting-index .v-combobox__selection {
|
|
19788
|
-
opacity: var(--v-medium-emphasis-opacity);
|
|
19789
|
-
}
|
|
19790
|
-
.v-combobox--selecting-index .v-combobox__selection--selected {
|
|
19791
|
-
opacity: 1;
|
|
19792
|
-
}
|
|
19793
|
-
.v-combobox--selecting-index .v-field__input > input {
|
|
19794
|
-
caret-color: transparent;
|
|
19795
|
-
}
|
|
19796
|
-
.v-combobox--single.v-text-field input {
|
|
19797
|
-
flex: 1 1;
|
|
19798
|
-
position: absolute;
|
|
19799
|
-
left: 0;
|
|
19800
|
-
right: 0;
|
|
19801
|
-
width: 100%;
|
|
19802
|
-
padding-inline-start: inherit;
|
|
19803
|
-
padding-inline-end: inherit;
|
|
19804
|
-
}
|
|
19805
|
-
.v-combobox--single .v-field--variant-outlined input {
|
|
19806
|
-
top: 50%;
|
|
19807
|
-
transform: translateY(calc(-50% - (var(--v-input-chips-margin-top) + var(--v-input-chips-margin-bottom)) / 2));
|
|
19808
|
-
}
|
|
19809
|
-
.v-combobox--single .v-field--active input {
|
|
19810
|
-
transition: none;
|
|
19811
|
-
}
|
|
19812
|
-
.v-combobox--single .v-field--dirty:not(.v-field--focused) input {
|
|
19813
|
-
opacity: 0;
|
|
19814
|
-
}
|
|
19815
|
-
.v-combobox--single .v-field--focused .v-combobox__selection {
|
|
19816
|
-
opacity: 0;
|
|
19817
|
-
}
|
|
19818
|
-
.v-combobox__menu-icon {
|
|
19819
|
-
margin-inline-start: 4px;
|
|
19820
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
19821
|
-
}
|
|
19822
|
-
.v-combobox--active-menu .v-combobox__menu-icon {
|
|
19823
|
-
opacity: var(--v-high-emphasis-opacity);
|
|
19824
|
-
transform: rotate(180deg);
|
|
20864
|
+
}.v-counter {
|
|
20865
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
|
20866
|
+
flex: 0 1 auto;
|
|
20867
|
+
font-size: 12px;
|
|
20868
|
+
transition-duration: 150ms;
|
|
19825
20869
|
}.v-dialog {
|
|
19826
20870
|
align-items: center;
|
|
19827
20871
|
justify-content: center;
|
|
@@ -19898,241 +20942,44 @@ html.overflow-y-hidden {
|
|
|
19898
20942
|
.v-dialog--scrollable > .v-overlay__content > form > .v-card {
|
|
19899
20943
|
display: flex;
|
|
19900
20944
|
flex: 1 1 100%;
|
|
19901
|
-
flex-direction: column;
|
|
19902
|
-
max-height: 100%;
|
|
19903
|
-
max-width: 100%;
|
|
19904
|
-
}
|
|
19905
|
-
.v-dialog--scrollable > .v-overlay__content > .v-card > .v-card-text,
|
|
19906
|
-
.v-dialog--scrollable > .v-overlay__content > form > .v-card > .v-card-text {
|
|
19907
|
-
-webkit-backface-visibility: hidden;
|
|
19908
|
-
backface-visibility: hidden;
|
|
19909
|
-
overflow-y: auto;
|
|
19910
|
-
}.v-divider {
|
|
19911
|
-
display: block;
|
|
19912
|
-
flex: 1 1 100%;
|
|
19913
|
-
height: 0px;
|
|
19914
|
-
max-height: 0px;
|
|
19915
|
-
opacity: var(--v-border-opacity);
|
|
19916
|
-
transition: inherit;
|
|
19917
|
-
border-style: solid;
|
|
19918
|
-
border-width: thin 0 0 0;
|
|
19919
|
-
}
|
|
19920
|
-
.v-divider--vertical {
|
|
19921
|
-
align-self: stretch;
|
|
19922
|
-
border-width: 0 thin 0 0;
|
|
19923
|
-
display: inline-flex;
|
|
19924
|
-
height: inherit;
|
|
19925
|
-
margin-left: -1px;
|
|
19926
|
-
max-height: 100%;
|
|
19927
|
-
max-width: 0px;
|
|
19928
|
-
vertical-align: text-bottom;
|
|
19929
|
-
width: 0px;
|
|
19930
|
-
}
|
|
19931
|
-
.v-divider--inset:not(.v-divider--vertical) {
|
|
19932
|
-
max-width: calc(100% - 72px);
|
|
19933
|
-
margin-inline-start: 72px;
|
|
19934
|
-
}
|
|
19935
|
-
.v-divider--inset.v-divider--vertical {
|
|
19936
|
-
margin-bottom: 8px;
|
|
19937
|
-
margin-top: 8px;
|
|
19938
|
-
max-height: calc(100% - 16px);
|
|
19939
|
-
}.v-expansion-panel {
|
|
19940
|
-
background-color: rgb(var(--v-theme-surface));
|
|
19941
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
19942
|
-
}
|
|
19943
|
-
.v-expansion-panel:not(:first-child)::after {
|
|
19944
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
19945
|
-
}
|
|
19946
|
-
.v-expansion-panel--disabled .v-expansion-panel-title {
|
|
19947
|
-
color: rgba(var(--v-theme-on-surface), 0.26);
|
|
19948
|
-
}
|
|
19949
|
-
.v-expansion-panel--disabled .v-expansion-panel-title .v-expansion-panel-title__overlay {
|
|
19950
|
-
opacity: 0.4615384615;
|
|
19951
|
-
}
|
|
19952
|
-
|
|
19953
|
-
.v-expansion-panels {
|
|
19954
|
-
display: flex;
|
|
19955
|
-
flex-wrap: wrap;
|
|
19956
|
-
justify-content: center;
|
|
19957
|
-
list-style-type: none;
|
|
19958
|
-
padding: 0;
|
|
19959
|
-
width: 100%;
|
|
19960
|
-
position: relative;
|
|
19961
|
-
z-index: 1;
|
|
19962
|
-
}
|
|
19963
|
-
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
|
|
19964
|
-
border-bottom-left-radius: 0 !important;
|
|
19965
|
-
border-bottom-right-radius: 0 !important;
|
|
19966
|
-
}
|
|
19967
|
-
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
|
|
19968
|
-
border-top-left-radius: 0 !important;
|
|
19969
|
-
border-top-right-radius: 0 !important;
|
|
19970
|
-
}
|
|
19971
|
-
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :first-child:not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
|
|
19972
|
-
border-bottom-left-radius: 0 !important;
|
|
19973
|
-
border-bottom-right-radius: 0 !important;
|
|
19974
|
-
}
|
|
19975
|
-
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :last-child:not(:first-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
|
|
19976
|
-
border-top-left-radius: 0 !important;
|
|
19977
|
-
border-top-right-radius: 0 !important;
|
|
19978
|
-
}
|
|
19979
|
-
.v-expansion-panels--variant-accordion > :first-child {
|
|
19980
|
-
border-bottom-left-radius: 0 !important;
|
|
19981
|
-
border-bottom-right-radius: 0 !important;
|
|
19982
|
-
}
|
|
19983
|
-
.v-expansion-panels--variant-accordion > :last-child {
|
|
19984
|
-
border-top-left-radius: 0 !important;
|
|
19985
|
-
border-top-right-radius: 0 !important;
|
|
19986
|
-
}
|
|
19987
|
-
.v-expansion-panels--variant-accordion > :last-child .v-expansion-panel-title--active {
|
|
19988
|
-
border-bottom-left-radius: initial;
|
|
19989
|
-
border-bottom-right-radius: initial;
|
|
19990
|
-
}
|
|
19991
|
-
.v-expansion-panels--variant-accordion > :not(:first-child):not(:last-child) {
|
|
19992
|
-
border-radius: 0 !important;
|
|
19993
|
-
}
|
|
19994
|
-
.v-expansion-panels--variant-accordion .v-expansion-panel-title__overlay {
|
|
19995
|
-
transition: 0.3s border-radius cubic-bezier(0.4, 0, 0.2, 1);
|
|
19996
|
-
}
|
|
19997
|
-
|
|
19998
|
-
.v-expansion-panel {
|
|
19999
|
-
flex: 1 0 100%;
|
|
20000
|
-
max-width: 100%;
|
|
20001
|
-
position: relative;
|
|
20002
|
-
transition: 0.3s all cubic-bezier(0.4, 0, 0.2, 1);
|
|
20003
|
-
transition-property: margin-top, border-radius, border, max-width;
|
|
20004
|
-
border-radius: 4px;
|
|
20005
|
-
}
|
|
20006
|
-
.v-expansion-panel:not(:first-child)::after {
|
|
20007
|
-
border-top-style: solid;
|
|
20008
|
-
border-top-width: thin;
|
|
20009
|
-
content: "";
|
|
20010
|
-
left: 0;
|
|
20011
|
-
position: absolute;
|
|
20012
|
-
right: 0;
|
|
20013
|
-
top: 0;
|
|
20014
|
-
transition: 0.3s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
|
20015
|
-
}
|
|
20016
|
-
.v-expansion-panel--disabled .v-expansion-panel-title {
|
|
20017
|
-
pointer-events: none;
|
|
20018
|
-
}
|
|
20019
|
-
.v-expansion-panel--active:not(:first-child),
|
|
20020
|
-
.v-expansion-panel--active + .v-expansion-panel {
|
|
20021
|
-
margin-top: 16px;
|
|
20022
|
-
}
|
|
20023
|
-
.v-expansion-panel--active:not(:first-child)::after,
|
|
20024
|
-
.v-expansion-panel--active + .v-expansion-panel::after {
|
|
20025
|
-
opacity: 0;
|
|
20026
|
-
}
|
|
20027
|
-
.v-expansion-panel--active > .v-expansion-panel-title {
|
|
20028
|
-
border-bottom-left-radius: 0;
|
|
20029
|
-
border-bottom-right-radius: 0;
|
|
20030
|
-
min-height: 64px;
|
|
20031
|
-
}
|
|
20032
|
-
|
|
20033
|
-
.v-expansion-panel__shadow {
|
|
20034
|
-
position: absolute;
|
|
20035
|
-
top: 0;
|
|
20036
|
-
left: 0;
|
|
20037
|
-
width: 100%;
|
|
20038
|
-
height: 100%;
|
|
20039
|
-
box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
|
|
20040
|
-
border-radius: inherit;
|
|
20041
|
-
z-index: -1;
|
|
20042
|
-
}
|
|
20043
|
-
|
|
20044
|
-
.v-expansion-panel-title {
|
|
20045
|
-
align-items: center;
|
|
20046
|
-
text-align: start;
|
|
20047
|
-
border-radius: inherit;
|
|
20048
|
-
display: flex;
|
|
20049
|
-
font-size: 0.9375rem;
|
|
20050
|
-
line-height: 1;
|
|
20051
|
-
min-height: 48px;
|
|
20052
|
-
outline: none;
|
|
20053
|
-
padding: 16px 24px;
|
|
20054
|
-
position: relative;
|
|
20055
|
-
transition: 0.3s min-height cubic-bezier(0.4, 0, 0.2, 1);
|
|
20056
|
-
width: 100%;
|
|
20057
|
-
justify-content: space-between;
|
|
20058
|
-
}
|
|
20059
|
-
.v-expansion-panel-title:hover > .v-expansion-panel-title__overlay {
|
|
20060
|
-
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
|
20061
|
-
}
|
|
20062
|
-
.v-expansion-panel-title:focus-visible > .v-expansion-panel-title__overlay {
|
|
20063
|
-
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
|
20064
|
-
}
|
|
20065
|
-
@supports not selector(:focus-visible) {
|
|
20066
|
-
.v-expansion-panel-title:focus > .v-expansion-panel-title__overlay {
|
|
20067
|
-
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
|
20068
|
-
}
|
|
20069
|
-
}
|
|
20070
|
-
.v-expansion-panel-title--active > .v-expansion-panel-title__overlay, .v-expansion-panel-title[aria-haspopup=menu][aria-expanded=true] > .v-expansion-panel-title__overlay {
|
|
20071
|
-
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
|
20072
|
-
}
|
|
20073
|
-
.v-expansion-panel-title--active:hover > .v-expansion-panel-title__overlay, .v-expansion-panel-title[aria-haspopup=menu][aria-expanded=true]:hover > .v-expansion-panel-title__overlay {
|
|
20074
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
|
20075
|
-
}
|
|
20076
|
-
.v-expansion-panel-title--active:focus-visible > .v-expansion-panel-title__overlay, .v-expansion-panel-title[aria-haspopup=menu][aria-expanded=true]:focus-visible > .v-expansion-panel-title__overlay {
|
|
20077
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
20078
|
-
}
|
|
20079
|
-
@supports not selector(:focus-visible) {
|
|
20080
|
-
.v-expansion-panel-title--active:focus > .v-expansion-panel-title__overlay, .v-expansion-panel-title[aria-haspopup=menu][aria-expanded=true]:focus > .v-expansion-panel-title__overlay {
|
|
20081
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
20082
|
-
}
|
|
20083
|
-
}
|
|
20084
|
-
.v-expansion-panel-title--active::before {
|
|
20085
|
-
opacity: 0.12;
|
|
20086
|
-
}
|
|
20087
|
-
|
|
20088
|
-
.v-expansion-panel-title__overlay {
|
|
20089
|
-
position: absolute;
|
|
20090
|
-
top: 0;
|
|
20091
|
-
left: 0;
|
|
20092
|
-
width: 100%;
|
|
20093
|
-
height: 100%;
|
|
20094
|
-
background-color: currentColor;
|
|
20095
|
-
border-radius: inherit;
|
|
20096
|
-
opacity: 0;
|
|
20097
|
-
}
|
|
20098
|
-
|
|
20099
|
-
.v-expansion-panel-title__icon {
|
|
20100
|
-
display: inline-flex;
|
|
20101
|
-
margin-bottom: -4px;
|
|
20102
|
-
margin-top: -4px;
|
|
20103
|
-
-webkit-user-select: none;
|
|
20104
|
-
user-select: none;
|
|
20105
|
-
margin-inline-start: auto;
|
|
20106
|
-
}
|
|
20107
|
-
|
|
20108
|
-
.v-expansion-panel-text {
|
|
20109
|
-
display: flex;
|
|
20110
|
-
}
|
|
20111
|
-
.v-expansion-panel-text__wrapper {
|
|
20112
|
-
padding: 8px 24px 16px;
|
|
20113
|
-
flex: 1 1 auto;
|
|
20114
|
-
max-width: 100%;
|
|
20115
|
-
}
|
|
20116
|
-
|
|
20117
|
-
.v-expansion-panels--variant-accordion > .v-expansion-panel {
|
|
20118
|
-
margin-top: 0;
|
|
20119
|
-
}
|
|
20120
|
-
.v-expansion-panels--variant-accordion > .v-expansion-panel::after {
|
|
20121
|
-
opacity: 1;
|
|
20945
|
+
flex-direction: column;
|
|
20946
|
+
max-height: 100%;
|
|
20947
|
+
max-width: 100%;
|
|
20122
20948
|
}
|
|
20123
|
-
|
|
20124
|
-
.v-
|
|
20125
|
-
|
|
20949
|
+
.v-dialog--scrollable > .v-overlay__content > .v-card > .v-card-text,
|
|
20950
|
+
.v-dialog--scrollable > .v-overlay__content > form > .v-card > .v-card-text {
|
|
20951
|
+
-webkit-backface-visibility: hidden;
|
|
20952
|
+
backface-visibility: hidden;
|
|
20953
|
+
overflow-y: auto;
|
|
20954
|
+
}.v-divider {
|
|
20955
|
+
display: block;
|
|
20956
|
+
flex: 1 1 100%;
|
|
20957
|
+
height: 0px;
|
|
20958
|
+
max-height: 0px;
|
|
20959
|
+
opacity: var(--v-border-opacity);
|
|
20960
|
+
transition: inherit;
|
|
20961
|
+
border-style: solid;
|
|
20962
|
+
border-width: thin 0 0 0;
|
|
20126
20963
|
}
|
|
20127
|
-
.v-
|
|
20128
|
-
|
|
20964
|
+
.v-divider--vertical {
|
|
20965
|
+
align-self: stretch;
|
|
20966
|
+
border-width: 0 thin 0 0;
|
|
20967
|
+
display: inline-flex;
|
|
20968
|
+
height: inherit;
|
|
20969
|
+
margin-left: -1px;
|
|
20970
|
+
max-height: 100%;
|
|
20971
|
+
max-width: 0px;
|
|
20972
|
+
vertical-align: text-bottom;
|
|
20973
|
+
width: 0px;
|
|
20129
20974
|
}
|
|
20130
|
-
|
|
20131
|
-
|
|
20132
|
-
|
|
20975
|
+
.v-divider--inset:not(.v-divider--vertical) {
|
|
20976
|
+
max-width: calc(100% - 72px);
|
|
20977
|
+
margin-inline-start: 72px;
|
|
20133
20978
|
}
|
|
20134
|
-
.v-
|
|
20135
|
-
|
|
20979
|
+
.v-divider--inset.v-divider--vertical {
|
|
20980
|
+
margin-bottom: 8px;
|
|
20981
|
+
margin-top: 8px;
|
|
20982
|
+
max-height: calc(100% - 16px);
|
|
20136
20983
|
}/* region INPUT */
|
|
20137
20984
|
.v-field {
|
|
20138
20985
|
display: grid;
|
|
@@ -20696,24 +21543,203 @@ textarea.v-field__input::placeholder {
|
|
|
20696
21543
|
.v-file-input .v-chip {
|
|
20697
21544
|
margin-top: var(--v-input-chips-margin-top);
|
|
20698
21545
|
margin-bottom: var(--v-input-chips-margin-bottom);
|
|
20699
|
-
}.v-
|
|
21546
|
+
}.v-expansion-panel {
|
|
21547
|
+
background-color: rgb(var(--v-theme-surface));
|
|
21548
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
21549
|
+
}
|
|
21550
|
+
.v-expansion-panel:not(:first-child)::after {
|
|
21551
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
21552
|
+
}
|
|
21553
|
+
.v-expansion-panel--disabled .v-expansion-panel-title {
|
|
21554
|
+
color: rgba(var(--v-theme-on-surface), 0.26);
|
|
21555
|
+
}
|
|
21556
|
+
.v-expansion-panel--disabled .v-expansion-panel-title .v-expansion-panel-title__overlay {
|
|
21557
|
+
opacity: 0.4615384615;
|
|
21558
|
+
}
|
|
21559
|
+
|
|
21560
|
+
.v-expansion-panels {
|
|
20700
21561
|
display: flex;
|
|
20701
|
-
max-width: 100%;
|
|
20702
|
-
min-width: 0;
|
|
20703
|
-
overflow-x: auto;
|
|
20704
|
-
padding: 4px 0;
|
|
20705
21562
|
flex-wrap: wrap;
|
|
21563
|
+
justify-content: center;
|
|
21564
|
+
list-style-type: none;
|
|
21565
|
+
padding: 0;
|
|
21566
|
+
width: 100%;
|
|
21567
|
+
position: relative;
|
|
21568
|
+
z-index: 1;
|
|
20706
21569
|
}
|
|
20707
|
-
.v-
|
|
20708
|
-
|
|
21570
|
+
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
|
|
21571
|
+
border-bottom-left-radius: 0 !important;
|
|
21572
|
+
border-bottom-right-radius: 0 !important;
|
|
20709
21573
|
}
|
|
20710
|
-
.v-
|
|
20711
|
-
|
|
21574
|
+
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
|
|
21575
|
+
border-top-left-radius: 0 !important;
|
|
21576
|
+
border-top-right-radius: 0 !important;
|
|
21577
|
+
}
|
|
21578
|
+
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :first-child:not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
|
|
21579
|
+
border-bottom-left-radius: 0 !important;
|
|
21580
|
+
border-bottom-right-radius: 0 !important;
|
|
21581
|
+
}
|
|
21582
|
+
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :last-child:not(:first-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
|
|
21583
|
+
border-top-left-radius: 0 !important;
|
|
21584
|
+
border-top-right-radius: 0 !important;
|
|
21585
|
+
}
|
|
21586
|
+
.v-expansion-panels--variant-accordion > :first-child {
|
|
21587
|
+
border-bottom-left-radius: 0 !important;
|
|
21588
|
+
border-bottom-right-radius: 0 !important;
|
|
21589
|
+
}
|
|
21590
|
+
.v-expansion-panels--variant-accordion > :last-child {
|
|
21591
|
+
border-top-left-radius: 0 !important;
|
|
21592
|
+
border-top-right-radius: 0 !important;
|
|
21593
|
+
}
|
|
21594
|
+
.v-expansion-panels--variant-accordion > :last-child .v-expansion-panel-title--active {
|
|
21595
|
+
border-bottom-left-radius: initial;
|
|
21596
|
+
border-bottom-right-radius: initial;
|
|
21597
|
+
}
|
|
21598
|
+
.v-expansion-panels--variant-accordion > :not(:first-child):not(:last-child) {
|
|
21599
|
+
border-radius: 0 !important;
|
|
21600
|
+
}
|
|
21601
|
+
.v-expansion-panels--variant-accordion .v-expansion-panel-title__overlay {
|
|
21602
|
+
transition: 0.3s border-radius cubic-bezier(0.4, 0, 0.2, 1);
|
|
20712
21603
|
}
|
|
20713
21604
|
|
|
20714
|
-
.v-
|
|
20715
|
-
flex
|
|
20716
|
-
|
|
21605
|
+
.v-expansion-panel {
|
|
21606
|
+
flex: 1 0 100%;
|
|
21607
|
+
max-width: 100%;
|
|
21608
|
+
position: relative;
|
|
21609
|
+
transition: 0.3s all cubic-bezier(0.4, 0, 0.2, 1);
|
|
21610
|
+
transition-property: margin-top, border-radius, border, max-width;
|
|
21611
|
+
border-radius: 4px;
|
|
21612
|
+
}
|
|
21613
|
+
.v-expansion-panel:not(:first-child)::after {
|
|
21614
|
+
border-top-style: solid;
|
|
21615
|
+
border-top-width: thin;
|
|
21616
|
+
content: "";
|
|
21617
|
+
left: 0;
|
|
21618
|
+
position: absolute;
|
|
21619
|
+
right: 0;
|
|
21620
|
+
top: 0;
|
|
21621
|
+
transition: 0.3s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
|
21622
|
+
}
|
|
21623
|
+
.v-expansion-panel--disabled .v-expansion-panel-title {
|
|
21624
|
+
pointer-events: none;
|
|
21625
|
+
}
|
|
21626
|
+
.v-expansion-panel--active:not(:first-child),
|
|
21627
|
+
.v-expansion-panel--active + .v-expansion-panel {
|
|
21628
|
+
margin-top: 16px;
|
|
21629
|
+
}
|
|
21630
|
+
.v-expansion-panel--active:not(:first-child)::after,
|
|
21631
|
+
.v-expansion-panel--active + .v-expansion-panel::after {
|
|
21632
|
+
opacity: 0;
|
|
21633
|
+
}
|
|
21634
|
+
.v-expansion-panel--active > .v-expansion-panel-title {
|
|
21635
|
+
border-bottom-left-radius: 0;
|
|
21636
|
+
border-bottom-right-radius: 0;
|
|
21637
|
+
min-height: 64px;
|
|
21638
|
+
}
|
|
21639
|
+
|
|
21640
|
+
.v-expansion-panel__shadow {
|
|
21641
|
+
position: absolute;
|
|
21642
|
+
top: 0;
|
|
21643
|
+
left: 0;
|
|
21644
|
+
width: 100%;
|
|
21645
|
+
height: 100%;
|
|
21646
|
+
box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
|
|
21647
|
+
border-radius: inherit;
|
|
21648
|
+
z-index: -1;
|
|
21649
|
+
}
|
|
21650
|
+
|
|
21651
|
+
.v-expansion-panel-title {
|
|
21652
|
+
align-items: center;
|
|
21653
|
+
text-align: start;
|
|
21654
|
+
border-radius: inherit;
|
|
21655
|
+
display: flex;
|
|
21656
|
+
font-size: 0.9375rem;
|
|
21657
|
+
line-height: 1;
|
|
21658
|
+
min-height: 48px;
|
|
21659
|
+
outline: none;
|
|
21660
|
+
padding: 16px 24px;
|
|
21661
|
+
position: relative;
|
|
21662
|
+
transition: 0.3s min-height cubic-bezier(0.4, 0, 0.2, 1);
|
|
21663
|
+
width: 100%;
|
|
21664
|
+
justify-content: space-between;
|
|
21665
|
+
}
|
|
21666
|
+
.v-expansion-panel-title:hover > .v-expansion-panel-title__overlay {
|
|
21667
|
+
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
|
21668
|
+
}
|
|
21669
|
+
.v-expansion-panel-title:focus-visible > .v-expansion-panel-title__overlay {
|
|
21670
|
+
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
|
21671
|
+
}
|
|
21672
|
+
@supports not selector(:focus-visible) {
|
|
21673
|
+
.v-expansion-panel-title:focus > .v-expansion-panel-title__overlay {
|
|
21674
|
+
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
|
21675
|
+
}
|
|
21676
|
+
}
|
|
21677
|
+
.v-expansion-panel-title--active > .v-expansion-panel-title__overlay, .v-expansion-panel-title[aria-haspopup=menu][aria-expanded=true] > .v-expansion-panel-title__overlay {
|
|
21678
|
+
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
|
21679
|
+
}
|
|
21680
|
+
.v-expansion-panel-title--active:hover > .v-expansion-panel-title__overlay, .v-expansion-panel-title[aria-haspopup=menu][aria-expanded=true]:hover > .v-expansion-panel-title__overlay {
|
|
21681
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
|
21682
|
+
}
|
|
21683
|
+
.v-expansion-panel-title--active:focus-visible > .v-expansion-panel-title__overlay, .v-expansion-panel-title[aria-haspopup=menu][aria-expanded=true]:focus-visible > .v-expansion-panel-title__overlay {
|
|
21684
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
21685
|
+
}
|
|
21686
|
+
@supports not selector(:focus-visible) {
|
|
21687
|
+
.v-expansion-panel-title--active:focus > .v-expansion-panel-title__overlay, .v-expansion-panel-title[aria-haspopup=menu][aria-expanded=true]:focus > .v-expansion-panel-title__overlay {
|
|
21688
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
21689
|
+
}
|
|
21690
|
+
}
|
|
21691
|
+
.v-expansion-panel-title--active::before {
|
|
21692
|
+
opacity: 0.12;
|
|
21693
|
+
}
|
|
21694
|
+
|
|
21695
|
+
.v-expansion-panel-title__overlay {
|
|
21696
|
+
position: absolute;
|
|
21697
|
+
top: 0;
|
|
21698
|
+
left: 0;
|
|
21699
|
+
width: 100%;
|
|
21700
|
+
height: 100%;
|
|
21701
|
+
background-color: currentColor;
|
|
21702
|
+
border-radius: inherit;
|
|
21703
|
+
opacity: 0;
|
|
21704
|
+
}
|
|
21705
|
+
|
|
21706
|
+
.v-expansion-panel-title__icon {
|
|
21707
|
+
display: inline-flex;
|
|
21708
|
+
margin-bottom: -4px;
|
|
21709
|
+
margin-top: -4px;
|
|
21710
|
+
-webkit-user-select: none;
|
|
21711
|
+
user-select: none;
|
|
21712
|
+
margin-inline-start: auto;
|
|
21713
|
+
}
|
|
21714
|
+
|
|
21715
|
+
.v-expansion-panel-text {
|
|
21716
|
+
display: flex;
|
|
21717
|
+
}
|
|
21718
|
+
.v-expansion-panel-text__wrapper {
|
|
21719
|
+
padding: 8px 24px 16px;
|
|
21720
|
+
flex: 1 1 auto;
|
|
21721
|
+
max-width: 100%;
|
|
21722
|
+
}
|
|
21723
|
+
|
|
21724
|
+
.v-expansion-panels--variant-accordion > .v-expansion-panel {
|
|
21725
|
+
margin-top: 0;
|
|
21726
|
+
}
|
|
21727
|
+
.v-expansion-panels--variant-accordion > .v-expansion-panel::after {
|
|
21728
|
+
opacity: 1;
|
|
21729
|
+
}
|
|
21730
|
+
|
|
21731
|
+
.v-expansion-panels--variant-popout > .v-expansion-panel {
|
|
21732
|
+
max-width: calc(100% - 32px);
|
|
21733
|
+
}
|
|
21734
|
+
.v-expansion-panels--variant-popout > .v-expansion-panel--active {
|
|
21735
|
+
max-width: calc(100% + 16px);
|
|
21736
|
+
}
|
|
21737
|
+
|
|
21738
|
+
.v-expansion-panels--variant-inset > .v-expansion-panel {
|
|
21739
|
+
max-width: 100%;
|
|
21740
|
+
}
|
|
21741
|
+
.v-expansion-panels--variant-inset > .v-expansion-panel--active {
|
|
21742
|
+
max-width: calc(100% - 32px);
|
|
20717
21743
|
}.v-footer {
|
|
20718
21744
|
align-items: center;
|
|
20719
21745
|
display: flex;
|
|
@@ -22460,6 +23486,7 @@ html.v-overlay-scroll-blocked {
|
|
|
22460
23486
|
max-width: 672px;
|
|
22461
23487
|
min-height: 48px;
|
|
22462
23488
|
min-width: 344px;
|
|
23489
|
+
overflow: hidden;
|
|
22463
23490
|
padding: 0;
|
|
22464
23491
|
border-radius: 4px;
|
|
22465
23492
|
}
|
|
@@ -22524,6 +23551,14 @@ html.v-overlay-scroll-blocked {
|
|
|
22524
23551
|
padding: 0 8px;
|
|
22525
23552
|
min-width: auto;
|
|
22526
23553
|
}
|
|
23554
|
+
.v-snackbar__timer {
|
|
23555
|
+
width: 100%;
|
|
23556
|
+
position: absolute;
|
|
23557
|
+
top: 0;
|
|
23558
|
+
}
|
|
23559
|
+
.v-snackbar__timer .v-progress-linear {
|
|
23560
|
+
transition: 0.2s linear;
|
|
23561
|
+
}
|
|
22527
23562
|
.v-snackbar--absolute {
|
|
22528
23563
|
position: absolute;
|
|
22529
23564
|
z-index: 1;
|
|
@@ -23866,6 +24901,11 @@ html.v-overlay-scroll-blocked {
|
|
|
23866
24901
|
align-items: center;
|
|
23867
24902
|
display: flex;
|
|
23868
24903
|
margin-bottom: 0;
|
|
24904
|
+
}
|
|
24905
|
+
|
|
24906
|
+
.v-color-picker-preview__eye-dropper {
|
|
24907
|
+
position: relative;
|
|
24908
|
+
margin-right: 12px;
|
|
23869
24909
|
}.v-color-picker-swatches {
|
|
23870
24910
|
overflow-y: auto;
|
|
23871
24911
|
}
|