vuetify 3.3.13 → 3.3.14
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 +70 -66
- package/dist/json/importMap-labs.json +4 -4
- package/dist/json/importMap.json +12 -12
- package/dist/json/tags.json +5 -4
- package/dist/json/web-types.json +180 -140
- package/dist/vuetify-labs.css +363 -304
- package/dist/vuetify-labs.d.ts +384 -236
- package/dist/vuetify-labs.esm.js +410 -297
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +409 -296
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +291 -232
- package/dist/vuetify.d.ts +232 -76
- package/dist/vuetify.esm.js +210 -160
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +209 -159
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +838 -827
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAppBar/VAppBar.mjs.map +1 -1
- package/lib/components/VAppBar/index.d.mts +6 -6
- package/lib/components/VAutocomplete/VAutocomplete.mjs +12 -2
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VBadge/VBadge.css +1 -1
- package/lib/components/VBadge/_variables.scss +1 -1
- package/lib/components/VCheckbox/VCheckbox.mjs +2 -2
- package/lib/components/VCheckbox/VCheckbox.mjs.map +1 -1
- package/lib/components/VCheckbox/VCheckboxBtn.mjs +14 -11
- package/lib/components/VCheckbox/VCheckboxBtn.mjs.map +1 -1
- package/lib/components/VColorPicker/VColorPickerEdit.css +4 -2
- package/lib/components/VColorPicker/VColorPickerPreview.css +11 -6
- package/lib/components/VCombobox/VCombobox.mjs +11 -1
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VField/VField.css +22 -7
- package/lib/components/VField/VField.sass +8 -1
- package/lib/components/VField/_variables.scss +1 -0
- package/lib/components/VGrid/VGrid.css +153 -142
- package/lib/components/VProgressLinear/VProgressLinear.css +3 -2
- package/lib/components/VRadioGroup/VRadioGroup.mjs +2 -2
- package/lib/components/VRadioGroup/VRadioGroup.mjs.map +1 -1
- package/lib/components/VRangeSlider/index.d.mts +114 -33
- package/lib/components/VSelect/VSelect.mjs +12 -2
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VSelectionControl/VSelectionControl.mjs +2 -1
- package/lib/components/VSelectionControl/VSelectionControl.mjs.map +1 -1
- package/lib/components/VSlider/VSlider.mjs.map +1 -1
- package/lib/components/VSlider/VSliderThumb.css +8 -4
- package/lib/components/VSlider/VSliderTrack.css +22 -12
- package/lib/components/VSlider/index.d.mts +114 -33
- package/lib/components/VSwitch/VSwitch.mjs +9 -9
- package/lib/components/VSwitch/VSwitch.mjs.map +1 -1
- package/lib/components/VTimeline/VTimeline.css +19 -10
- package/lib/components/VTimeline/VTimeline.sass +5 -0
- package/lib/components/VToolbar/VToolbar.css +4 -2
- package/lib/components/index.d.mts +228 -72
- package/lib/composables/color.mjs +6 -1
- package/lib/composables/color.mjs.map +1 -1
- package/lib/composables/defaults.mjs +9 -9
- package/lib/composables/defaults.mjs.map +1 -1
- package/lib/composables/theme.mjs +2 -5
- package/lib/composables/theme.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +4 -4
- package/lib/labs/VDateInput/index.d.mts +2 -2
- package/lib/labs/VDatePicker/VDateCard.mjs +3 -0
- package/lib/labs/VDatePicker/VDateCard.mjs.map +1 -1
- package/lib/labs/VDatePicker/VDatePicker.mjs +51 -21
- package/lib/labs/VDatePicker/VDatePicker.mjs.map +1 -1
- package/lib/labs/VDatePicker/VDatePickerControls.css +1 -1
- package/lib/labs/VDatePicker/VDatePickerControls.mjs +53 -35
- package/lib/labs/VDatePicker/VDatePickerControls.mjs.map +1 -1
- package/lib/labs/VDatePicker/VDatePickerMonth.mjs +37 -28
- package/lib/labs/VDatePicker/VDatePickerMonth.mjs.map +1 -1
- package/lib/labs/VDatePicker/VDatePickerYears.mjs +19 -17
- package/lib/labs/VDatePicker/VDatePickerYears.mjs.map +1 -1
- package/lib/labs/VDatePicker/index.d.mts +148 -156
- package/lib/labs/VDateRangePicker/VDateRangeCard.mjs +3 -0
- package/lib/labs/VDateRangePicker/VDateRangeCard.mjs.map +1 -1
- package/lib/labs/VDateRangePicker/index.d.mts +59 -52
- package/lib/labs/VSkeletonLoader/VSkeletonLoader.mjs.map +1 -1
- package/lib/labs/VSkeletonLoader/index.d.mts +8 -8
- package/lib/labs/components.d.mts +156 -164
- package/lib/locale/no.mjs +1 -1
- package/lib/locale/no.mjs.map +1 -1
- package/lib/styles/tools/_rtl.sass +4 -2
- package/lib/util/colorUtils.mjs +6 -0
- package/lib/util/colorUtils.mjs.map +1 -1
- package/lib/util/helpers.mjs +10 -4
- package/lib/util/helpers.mjs.map +1 -1
- package/lib/util/injectSelf.mjs +2 -1
- package/lib/util/injectSelf.mjs.map +1 -1
- package/package.json +2 -2
package/dist/vuetify-labs.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.3.
|
|
2
|
+
* Vuetify v3.3.14
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -16214,7 +16214,7 @@ html.overflow-y-hidden {
|
|
|
16214
16214
|
.v-date-picker-controls__month {
|
|
16215
16215
|
display: flex;
|
|
16216
16216
|
}
|
|
16217
|
-
.v-date-picker-controls__month
|
|
16217
|
+
.v-locale--is-rtl.v-date-picker-controls__month, .v-locale--is-rtl .v-date-picker-controls__month {
|
|
16218
16218
|
flex-direction: row-reverse;
|
|
16219
16219
|
}.v-date-picker-header {
|
|
16220
16220
|
display: grid;
|
|
@@ -16836,18 +16836,6 @@ html.overflow-y-hidden {
|
|
|
16836
16836
|
min-height: 100vh;
|
|
16837
16837
|
min-height: 100dvh;
|
|
16838
16838
|
position: relative;
|
|
16839
|
-
}.v-app-bar {
|
|
16840
|
-
display: flex;
|
|
16841
|
-
}
|
|
16842
|
-
.v-app-bar.v-toolbar {
|
|
16843
|
-
background: rgb(var(--v-theme-surface));
|
|
16844
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
16845
|
-
}
|
|
16846
|
-
.v-app-bar.v-toolbar:not(.v-toolbar--flat) {
|
|
16847
|
-
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));
|
|
16848
|
-
}
|
|
16849
|
-
.v-app-bar:not(.v-toolbar--absolute) {
|
|
16850
|
-
padding-inline-end: var(--v-scrollbar-offset);
|
|
16851
16839
|
}.v-alert {
|
|
16852
16840
|
display: grid;
|
|
16853
16841
|
flex: 1 1;
|
|
@@ -17058,6 +17046,18 @@ html.overflow-y-hidden {
|
|
|
17058
17046
|
text-transform: none;
|
|
17059
17047
|
word-break: normal;
|
|
17060
17048
|
word-wrap: break-word;
|
|
17049
|
+
}.v-app-bar {
|
|
17050
|
+
display: flex;
|
|
17051
|
+
}
|
|
17052
|
+
.v-app-bar.v-toolbar {
|
|
17053
|
+
background: rgb(var(--v-theme-surface));
|
|
17054
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
17055
|
+
}
|
|
17056
|
+
.v-app-bar.v-toolbar:not(.v-toolbar--flat) {
|
|
17057
|
+
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));
|
|
17058
|
+
}
|
|
17059
|
+
.v-app-bar:not(.v-toolbar--absolute) {
|
|
17060
|
+
padding-inline-end: var(--v-scrollbar-offset);
|
|
17061
17061
|
}.v-autocomplete .v-field .v-text-field__prefix,
|
|
17062
17062
|
.v-autocomplete .v-field .v-text-field__suffix,
|
|
17063
17063
|
.v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
|
|
@@ -17264,7 +17264,7 @@ html.overflow-y-hidden {
|
|
|
17264
17264
|
position: absolute;
|
|
17265
17265
|
right: 0;
|
|
17266
17266
|
top: 0;
|
|
17267
|
-
transform: scale(1.
|
|
17267
|
+
transform: scale(1.05);
|
|
17268
17268
|
}
|
|
17269
17269
|
.v-badge--dot .v-badge__badge {
|
|
17270
17270
|
border-radius: 4.5px;
|
|
@@ -17513,64 +17513,6 @@ html.overflow-y-hidden {
|
|
|
17513
17513
|
}
|
|
17514
17514
|
.v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
|
|
17515
17515
|
transform: translateY(0.5rem);
|
|
17516
|
-
}.v-breadcrumbs {
|
|
17517
|
-
display: flex;
|
|
17518
|
-
align-items: center;
|
|
17519
|
-
line-height: 1.375rem;
|
|
17520
|
-
padding: 16px 12px;
|
|
17521
|
-
}
|
|
17522
|
-
.v-breadcrumbs--rounded {
|
|
17523
|
-
border-radius: 4px;
|
|
17524
|
-
}
|
|
17525
|
-
.v-breadcrumbs--density-default {
|
|
17526
|
-
padding-top: 16px;
|
|
17527
|
-
padding-bottom: 16px;
|
|
17528
|
-
}
|
|
17529
|
-
|
|
17530
|
-
.v-breadcrumbs--density-comfortable {
|
|
17531
|
-
padding-top: 12px;
|
|
17532
|
-
padding-bottom: 12px;
|
|
17533
|
-
}
|
|
17534
|
-
|
|
17535
|
-
.v-breadcrumbs--density-compact {
|
|
17536
|
-
padding-top: 8px;
|
|
17537
|
-
padding-bottom: 8px;
|
|
17538
|
-
}
|
|
17539
|
-
|
|
17540
|
-
.v-breadcrumbs__prepend {
|
|
17541
|
-
align-items: center;
|
|
17542
|
-
display: inline-flex;
|
|
17543
|
-
}
|
|
17544
|
-
|
|
17545
|
-
.v-breadcrumbs-item {
|
|
17546
|
-
align-items: center;
|
|
17547
|
-
color: inherit;
|
|
17548
|
-
display: inline-flex;
|
|
17549
|
-
padding: 0 4px;
|
|
17550
|
-
text-decoration: none;
|
|
17551
|
-
vertical-align: middle;
|
|
17552
|
-
}
|
|
17553
|
-
.v-breadcrumbs-item--disabled {
|
|
17554
|
-
opacity: var(--v-disabled-opacity);
|
|
17555
|
-
pointer-events: none;
|
|
17556
|
-
}
|
|
17557
|
-
.v-breadcrumbs-item--link {
|
|
17558
|
-
color: inherit;
|
|
17559
|
-
text-decoration: none;
|
|
17560
|
-
}
|
|
17561
|
-
.v-breadcrumbs-item--link:hover {
|
|
17562
|
-
text-decoration: underline;
|
|
17563
|
-
}
|
|
17564
|
-
.v-breadcrumbs-item .v-icon {
|
|
17565
|
-
font-size: 1rem;
|
|
17566
|
-
margin-inline-start: -4px;
|
|
17567
|
-
margin-inline-end: 2px;
|
|
17568
|
-
}
|
|
17569
|
-
|
|
17570
|
-
.v-breadcrumbs-divider {
|
|
17571
|
-
display: inline-block;
|
|
17572
|
-
padding: 0 8px;
|
|
17573
|
-
vertical-align: middle;
|
|
17574
17516
|
}/** if false, disabled buttons will be greyed out */
|
|
17575
17517
|
.v-btn {
|
|
17576
17518
|
align-items: center;
|
|
@@ -17985,6 +17927,66 @@ html.overflow-y-hidden {
|
|
|
17985
17927
|
|
|
17986
17928
|
.v-snackbar-actions .v-btn {
|
|
17987
17929
|
padding: 0 8px;
|
|
17930
|
+
}.v-breadcrumbs {
|
|
17931
|
+
display: flex;
|
|
17932
|
+
align-items: center;
|
|
17933
|
+
line-height: 1.375rem;
|
|
17934
|
+
padding: 16px 12px;
|
|
17935
|
+
}
|
|
17936
|
+
.v-breadcrumbs--rounded {
|
|
17937
|
+
border-radius: 4px;
|
|
17938
|
+
}
|
|
17939
|
+
.v-breadcrumbs--density-default {
|
|
17940
|
+
padding-top: 16px;
|
|
17941
|
+
padding-bottom: 16px;
|
|
17942
|
+
}
|
|
17943
|
+
|
|
17944
|
+
.v-breadcrumbs--density-comfortable {
|
|
17945
|
+
padding-top: 12px;
|
|
17946
|
+
padding-bottom: 12px;
|
|
17947
|
+
}
|
|
17948
|
+
|
|
17949
|
+
.v-breadcrumbs--density-compact {
|
|
17950
|
+
padding-top: 8px;
|
|
17951
|
+
padding-bottom: 8px;
|
|
17952
|
+
}
|
|
17953
|
+
|
|
17954
|
+
.v-breadcrumbs__prepend {
|
|
17955
|
+
align-items: center;
|
|
17956
|
+
display: inline-flex;
|
|
17957
|
+
}
|
|
17958
|
+
|
|
17959
|
+
.v-breadcrumbs-item {
|
|
17960
|
+
align-items: center;
|
|
17961
|
+
color: inherit;
|
|
17962
|
+
display: inline-flex;
|
|
17963
|
+
padding: 0 4px;
|
|
17964
|
+
text-decoration: none;
|
|
17965
|
+
vertical-align: middle;
|
|
17966
|
+
}
|
|
17967
|
+
.v-breadcrumbs-item--disabled {
|
|
17968
|
+
opacity: var(--v-disabled-opacity);
|
|
17969
|
+
pointer-events: none;
|
|
17970
|
+
}
|
|
17971
|
+
.v-breadcrumbs-item--link {
|
|
17972
|
+
color: inherit;
|
|
17973
|
+
text-decoration: none;
|
|
17974
|
+
}
|
|
17975
|
+
.v-breadcrumbs-item--link:hover {
|
|
17976
|
+
text-decoration: underline;
|
|
17977
|
+
}
|
|
17978
|
+
.v-breadcrumbs-item .v-icon {
|
|
17979
|
+
font-size: 1rem;
|
|
17980
|
+
margin-inline-start: -4px;
|
|
17981
|
+
margin-inline-end: 2px;
|
|
17982
|
+
}
|
|
17983
|
+
|
|
17984
|
+
.v-breadcrumbs-divider {
|
|
17985
|
+
display: inline-block;
|
|
17986
|
+
padding: 0 8px;
|
|
17987
|
+
vertical-align: middle;
|
|
17988
|
+
}.v-btn-toggle .v-btn.v-btn--selected:not(.v-btn--disabled) .v-btn__overlay {
|
|
17989
|
+
opacity: var(--v-activated-opacity);
|
|
17988
17990
|
}/** if false, disabled buttons will be greyed out */
|
|
17989
17991
|
.v-btn-group {
|
|
17990
17992
|
display: inline-flex;
|
|
@@ -18042,8 +18044,6 @@ html.overflow-y-hidden {
|
|
|
18042
18044
|
}
|
|
18043
18045
|
.v-btn-group--tile {
|
|
18044
18046
|
border-radius: 0;
|
|
18045
|
-
}.v-btn-toggle .v-btn.v-btn--selected:not(.v-btn--disabled) .v-btn__overlay {
|
|
18046
|
-
opacity: var(--v-activated-opacity);
|
|
18047
18047
|
}.v-card {
|
|
18048
18048
|
display: block;
|
|
18049
18049
|
overflow: hidden;
|
|
@@ -19077,80 +19077,91 @@ html.overflow-y-hidden {
|
|
|
19077
19077
|
max-width: 100%;
|
|
19078
19078
|
}
|
|
19079
19079
|
|
|
19080
|
-
.
|
|
19080
|
+
.v-locale--is-ltr.offset-1, .v-locale--is-ltr .offset-1 {
|
|
19081
19081
|
margin-left: 8.3333333333%;
|
|
19082
19082
|
}
|
|
19083
|
-
|
|
19083
|
+
|
|
19084
|
+
.v-locale--is-rtl.offset-1, .v-locale--is-rtl .offset-1 {
|
|
19084
19085
|
margin-right: 8.3333333333%;
|
|
19085
19086
|
}
|
|
19086
19087
|
|
|
19087
|
-
.
|
|
19088
|
+
.v-locale--is-ltr.offset-2, .v-locale--is-ltr .offset-2 {
|
|
19088
19089
|
margin-left: 16.6666666667%;
|
|
19089
19090
|
}
|
|
19090
|
-
|
|
19091
|
+
|
|
19092
|
+
.v-locale--is-rtl.offset-2, .v-locale--is-rtl .offset-2 {
|
|
19091
19093
|
margin-right: 16.6666666667%;
|
|
19092
19094
|
}
|
|
19093
19095
|
|
|
19094
|
-
.
|
|
19096
|
+
.v-locale--is-ltr.offset-3, .v-locale--is-ltr .offset-3 {
|
|
19095
19097
|
margin-left: 25%;
|
|
19096
19098
|
}
|
|
19097
|
-
|
|
19099
|
+
|
|
19100
|
+
.v-locale--is-rtl.offset-3, .v-locale--is-rtl .offset-3 {
|
|
19098
19101
|
margin-right: 25%;
|
|
19099
19102
|
}
|
|
19100
19103
|
|
|
19101
|
-
.
|
|
19104
|
+
.v-locale--is-ltr.offset-4, .v-locale--is-ltr .offset-4 {
|
|
19102
19105
|
margin-left: 33.3333333333%;
|
|
19103
19106
|
}
|
|
19104
|
-
|
|
19107
|
+
|
|
19108
|
+
.v-locale--is-rtl.offset-4, .v-locale--is-rtl .offset-4 {
|
|
19105
19109
|
margin-right: 33.3333333333%;
|
|
19106
19110
|
}
|
|
19107
19111
|
|
|
19108
|
-
.
|
|
19112
|
+
.v-locale--is-ltr.offset-5, .v-locale--is-ltr .offset-5 {
|
|
19109
19113
|
margin-left: 41.6666666667%;
|
|
19110
19114
|
}
|
|
19111
|
-
|
|
19115
|
+
|
|
19116
|
+
.v-locale--is-rtl.offset-5, .v-locale--is-rtl .offset-5 {
|
|
19112
19117
|
margin-right: 41.6666666667%;
|
|
19113
19118
|
}
|
|
19114
19119
|
|
|
19115
|
-
.
|
|
19120
|
+
.v-locale--is-ltr.offset-6, .v-locale--is-ltr .offset-6 {
|
|
19116
19121
|
margin-left: 50%;
|
|
19117
19122
|
}
|
|
19118
|
-
|
|
19123
|
+
|
|
19124
|
+
.v-locale--is-rtl.offset-6, .v-locale--is-rtl .offset-6 {
|
|
19119
19125
|
margin-right: 50%;
|
|
19120
19126
|
}
|
|
19121
19127
|
|
|
19122
|
-
.
|
|
19128
|
+
.v-locale--is-ltr.offset-7, .v-locale--is-ltr .offset-7 {
|
|
19123
19129
|
margin-left: 58.3333333333%;
|
|
19124
19130
|
}
|
|
19125
|
-
|
|
19131
|
+
|
|
19132
|
+
.v-locale--is-rtl.offset-7, .v-locale--is-rtl .offset-7 {
|
|
19126
19133
|
margin-right: 58.3333333333%;
|
|
19127
19134
|
}
|
|
19128
19135
|
|
|
19129
|
-
.
|
|
19136
|
+
.v-locale--is-ltr.offset-8, .v-locale--is-ltr .offset-8 {
|
|
19130
19137
|
margin-left: 66.6666666667%;
|
|
19131
19138
|
}
|
|
19132
|
-
|
|
19139
|
+
|
|
19140
|
+
.v-locale--is-rtl.offset-8, .v-locale--is-rtl .offset-8 {
|
|
19133
19141
|
margin-right: 66.6666666667%;
|
|
19134
19142
|
}
|
|
19135
19143
|
|
|
19136
|
-
.
|
|
19144
|
+
.v-locale--is-ltr.offset-9, .v-locale--is-ltr .offset-9 {
|
|
19137
19145
|
margin-left: 75%;
|
|
19138
19146
|
}
|
|
19139
|
-
|
|
19147
|
+
|
|
19148
|
+
.v-locale--is-rtl.offset-9, .v-locale--is-rtl .offset-9 {
|
|
19140
19149
|
margin-right: 75%;
|
|
19141
19150
|
}
|
|
19142
19151
|
|
|
19143
|
-
.
|
|
19152
|
+
.v-locale--is-ltr.offset-10, .v-locale--is-ltr .offset-10 {
|
|
19144
19153
|
margin-left: 83.3333333333%;
|
|
19145
19154
|
}
|
|
19146
|
-
|
|
19155
|
+
|
|
19156
|
+
.v-locale--is-rtl.offset-10, .v-locale--is-rtl .offset-10 {
|
|
19147
19157
|
margin-right: 83.3333333333%;
|
|
19148
19158
|
}
|
|
19149
19159
|
|
|
19150
|
-
.
|
|
19160
|
+
.v-locale--is-ltr.offset-11, .v-locale--is-ltr .offset-11 {
|
|
19151
19161
|
margin-left: 91.6666666667%;
|
|
19152
19162
|
}
|
|
19153
|
-
|
|
19163
|
+
|
|
19164
|
+
.v-locale--is-rtl.offset-11, .v-locale--is-rtl .offset-11 {
|
|
19154
19165
|
margin-right: 91.6666666667%;
|
|
19155
19166
|
}
|
|
19156
19167
|
|
|
@@ -19213,76 +19224,76 @@ html.overflow-y-hidden {
|
|
|
19213
19224
|
flex: 0 0 100%;
|
|
19214
19225
|
max-width: 100%;
|
|
19215
19226
|
}
|
|
19216
|
-
.
|
|
19227
|
+
.v-locale--is-ltr.offset-sm-0, .v-locale--is-ltr .offset-sm-0 {
|
|
19217
19228
|
margin-left: 0;
|
|
19218
19229
|
}
|
|
19219
|
-
.
|
|
19230
|
+
.v-locale--is-rtl.offset-sm-0, .v-locale--is-rtl .offset-sm-0 {
|
|
19220
19231
|
margin-right: 0;
|
|
19221
19232
|
}
|
|
19222
|
-
.
|
|
19233
|
+
.v-locale--is-ltr.offset-sm-1, .v-locale--is-ltr .offset-sm-1 {
|
|
19223
19234
|
margin-left: 8.3333333333%;
|
|
19224
19235
|
}
|
|
19225
|
-
.
|
|
19236
|
+
.v-locale--is-rtl.offset-sm-1, .v-locale--is-rtl .offset-sm-1 {
|
|
19226
19237
|
margin-right: 8.3333333333%;
|
|
19227
19238
|
}
|
|
19228
|
-
.
|
|
19239
|
+
.v-locale--is-ltr.offset-sm-2, .v-locale--is-ltr .offset-sm-2 {
|
|
19229
19240
|
margin-left: 16.6666666667%;
|
|
19230
19241
|
}
|
|
19231
|
-
.
|
|
19242
|
+
.v-locale--is-rtl.offset-sm-2, .v-locale--is-rtl .offset-sm-2 {
|
|
19232
19243
|
margin-right: 16.6666666667%;
|
|
19233
19244
|
}
|
|
19234
|
-
.
|
|
19245
|
+
.v-locale--is-ltr.offset-sm-3, .v-locale--is-ltr .offset-sm-3 {
|
|
19235
19246
|
margin-left: 25%;
|
|
19236
19247
|
}
|
|
19237
|
-
.
|
|
19248
|
+
.v-locale--is-rtl.offset-sm-3, .v-locale--is-rtl .offset-sm-3 {
|
|
19238
19249
|
margin-right: 25%;
|
|
19239
19250
|
}
|
|
19240
|
-
.
|
|
19251
|
+
.v-locale--is-ltr.offset-sm-4, .v-locale--is-ltr .offset-sm-4 {
|
|
19241
19252
|
margin-left: 33.3333333333%;
|
|
19242
19253
|
}
|
|
19243
|
-
.
|
|
19254
|
+
.v-locale--is-rtl.offset-sm-4, .v-locale--is-rtl .offset-sm-4 {
|
|
19244
19255
|
margin-right: 33.3333333333%;
|
|
19245
19256
|
}
|
|
19246
|
-
.
|
|
19257
|
+
.v-locale--is-ltr.offset-sm-5, .v-locale--is-ltr .offset-sm-5 {
|
|
19247
19258
|
margin-left: 41.6666666667%;
|
|
19248
19259
|
}
|
|
19249
|
-
.
|
|
19260
|
+
.v-locale--is-rtl.offset-sm-5, .v-locale--is-rtl .offset-sm-5 {
|
|
19250
19261
|
margin-right: 41.6666666667%;
|
|
19251
19262
|
}
|
|
19252
|
-
.
|
|
19263
|
+
.v-locale--is-ltr.offset-sm-6, .v-locale--is-ltr .offset-sm-6 {
|
|
19253
19264
|
margin-left: 50%;
|
|
19254
19265
|
}
|
|
19255
|
-
.
|
|
19266
|
+
.v-locale--is-rtl.offset-sm-6, .v-locale--is-rtl .offset-sm-6 {
|
|
19256
19267
|
margin-right: 50%;
|
|
19257
19268
|
}
|
|
19258
|
-
.
|
|
19269
|
+
.v-locale--is-ltr.offset-sm-7, .v-locale--is-ltr .offset-sm-7 {
|
|
19259
19270
|
margin-left: 58.3333333333%;
|
|
19260
19271
|
}
|
|
19261
|
-
.
|
|
19272
|
+
.v-locale--is-rtl.offset-sm-7, .v-locale--is-rtl .offset-sm-7 {
|
|
19262
19273
|
margin-right: 58.3333333333%;
|
|
19263
19274
|
}
|
|
19264
|
-
.
|
|
19275
|
+
.v-locale--is-ltr.offset-sm-8, .v-locale--is-ltr .offset-sm-8 {
|
|
19265
19276
|
margin-left: 66.6666666667%;
|
|
19266
19277
|
}
|
|
19267
|
-
.
|
|
19278
|
+
.v-locale--is-rtl.offset-sm-8, .v-locale--is-rtl .offset-sm-8 {
|
|
19268
19279
|
margin-right: 66.6666666667%;
|
|
19269
19280
|
}
|
|
19270
|
-
.
|
|
19281
|
+
.v-locale--is-ltr.offset-sm-9, .v-locale--is-ltr .offset-sm-9 {
|
|
19271
19282
|
margin-left: 75%;
|
|
19272
19283
|
}
|
|
19273
|
-
.
|
|
19284
|
+
.v-locale--is-rtl.offset-sm-9, .v-locale--is-rtl .offset-sm-9 {
|
|
19274
19285
|
margin-right: 75%;
|
|
19275
19286
|
}
|
|
19276
|
-
.
|
|
19287
|
+
.v-locale--is-ltr.offset-sm-10, .v-locale--is-ltr .offset-sm-10 {
|
|
19277
19288
|
margin-left: 83.3333333333%;
|
|
19278
19289
|
}
|
|
19279
|
-
.
|
|
19290
|
+
.v-locale--is-rtl.offset-sm-10, .v-locale--is-rtl .offset-sm-10 {
|
|
19280
19291
|
margin-right: 83.3333333333%;
|
|
19281
19292
|
}
|
|
19282
|
-
.
|
|
19293
|
+
.v-locale--is-ltr.offset-sm-11, .v-locale--is-ltr .offset-sm-11 {
|
|
19283
19294
|
margin-left: 91.6666666667%;
|
|
19284
19295
|
}
|
|
19285
|
-
.
|
|
19296
|
+
.v-locale--is-rtl.offset-sm-11, .v-locale--is-rtl .offset-sm-11 {
|
|
19286
19297
|
margin-right: 91.6666666667%;
|
|
19287
19298
|
}
|
|
19288
19299
|
}
|
|
@@ -19345,76 +19356,76 @@ html.overflow-y-hidden {
|
|
|
19345
19356
|
flex: 0 0 100%;
|
|
19346
19357
|
max-width: 100%;
|
|
19347
19358
|
}
|
|
19348
|
-
.
|
|
19359
|
+
.v-locale--is-ltr.offset-md-0, .v-locale--is-ltr .offset-md-0 {
|
|
19349
19360
|
margin-left: 0;
|
|
19350
19361
|
}
|
|
19351
|
-
.
|
|
19362
|
+
.v-locale--is-rtl.offset-md-0, .v-locale--is-rtl .offset-md-0 {
|
|
19352
19363
|
margin-right: 0;
|
|
19353
19364
|
}
|
|
19354
|
-
.
|
|
19365
|
+
.v-locale--is-ltr.offset-md-1, .v-locale--is-ltr .offset-md-1 {
|
|
19355
19366
|
margin-left: 8.3333333333%;
|
|
19356
19367
|
}
|
|
19357
|
-
.
|
|
19368
|
+
.v-locale--is-rtl.offset-md-1, .v-locale--is-rtl .offset-md-1 {
|
|
19358
19369
|
margin-right: 8.3333333333%;
|
|
19359
19370
|
}
|
|
19360
|
-
.
|
|
19371
|
+
.v-locale--is-ltr.offset-md-2, .v-locale--is-ltr .offset-md-2 {
|
|
19361
19372
|
margin-left: 16.6666666667%;
|
|
19362
19373
|
}
|
|
19363
|
-
.
|
|
19374
|
+
.v-locale--is-rtl.offset-md-2, .v-locale--is-rtl .offset-md-2 {
|
|
19364
19375
|
margin-right: 16.6666666667%;
|
|
19365
19376
|
}
|
|
19366
|
-
.
|
|
19377
|
+
.v-locale--is-ltr.offset-md-3, .v-locale--is-ltr .offset-md-3 {
|
|
19367
19378
|
margin-left: 25%;
|
|
19368
19379
|
}
|
|
19369
|
-
.
|
|
19380
|
+
.v-locale--is-rtl.offset-md-3, .v-locale--is-rtl .offset-md-3 {
|
|
19370
19381
|
margin-right: 25%;
|
|
19371
19382
|
}
|
|
19372
|
-
.
|
|
19383
|
+
.v-locale--is-ltr.offset-md-4, .v-locale--is-ltr .offset-md-4 {
|
|
19373
19384
|
margin-left: 33.3333333333%;
|
|
19374
19385
|
}
|
|
19375
|
-
.
|
|
19386
|
+
.v-locale--is-rtl.offset-md-4, .v-locale--is-rtl .offset-md-4 {
|
|
19376
19387
|
margin-right: 33.3333333333%;
|
|
19377
19388
|
}
|
|
19378
|
-
.
|
|
19389
|
+
.v-locale--is-ltr.offset-md-5, .v-locale--is-ltr .offset-md-5 {
|
|
19379
19390
|
margin-left: 41.6666666667%;
|
|
19380
19391
|
}
|
|
19381
|
-
.
|
|
19392
|
+
.v-locale--is-rtl.offset-md-5, .v-locale--is-rtl .offset-md-5 {
|
|
19382
19393
|
margin-right: 41.6666666667%;
|
|
19383
19394
|
}
|
|
19384
|
-
.
|
|
19395
|
+
.v-locale--is-ltr.offset-md-6, .v-locale--is-ltr .offset-md-6 {
|
|
19385
19396
|
margin-left: 50%;
|
|
19386
19397
|
}
|
|
19387
|
-
.
|
|
19398
|
+
.v-locale--is-rtl.offset-md-6, .v-locale--is-rtl .offset-md-6 {
|
|
19388
19399
|
margin-right: 50%;
|
|
19389
19400
|
}
|
|
19390
|
-
.
|
|
19401
|
+
.v-locale--is-ltr.offset-md-7, .v-locale--is-ltr .offset-md-7 {
|
|
19391
19402
|
margin-left: 58.3333333333%;
|
|
19392
19403
|
}
|
|
19393
|
-
.
|
|
19404
|
+
.v-locale--is-rtl.offset-md-7, .v-locale--is-rtl .offset-md-7 {
|
|
19394
19405
|
margin-right: 58.3333333333%;
|
|
19395
19406
|
}
|
|
19396
|
-
.
|
|
19407
|
+
.v-locale--is-ltr.offset-md-8, .v-locale--is-ltr .offset-md-8 {
|
|
19397
19408
|
margin-left: 66.6666666667%;
|
|
19398
19409
|
}
|
|
19399
|
-
.
|
|
19410
|
+
.v-locale--is-rtl.offset-md-8, .v-locale--is-rtl .offset-md-8 {
|
|
19400
19411
|
margin-right: 66.6666666667%;
|
|
19401
19412
|
}
|
|
19402
|
-
.
|
|
19413
|
+
.v-locale--is-ltr.offset-md-9, .v-locale--is-ltr .offset-md-9 {
|
|
19403
19414
|
margin-left: 75%;
|
|
19404
19415
|
}
|
|
19405
|
-
.
|
|
19416
|
+
.v-locale--is-rtl.offset-md-9, .v-locale--is-rtl .offset-md-9 {
|
|
19406
19417
|
margin-right: 75%;
|
|
19407
19418
|
}
|
|
19408
|
-
.
|
|
19419
|
+
.v-locale--is-ltr.offset-md-10, .v-locale--is-ltr .offset-md-10 {
|
|
19409
19420
|
margin-left: 83.3333333333%;
|
|
19410
19421
|
}
|
|
19411
|
-
.
|
|
19422
|
+
.v-locale--is-rtl.offset-md-10, .v-locale--is-rtl .offset-md-10 {
|
|
19412
19423
|
margin-right: 83.3333333333%;
|
|
19413
19424
|
}
|
|
19414
|
-
.
|
|
19425
|
+
.v-locale--is-ltr.offset-md-11, .v-locale--is-ltr .offset-md-11 {
|
|
19415
19426
|
margin-left: 91.6666666667%;
|
|
19416
19427
|
}
|
|
19417
|
-
.
|
|
19428
|
+
.v-locale--is-rtl.offset-md-11, .v-locale--is-rtl .offset-md-11 {
|
|
19418
19429
|
margin-right: 91.6666666667%;
|
|
19419
19430
|
}
|
|
19420
19431
|
}
|
|
@@ -19477,76 +19488,76 @@ html.overflow-y-hidden {
|
|
|
19477
19488
|
flex: 0 0 100%;
|
|
19478
19489
|
max-width: 100%;
|
|
19479
19490
|
}
|
|
19480
|
-
.
|
|
19491
|
+
.v-locale--is-ltr.offset-lg-0, .v-locale--is-ltr .offset-lg-0 {
|
|
19481
19492
|
margin-left: 0;
|
|
19482
19493
|
}
|
|
19483
|
-
.
|
|
19494
|
+
.v-locale--is-rtl.offset-lg-0, .v-locale--is-rtl .offset-lg-0 {
|
|
19484
19495
|
margin-right: 0;
|
|
19485
19496
|
}
|
|
19486
|
-
.
|
|
19497
|
+
.v-locale--is-ltr.offset-lg-1, .v-locale--is-ltr .offset-lg-1 {
|
|
19487
19498
|
margin-left: 8.3333333333%;
|
|
19488
19499
|
}
|
|
19489
|
-
.
|
|
19500
|
+
.v-locale--is-rtl.offset-lg-1, .v-locale--is-rtl .offset-lg-1 {
|
|
19490
19501
|
margin-right: 8.3333333333%;
|
|
19491
19502
|
}
|
|
19492
|
-
.
|
|
19503
|
+
.v-locale--is-ltr.offset-lg-2, .v-locale--is-ltr .offset-lg-2 {
|
|
19493
19504
|
margin-left: 16.6666666667%;
|
|
19494
19505
|
}
|
|
19495
|
-
.
|
|
19506
|
+
.v-locale--is-rtl.offset-lg-2, .v-locale--is-rtl .offset-lg-2 {
|
|
19496
19507
|
margin-right: 16.6666666667%;
|
|
19497
19508
|
}
|
|
19498
|
-
.
|
|
19509
|
+
.v-locale--is-ltr.offset-lg-3, .v-locale--is-ltr .offset-lg-3 {
|
|
19499
19510
|
margin-left: 25%;
|
|
19500
19511
|
}
|
|
19501
|
-
.
|
|
19512
|
+
.v-locale--is-rtl.offset-lg-3, .v-locale--is-rtl .offset-lg-3 {
|
|
19502
19513
|
margin-right: 25%;
|
|
19503
19514
|
}
|
|
19504
|
-
.
|
|
19515
|
+
.v-locale--is-ltr.offset-lg-4, .v-locale--is-ltr .offset-lg-4 {
|
|
19505
19516
|
margin-left: 33.3333333333%;
|
|
19506
19517
|
}
|
|
19507
|
-
.
|
|
19518
|
+
.v-locale--is-rtl.offset-lg-4, .v-locale--is-rtl .offset-lg-4 {
|
|
19508
19519
|
margin-right: 33.3333333333%;
|
|
19509
19520
|
}
|
|
19510
|
-
.
|
|
19521
|
+
.v-locale--is-ltr.offset-lg-5, .v-locale--is-ltr .offset-lg-5 {
|
|
19511
19522
|
margin-left: 41.6666666667%;
|
|
19512
19523
|
}
|
|
19513
|
-
.
|
|
19524
|
+
.v-locale--is-rtl.offset-lg-5, .v-locale--is-rtl .offset-lg-5 {
|
|
19514
19525
|
margin-right: 41.6666666667%;
|
|
19515
19526
|
}
|
|
19516
|
-
.
|
|
19527
|
+
.v-locale--is-ltr.offset-lg-6, .v-locale--is-ltr .offset-lg-6 {
|
|
19517
19528
|
margin-left: 50%;
|
|
19518
19529
|
}
|
|
19519
|
-
.
|
|
19530
|
+
.v-locale--is-rtl.offset-lg-6, .v-locale--is-rtl .offset-lg-6 {
|
|
19520
19531
|
margin-right: 50%;
|
|
19521
19532
|
}
|
|
19522
|
-
.
|
|
19533
|
+
.v-locale--is-ltr.offset-lg-7, .v-locale--is-ltr .offset-lg-7 {
|
|
19523
19534
|
margin-left: 58.3333333333%;
|
|
19524
19535
|
}
|
|
19525
|
-
.
|
|
19536
|
+
.v-locale--is-rtl.offset-lg-7, .v-locale--is-rtl .offset-lg-7 {
|
|
19526
19537
|
margin-right: 58.3333333333%;
|
|
19527
19538
|
}
|
|
19528
|
-
.
|
|
19539
|
+
.v-locale--is-ltr.offset-lg-8, .v-locale--is-ltr .offset-lg-8 {
|
|
19529
19540
|
margin-left: 66.6666666667%;
|
|
19530
19541
|
}
|
|
19531
|
-
.
|
|
19542
|
+
.v-locale--is-rtl.offset-lg-8, .v-locale--is-rtl .offset-lg-8 {
|
|
19532
19543
|
margin-right: 66.6666666667%;
|
|
19533
19544
|
}
|
|
19534
|
-
.
|
|
19545
|
+
.v-locale--is-ltr.offset-lg-9, .v-locale--is-ltr .offset-lg-9 {
|
|
19535
19546
|
margin-left: 75%;
|
|
19536
19547
|
}
|
|
19537
|
-
.
|
|
19548
|
+
.v-locale--is-rtl.offset-lg-9, .v-locale--is-rtl .offset-lg-9 {
|
|
19538
19549
|
margin-right: 75%;
|
|
19539
19550
|
}
|
|
19540
|
-
.
|
|
19551
|
+
.v-locale--is-ltr.offset-lg-10, .v-locale--is-ltr .offset-lg-10 {
|
|
19541
19552
|
margin-left: 83.3333333333%;
|
|
19542
19553
|
}
|
|
19543
|
-
.
|
|
19554
|
+
.v-locale--is-rtl.offset-lg-10, .v-locale--is-rtl .offset-lg-10 {
|
|
19544
19555
|
margin-right: 83.3333333333%;
|
|
19545
19556
|
}
|
|
19546
|
-
.
|
|
19557
|
+
.v-locale--is-ltr.offset-lg-11, .v-locale--is-ltr .offset-lg-11 {
|
|
19547
19558
|
margin-left: 91.6666666667%;
|
|
19548
19559
|
}
|
|
19549
|
-
.
|
|
19560
|
+
.v-locale--is-rtl.offset-lg-11, .v-locale--is-rtl .offset-lg-11 {
|
|
19550
19561
|
margin-right: 91.6666666667%;
|
|
19551
19562
|
}
|
|
19552
19563
|
}
|
|
@@ -19609,76 +19620,76 @@ html.overflow-y-hidden {
|
|
|
19609
19620
|
flex: 0 0 100%;
|
|
19610
19621
|
max-width: 100%;
|
|
19611
19622
|
}
|
|
19612
|
-
.
|
|
19623
|
+
.v-locale--is-ltr.offset-xl-0, .v-locale--is-ltr .offset-xl-0 {
|
|
19613
19624
|
margin-left: 0;
|
|
19614
19625
|
}
|
|
19615
|
-
.
|
|
19626
|
+
.v-locale--is-rtl.offset-xl-0, .v-locale--is-rtl .offset-xl-0 {
|
|
19616
19627
|
margin-right: 0;
|
|
19617
19628
|
}
|
|
19618
|
-
.
|
|
19629
|
+
.v-locale--is-ltr.offset-xl-1, .v-locale--is-ltr .offset-xl-1 {
|
|
19619
19630
|
margin-left: 8.3333333333%;
|
|
19620
19631
|
}
|
|
19621
|
-
.
|
|
19632
|
+
.v-locale--is-rtl.offset-xl-1, .v-locale--is-rtl .offset-xl-1 {
|
|
19622
19633
|
margin-right: 8.3333333333%;
|
|
19623
19634
|
}
|
|
19624
|
-
.
|
|
19635
|
+
.v-locale--is-ltr.offset-xl-2, .v-locale--is-ltr .offset-xl-2 {
|
|
19625
19636
|
margin-left: 16.6666666667%;
|
|
19626
19637
|
}
|
|
19627
|
-
.
|
|
19638
|
+
.v-locale--is-rtl.offset-xl-2, .v-locale--is-rtl .offset-xl-2 {
|
|
19628
19639
|
margin-right: 16.6666666667%;
|
|
19629
19640
|
}
|
|
19630
|
-
.
|
|
19641
|
+
.v-locale--is-ltr.offset-xl-3, .v-locale--is-ltr .offset-xl-3 {
|
|
19631
19642
|
margin-left: 25%;
|
|
19632
19643
|
}
|
|
19633
|
-
.
|
|
19644
|
+
.v-locale--is-rtl.offset-xl-3, .v-locale--is-rtl .offset-xl-3 {
|
|
19634
19645
|
margin-right: 25%;
|
|
19635
19646
|
}
|
|
19636
|
-
.
|
|
19647
|
+
.v-locale--is-ltr.offset-xl-4, .v-locale--is-ltr .offset-xl-4 {
|
|
19637
19648
|
margin-left: 33.3333333333%;
|
|
19638
19649
|
}
|
|
19639
|
-
.
|
|
19650
|
+
.v-locale--is-rtl.offset-xl-4, .v-locale--is-rtl .offset-xl-4 {
|
|
19640
19651
|
margin-right: 33.3333333333%;
|
|
19641
19652
|
}
|
|
19642
|
-
.
|
|
19653
|
+
.v-locale--is-ltr.offset-xl-5, .v-locale--is-ltr .offset-xl-5 {
|
|
19643
19654
|
margin-left: 41.6666666667%;
|
|
19644
19655
|
}
|
|
19645
|
-
.
|
|
19656
|
+
.v-locale--is-rtl.offset-xl-5, .v-locale--is-rtl .offset-xl-5 {
|
|
19646
19657
|
margin-right: 41.6666666667%;
|
|
19647
19658
|
}
|
|
19648
|
-
.
|
|
19659
|
+
.v-locale--is-ltr.offset-xl-6, .v-locale--is-ltr .offset-xl-6 {
|
|
19649
19660
|
margin-left: 50%;
|
|
19650
19661
|
}
|
|
19651
|
-
.
|
|
19662
|
+
.v-locale--is-rtl.offset-xl-6, .v-locale--is-rtl .offset-xl-6 {
|
|
19652
19663
|
margin-right: 50%;
|
|
19653
19664
|
}
|
|
19654
|
-
.
|
|
19665
|
+
.v-locale--is-ltr.offset-xl-7, .v-locale--is-ltr .offset-xl-7 {
|
|
19655
19666
|
margin-left: 58.3333333333%;
|
|
19656
19667
|
}
|
|
19657
|
-
.
|
|
19668
|
+
.v-locale--is-rtl.offset-xl-7, .v-locale--is-rtl .offset-xl-7 {
|
|
19658
19669
|
margin-right: 58.3333333333%;
|
|
19659
19670
|
}
|
|
19660
|
-
.
|
|
19671
|
+
.v-locale--is-ltr.offset-xl-8, .v-locale--is-ltr .offset-xl-8 {
|
|
19661
19672
|
margin-left: 66.6666666667%;
|
|
19662
19673
|
}
|
|
19663
|
-
.
|
|
19674
|
+
.v-locale--is-rtl.offset-xl-8, .v-locale--is-rtl .offset-xl-8 {
|
|
19664
19675
|
margin-right: 66.6666666667%;
|
|
19665
19676
|
}
|
|
19666
|
-
.
|
|
19677
|
+
.v-locale--is-ltr.offset-xl-9, .v-locale--is-ltr .offset-xl-9 {
|
|
19667
19678
|
margin-left: 75%;
|
|
19668
19679
|
}
|
|
19669
|
-
.
|
|
19680
|
+
.v-locale--is-rtl.offset-xl-9, .v-locale--is-rtl .offset-xl-9 {
|
|
19670
19681
|
margin-right: 75%;
|
|
19671
19682
|
}
|
|
19672
|
-
.
|
|
19683
|
+
.v-locale--is-ltr.offset-xl-10, .v-locale--is-ltr .offset-xl-10 {
|
|
19673
19684
|
margin-left: 83.3333333333%;
|
|
19674
19685
|
}
|
|
19675
|
-
.
|
|
19686
|
+
.v-locale--is-rtl.offset-xl-10, .v-locale--is-rtl .offset-xl-10 {
|
|
19676
19687
|
margin-right: 83.3333333333%;
|
|
19677
19688
|
}
|
|
19678
|
-
.
|
|
19689
|
+
.v-locale--is-ltr.offset-xl-11, .v-locale--is-ltr .offset-xl-11 {
|
|
19679
19690
|
margin-left: 91.6666666667%;
|
|
19680
19691
|
}
|
|
19681
|
-
.
|
|
19692
|
+
.v-locale--is-rtl.offset-xl-11, .v-locale--is-rtl .offset-xl-11 {
|
|
19682
19693
|
margin-right: 91.6666666667%;
|
|
19683
19694
|
}
|
|
19684
19695
|
}
|
|
@@ -19741,76 +19752,76 @@ html.overflow-y-hidden {
|
|
|
19741
19752
|
flex: 0 0 100%;
|
|
19742
19753
|
max-width: 100%;
|
|
19743
19754
|
}
|
|
19744
|
-
.
|
|
19755
|
+
.v-locale--is-ltr.offset-xxl-0, .v-locale--is-ltr .offset-xxl-0 {
|
|
19745
19756
|
margin-left: 0;
|
|
19746
19757
|
}
|
|
19747
|
-
.
|
|
19758
|
+
.v-locale--is-rtl.offset-xxl-0, .v-locale--is-rtl .offset-xxl-0 {
|
|
19748
19759
|
margin-right: 0;
|
|
19749
19760
|
}
|
|
19750
|
-
.
|
|
19761
|
+
.v-locale--is-ltr.offset-xxl-1, .v-locale--is-ltr .offset-xxl-1 {
|
|
19751
19762
|
margin-left: 8.3333333333%;
|
|
19752
19763
|
}
|
|
19753
|
-
.
|
|
19764
|
+
.v-locale--is-rtl.offset-xxl-1, .v-locale--is-rtl .offset-xxl-1 {
|
|
19754
19765
|
margin-right: 8.3333333333%;
|
|
19755
19766
|
}
|
|
19756
|
-
.
|
|
19767
|
+
.v-locale--is-ltr.offset-xxl-2, .v-locale--is-ltr .offset-xxl-2 {
|
|
19757
19768
|
margin-left: 16.6666666667%;
|
|
19758
19769
|
}
|
|
19759
|
-
.
|
|
19770
|
+
.v-locale--is-rtl.offset-xxl-2, .v-locale--is-rtl .offset-xxl-2 {
|
|
19760
19771
|
margin-right: 16.6666666667%;
|
|
19761
19772
|
}
|
|
19762
|
-
.
|
|
19773
|
+
.v-locale--is-ltr.offset-xxl-3, .v-locale--is-ltr .offset-xxl-3 {
|
|
19763
19774
|
margin-left: 25%;
|
|
19764
19775
|
}
|
|
19765
|
-
.
|
|
19776
|
+
.v-locale--is-rtl.offset-xxl-3, .v-locale--is-rtl .offset-xxl-3 {
|
|
19766
19777
|
margin-right: 25%;
|
|
19767
19778
|
}
|
|
19768
|
-
.
|
|
19779
|
+
.v-locale--is-ltr.offset-xxl-4, .v-locale--is-ltr .offset-xxl-4 {
|
|
19769
19780
|
margin-left: 33.3333333333%;
|
|
19770
19781
|
}
|
|
19771
|
-
.
|
|
19782
|
+
.v-locale--is-rtl.offset-xxl-4, .v-locale--is-rtl .offset-xxl-4 {
|
|
19772
19783
|
margin-right: 33.3333333333%;
|
|
19773
19784
|
}
|
|
19774
|
-
.
|
|
19785
|
+
.v-locale--is-ltr.offset-xxl-5, .v-locale--is-ltr .offset-xxl-5 {
|
|
19775
19786
|
margin-left: 41.6666666667%;
|
|
19776
19787
|
}
|
|
19777
|
-
.
|
|
19788
|
+
.v-locale--is-rtl.offset-xxl-5, .v-locale--is-rtl .offset-xxl-5 {
|
|
19778
19789
|
margin-right: 41.6666666667%;
|
|
19779
19790
|
}
|
|
19780
|
-
.
|
|
19791
|
+
.v-locale--is-ltr.offset-xxl-6, .v-locale--is-ltr .offset-xxl-6 {
|
|
19781
19792
|
margin-left: 50%;
|
|
19782
19793
|
}
|
|
19783
|
-
.
|
|
19794
|
+
.v-locale--is-rtl.offset-xxl-6, .v-locale--is-rtl .offset-xxl-6 {
|
|
19784
19795
|
margin-right: 50%;
|
|
19785
19796
|
}
|
|
19786
|
-
.
|
|
19797
|
+
.v-locale--is-ltr.offset-xxl-7, .v-locale--is-ltr .offset-xxl-7 {
|
|
19787
19798
|
margin-left: 58.3333333333%;
|
|
19788
19799
|
}
|
|
19789
|
-
.
|
|
19800
|
+
.v-locale--is-rtl.offset-xxl-7, .v-locale--is-rtl .offset-xxl-7 {
|
|
19790
19801
|
margin-right: 58.3333333333%;
|
|
19791
19802
|
}
|
|
19792
|
-
.
|
|
19803
|
+
.v-locale--is-ltr.offset-xxl-8, .v-locale--is-ltr .offset-xxl-8 {
|
|
19793
19804
|
margin-left: 66.6666666667%;
|
|
19794
19805
|
}
|
|
19795
|
-
.
|
|
19806
|
+
.v-locale--is-rtl.offset-xxl-8, .v-locale--is-rtl .offset-xxl-8 {
|
|
19796
19807
|
margin-right: 66.6666666667%;
|
|
19797
19808
|
}
|
|
19798
|
-
.
|
|
19809
|
+
.v-locale--is-ltr.offset-xxl-9, .v-locale--is-ltr .offset-xxl-9 {
|
|
19799
19810
|
margin-left: 75%;
|
|
19800
19811
|
}
|
|
19801
|
-
.
|
|
19812
|
+
.v-locale--is-rtl.offset-xxl-9, .v-locale--is-rtl .offset-xxl-9 {
|
|
19802
19813
|
margin-right: 75%;
|
|
19803
19814
|
}
|
|
19804
|
-
.
|
|
19815
|
+
.v-locale--is-ltr.offset-xxl-10, .v-locale--is-ltr .offset-xxl-10 {
|
|
19805
19816
|
margin-left: 83.3333333333%;
|
|
19806
19817
|
}
|
|
19807
|
-
.
|
|
19818
|
+
.v-locale--is-rtl.offset-xxl-10, .v-locale--is-rtl .offset-xxl-10 {
|
|
19808
19819
|
margin-right: 83.3333333333%;
|
|
19809
19820
|
}
|
|
19810
|
-
.
|
|
19821
|
+
.v-locale--is-ltr.offset-xxl-11, .v-locale--is-ltr .offset-xxl-11 {
|
|
19811
19822
|
margin-left: 91.6666666667%;
|
|
19812
19823
|
}
|
|
19813
|
-
.
|
|
19824
|
+
.v-locale--is-rtl.offset-xxl-11, .v-locale--is-rtl .offset-xxl-11 {
|
|
19814
19825
|
margin-right: 91.6666666667%;
|
|
19815
19826
|
}
|
|
19816
19827
|
}.v-counter {
|
|
@@ -20506,23 +20517,36 @@ textarea.v-field__input::placeholder {
|
|
|
20506
20517
|
transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
20507
20518
|
}
|
|
20508
20519
|
.v-field--variant-outlined .v-field__outline__start {
|
|
20509
|
-
flex: 0 0 12px;
|
|
20510
20520
|
border-top-width: var(--v-field-border-width);
|
|
20511
20521
|
border-bottom-width: var(--v-field-border-width);
|
|
20512
20522
|
border-inline-start-width: var(--v-field-border-width);
|
|
20513
20523
|
}
|
|
20514
|
-
.v-
|
|
20524
|
+
.v-input--density-default .v-field--variant-outlined .v-field__outline__start {
|
|
20525
|
+
flex: 0 0 29px;
|
|
20526
|
+
}
|
|
20527
|
+
|
|
20528
|
+
.v-input--density-comfortable .v-field--variant-outlined .v-field__outline__start {
|
|
20529
|
+
flex: 0 0 25px;
|
|
20530
|
+
}
|
|
20531
|
+
|
|
20532
|
+
.v-input--density-compact .v-field--variant-outlined .v-field__outline__start {
|
|
20533
|
+
flex: 0 0 21px;
|
|
20534
|
+
}
|
|
20535
|
+
|
|
20536
|
+
.v-locale--is-ltr.v-field--variant-outlined .v-field__outline__start, .v-locale--is-ltr .v-field--variant-outlined .v-field__outline__start {
|
|
20515
20537
|
border-top-left-radius: inherit;
|
|
20516
20538
|
border-top-right-radius: 0;
|
|
20517
20539
|
border-bottom-right-radius: 0;
|
|
20518
20540
|
border-bottom-left-radius: inherit;
|
|
20519
20541
|
}
|
|
20520
|
-
|
|
20542
|
+
|
|
20543
|
+
.v-locale--is-rtl.v-field--variant-outlined .v-field__outline__start, .v-locale--is-rtl .v-field--variant-outlined .v-field__outline__start {
|
|
20521
20544
|
border-top-left-radius: 0;
|
|
20522
20545
|
border-top-right-radius: inherit;
|
|
20523
20546
|
border-bottom-right-radius: inherit;
|
|
20524
20547
|
border-bottom-left-radius: 0;
|
|
20525
20548
|
}
|
|
20549
|
+
|
|
20526
20550
|
.v-field--variant-outlined .v-field__outline__notch {
|
|
20527
20551
|
flex: none;
|
|
20528
20552
|
position: relative;
|
|
@@ -20554,13 +20578,14 @@ textarea.v-field__input::placeholder {
|
|
|
20554
20578
|
border-bottom-width: var(--v-field-border-width);
|
|
20555
20579
|
border-inline-end-width: var(--v-field-border-width);
|
|
20556
20580
|
}
|
|
20557
|
-
.v-field--variant-outlined .v-field__outline__end
|
|
20581
|
+
.v-locale--is-ltr.v-field--variant-outlined .v-field__outline__end, .v-locale--is-ltr .v-field--variant-outlined .v-field__outline__end {
|
|
20558
20582
|
border-top-left-radius: 0;
|
|
20559
20583
|
border-top-right-radius: inherit;
|
|
20560
20584
|
border-bottom-right-radius: inherit;
|
|
20561
20585
|
border-bottom-left-radius: 0;
|
|
20562
20586
|
}
|
|
20563
|
-
|
|
20587
|
+
|
|
20588
|
+
.v-locale--is-rtl.v-field--variant-outlined .v-field__outline__end, .v-locale--is-rtl .v-field--variant-outlined .v-field__outline__end {
|
|
20564
20589
|
border-top-left-radius: inherit;
|
|
20565
20590
|
border-top-right-radius: 0;
|
|
20566
20591
|
border-bottom-right-radius: 0;
|
|
@@ -20641,10 +20666,11 @@ textarea.v-field__input::placeholder {
|
|
|
20641
20666
|
.v-field--reverse .v-field__field, .v-field--reverse .v-field__input {
|
|
20642
20667
|
flex-direction: row-reverse;
|
|
20643
20668
|
}
|
|
20644
|
-
.v-field--reverse .v-field__input
|
|
20669
|
+
.v-locale--is-ltr.v-field--reverse .v-field__input, .v-locale--is-ltr.v-field--reverse input, .v-locale--is-ltr .v-field--reverse .v-field__input, .v-locale--is-ltr .v-field--reverse input {
|
|
20645
20670
|
text-align: right;
|
|
20646
20671
|
}
|
|
20647
|
-
|
|
20672
|
+
|
|
20673
|
+
.v-locale--is-rtl.v-field--reverse .v-field__input, .v-locale--is-rtl.v-field--reverse input, .v-locale--is-rtl .v-field--reverse .v-field__input, .v-locale--is-rtl .v-field--reverse input {
|
|
20648
20674
|
text-align: left;
|
|
20649
20675
|
}
|
|
20650
20676
|
|
|
@@ -20919,20 +20945,6 @@ textarea.v-field__input::placeholder {
|
|
|
20919
20945
|
max-width: 100%;
|
|
20920
20946
|
position: relative;
|
|
20921
20947
|
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
20922
|
-
}.v-label {
|
|
20923
|
-
align-items: center;
|
|
20924
|
-
display: inline-flex;
|
|
20925
|
-
font-size: 1rem;
|
|
20926
|
-
letter-spacing: 0.009375em;
|
|
20927
|
-
min-width: 0;
|
|
20928
|
-
opacity: var(--v-medium-emphasis-opacity);
|
|
20929
|
-
overflow: hidden;
|
|
20930
|
-
text-overflow: ellipsis;
|
|
20931
|
-
white-space: nowrap;
|
|
20932
|
-
}
|
|
20933
|
-
|
|
20934
|
-
.v-label--clickable {
|
|
20935
|
-
cursor: pointer;
|
|
20936
20948
|
}.v-layout {
|
|
20937
20949
|
--v-scrollbar-offset: 0px;
|
|
20938
20950
|
display: flex;
|
|
@@ -20948,6 +20960,20 @@ textarea.v-field__input::placeholder {
|
|
|
20948
20960
|
|
|
20949
20961
|
.v-layout-item--absolute {
|
|
20950
20962
|
position: absolute;
|
|
20963
|
+
}.v-label {
|
|
20964
|
+
align-items: center;
|
|
20965
|
+
display: inline-flex;
|
|
20966
|
+
font-size: 1rem;
|
|
20967
|
+
letter-spacing: 0.009375em;
|
|
20968
|
+
min-width: 0;
|
|
20969
|
+
opacity: var(--v-medium-emphasis-opacity);
|
|
20970
|
+
overflow: hidden;
|
|
20971
|
+
text-overflow: ellipsis;
|
|
20972
|
+
white-space: nowrap;
|
|
20973
|
+
}
|
|
20974
|
+
|
|
20975
|
+
.v-label--clickable {
|
|
20976
|
+
cursor: pointer;
|
|
20951
20977
|
}.v-list {
|
|
20952
20978
|
overflow: auto;
|
|
20953
20979
|
padding: 8px 0;
|
|
@@ -21946,11 +21972,12 @@ html.v-overlay-scroll-blocked {
|
|
|
21946
21972
|
.v-progress-linear--rounded-bar .v-progress-linear__stream + .v-progress-linear__background {
|
|
21947
21973
|
border-radius: 9999px;
|
|
21948
21974
|
}
|
|
21949
|
-
.v-progress-linear--rounded-bar .v-progress-linear__determinate
|
|
21975
|
+
.v-locale--is-ltr.v-progress-linear--rounded-bar .v-progress-linear__determinate, .v-locale--is-ltr .v-progress-linear--rounded-bar .v-progress-linear__determinate {
|
|
21950
21976
|
border-top-left-radius: 0;
|
|
21951
21977
|
border-bottom-left-radius: 0;
|
|
21952
21978
|
}
|
|
21953
|
-
|
|
21979
|
+
|
|
21980
|
+
.v-locale--is-rtl.v-progress-linear--rounded-bar .v-progress-linear__determinate, .v-locale--is-rtl .v-progress-linear--rounded-bar .v-progress-linear__determinate {
|
|
21954
21981
|
border-top-right-radius: 0;
|
|
21955
21982
|
border-bottom-right-radius: 0;
|
|
21956
21983
|
}
|
|
@@ -22333,34 +22360,6 @@ html.v-overlay-scroll-blocked {
|
|
|
22333
22360
|
.v-selection-control-group--inline {
|
|
22334
22361
|
flex-direction: row;
|
|
22335
22362
|
flex-wrap: wrap;
|
|
22336
|
-
}.v-sheet {
|
|
22337
|
-
display: block;
|
|
22338
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
22339
|
-
border-style: solid;
|
|
22340
|
-
border-width: 0;
|
|
22341
|
-
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));
|
|
22342
|
-
border-radius: 0;
|
|
22343
|
-
background: rgb(var(--v-theme-surface));
|
|
22344
|
-
color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
|
|
22345
|
-
}
|
|
22346
|
-
.v-sheet--border {
|
|
22347
|
-
border-width: thin;
|
|
22348
|
-
box-shadow: none;
|
|
22349
|
-
}
|
|
22350
|
-
.v-sheet--absolute {
|
|
22351
|
-
position: absolute;
|
|
22352
|
-
}
|
|
22353
|
-
.v-sheet--fixed {
|
|
22354
|
-
position: fixed;
|
|
22355
|
-
}
|
|
22356
|
-
.v-sheet--relative {
|
|
22357
|
-
position: relative;
|
|
22358
|
-
}
|
|
22359
|
-
.v-sheet--sticky {
|
|
22360
|
-
position: sticky;
|
|
22361
|
-
}
|
|
22362
|
-
.v-sheet--rounded {
|
|
22363
|
-
border-radius: 4px;
|
|
22364
22363
|
}.v-slide-group {
|
|
22365
22364
|
display: flex;
|
|
22366
22365
|
overflow: hidden;
|
|
@@ -22403,6 +22402,34 @@ html.v-overlay-scroll-blocked {
|
|
|
22403
22402
|
.v-slide-group--vertical .v-slide-group__container,
|
|
22404
22403
|
.v-slide-group--vertical .v-slide-group__content {
|
|
22405
22404
|
flex-direction: column;
|
|
22405
|
+
}.v-sheet {
|
|
22406
|
+
display: block;
|
|
22407
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
22408
|
+
border-style: solid;
|
|
22409
|
+
border-width: 0;
|
|
22410
|
+
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));
|
|
22411
|
+
border-radius: 0;
|
|
22412
|
+
background: rgb(var(--v-theme-surface));
|
|
22413
|
+
color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
|
|
22414
|
+
}
|
|
22415
|
+
.v-sheet--border {
|
|
22416
|
+
border-width: thin;
|
|
22417
|
+
box-shadow: none;
|
|
22418
|
+
}
|
|
22419
|
+
.v-sheet--absolute {
|
|
22420
|
+
position: absolute;
|
|
22421
|
+
}
|
|
22422
|
+
.v-sheet--fixed {
|
|
22423
|
+
position: fixed;
|
|
22424
|
+
}
|
|
22425
|
+
.v-sheet--relative {
|
|
22426
|
+
position: relative;
|
|
22427
|
+
}
|
|
22428
|
+
.v-sheet--sticky {
|
|
22429
|
+
position: sticky;
|
|
22430
|
+
}
|
|
22431
|
+
.v-sheet--rounded {
|
|
22432
|
+
border-radius: 4px;
|
|
22406
22433
|
}.v-snackbar {
|
|
22407
22434
|
justify-content: center;
|
|
22408
22435
|
z-index: 10000;
|
|
@@ -23103,11 +23130,12 @@ html.v-overlay-scroll-blocked {
|
|
|
23103
23130
|
height: var(--v-timeline-line-thickness);
|
|
23104
23131
|
width: calc(var(--v-timeline-line-size-base) + 12px - var(--v-timeline-line-inset));
|
|
23105
23132
|
}
|
|
23106
|
-
.v-timeline--horizontal .v-timeline-divider__before
|
|
23133
|
+
.v-locale--is-ltr.v-timeline--horizontal .v-timeline-divider__before, .v-locale--is-ltr .v-timeline--horizontal .v-timeline-divider__before {
|
|
23107
23134
|
left: -12px;
|
|
23108
23135
|
right: initial;
|
|
23109
23136
|
}
|
|
23110
|
-
|
|
23137
|
+
|
|
23138
|
+
.v-locale--is-rtl.v-timeline--horizontal .v-timeline-divider__before, .v-locale--is-rtl .v-timeline--horizontal .v-timeline-divider__before {
|
|
23111
23139
|
right: -12px;
|
|
23112
23140
|
left: initial;
|
|
23113
23141
|
}
|
|
@@ -23126,11 +23154,12 @@ html.v-overlay-scroll-blocked {
|
|
|
23126
23154
|
height: var(--v-timeline-line-thickness);
|
|
23127
23155
|
width: calc(var(--v-timeline-line-size-base) + 12px - var(--v-timeline-line-inset));
|
|
23128
23156
|
}
|
|
23129
|
-
.v-timeline--horizontal .v-timeline-divider__after
|
|
23157
|
+
.v-locale--is-ltr.v-timeline--horizontal .v-timeline-divider__after, .v-locale--is-ltr .v-timeline--horizontal .v-timeline-divider__after {
|
|
23130
23158
|
right: -12px;
|
|
23131
23159
|
left: initial;
|
|
23132
23160
|
}
|
|
23133
|
-
|
|
23161
|
+
|
|
23162
|
+
.v-locale--is-rtl.v-timeline--horizontal .v-timeline-divider__after, .v-locale--is-rtl .v-timeline--horizontal .v-timeline-divider__after {
|
|
23134
23163
|
left: -12px;
|
|
23135
23164
|
right: initial;
|
|
23136
23165
|
}
|
|
@@ -23150,11 +23179,12 @@ html.v-overlay-scroll-blocked {
|
|
|
23150
23179
|
.v-timeline--horizontal .v-timeline-item:first-child .v-timeline-divider__before {
|
|
23151
23180
|
width: calc(var(--v-timeline-line-size-base) + 12px - var(--v-timeline-line-inset));
|
|
23152
23181
|
}
|
|
23153
|
-
.v-timeline--horizontal .v-timeline-item:first-child .v-timeline-divider__before
|
|
23182
|
+
.v-locale--is-ltr.v-timeline--horizontal .v-timeline-item:first-child .v-timeline-divider__before, .v-locale--is-ltr .v-timeline--horizontal .v-timeline-item:first-child .v-timeline-divider__before {
|
|
23154
23183
|
left: 0;
|
|
23155
23184
|
right: initial;
|
|
23156
23185
|
}
|
|
23157
|
-
|
|
23186
|
+
|
|
23187
|
+
.v-locale--is-rtl.v-timeline--horizontal .v-timeline-item:first-child .v-timeline-divider__before, .v-locale--is-rtl .v-timeline--horizontal .v-timeline-item:first-child .v-timeline-divider__before {
|
|
23158
23188
|
right: 0;
|
|
23159
23189
|
left: initial;
|
|
23160
23190
|
}
|
|
@@ -23166,11 +23196,12 @@ html.v-overlay-scroll-blocked {
|
|
|
23166
23196
|
.v-timeline--horizontal .v-timeline-item:first-child .v-timeline-divider__after {
|
|
23167
23197
|
width: calc(var(--v-timeline-line-size-base) - var(--v-timeline-line-inset) + var(--v-timeline-line-size-offset));
|
|
23168
23198
|
}
|
|
23169
|
-
.v-timeline--horizontal .v-timeline-item:first-child .v-timeline-divider__after
|
|
23199
|
+
.v-locale--is-ltr.v-timeline--horizontal .v-timeline-item:first-child .v-timeline-divider__after, .v-locale--is-ltr .v-timeline--horizontal .v-timeline-item:first-child .v-timeline-divider__after {
|
|
23170
23200
|
right: -12px;
|
|
23171
23201
|
left: initial;
|
|
23172
23202
|
}
|
|
23173
|
-
|
|
23203
|
+
|
|
23204
|
+
.v-locale--is-rtl.v-timeline--horizontal .v-timeline-item:first-child .v-timeline-divider__after, .v-locale--is-rtl .v-timeline--horizontal .v-timeline-item:first-child .v-timeline-divider__after {
|
|
23174
23205
|
left: -12px;
|
|
23175
23206
|
right: initial;
|
|
23176
23207
|
}
|
|
@@ -23191,15 +23222,20 @@ html.v-overlay-scroll-blocked {
|
|
|
23191
23222
|
.v-timeline--horizontal .v-timeline-item:last-child .v-timeline-divider__after {
|
|
23192
23223
|
width: calc(var(--v-timeline-line-size-base) + 12px - var(--v-timeline-line-inset));
|
|
23193
23224
|
}
|
|
23194
|
-
.v-timeline--horizontal .v-timeline-item:last-child .v-timeline-divider__after
|
|
23225
|
+
.v-locale--is-ltr.v-timeline--horizontal .v-timeline-item:last-child .v-timeline-divider__after, .v-locale--is-ltr .v-timeline--horizontal .v-timeline-item:last-child .v-timeline-divider__after {
|
|
23195
23226
|
right: 0;
|
|
23196
23227
|
left: initial;
|
|
23197
23228
|
}
|
|
23198
|
-
|
|
23229
|
+
|
|
23230
|
+
.v-locale--is-rtl.v-timeline--horizontal .v-timeline-item:last-child .v-timeline-divider__after, .v-locale--is-rtl .v-timeline--horizontal .v-timeline-item:last-child .v-timeline-divider__after {
|
|
23199
23231
|
left: 0;
|
|
23200
23232
|
right: initial;
|
|
23201
23233
|
}
|
|
23202
23234
|
|
|
23235
|
+
.v-timeline--vertical .v-timeline-item:only-child .v-timeline-divider__after {
|
|
23236
|
+
height: calc(var(--v-timeline-line-size-base) - var(--v-timeline-line-inset));
|
|
23237
|
+
}
|
|
23238
|
+
|
|
23203
23239
|
.v-timeline-divider__dot {
|
|
23204
23240
|
z-index: 1;
|
|
23205
23241
|
flex-shrink: 0;
|
|
@@ -23484,12 +23520,14 @@ html.v-overlay-scroll-blocked {
|
|
|
23484
23520
|
.v-toolbar--collapse .v-toolbar-title {
|
|
23485
23521
|
display: none;
|
|
23486
23522
|
}
|
|
23487
|
-
.v-
|
|
23523
|
+
.v-locale--is-ltr.v-toolbar--collapse, .v-locale--is-ltr .v-toolbar--collapse {
|
|
23488
23524
|
border-bottom-right-radius: 24px;
|
|
23489
23525
|
}
|
|
23490
|
-
|
|
23526
|
+
|
|
23527
|
+
.v-locale--is-rtl.v-toolbar--collapse, .v-locale--is-rtl .v-toolbar--collapse {
|
|
23491
23528
|
border-bottom-left-radius: 24px;
|
|
23492
23529
|
}
|
|
23530
|
+
|
|
23493
23531
|
.v-toolbar--flat {
|
|
23494
23532
|
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));
|
|
23495
23533
|
}
|
|
@@ -23716,12 +23754,14 @@ html.v-overlay-scroll-blocked {
|
|
|
23716
23754
|
justify-content: center;
|
|
23717
23755
|
text-align: center;
|
|
23718
23756
|
}
|
|
23719
|
-
.v-color-picker-edit__input:not(:last-child)
|
|
23757
|
+
.v-locale--is-ltr.v-color-picker-edit__input:not(:last-child), .v-locale--is-ltr .v-color-picker-edit__input:not(:last-child) {
|
|
23720
23758
|
margin-right: 8px;
|
|
23721
23759
|
}
|
|
23722
|
-
|
|
23760
|
+
|
|
23761
|
+
.v-locale--is-rtl.v-color-picker-edit__input:not(:last-child), .v-locale--is-rtl .v-color-picker-edit__input:not(:last-child) {
|
|
23723
23762
|
margin-left: 8px;
|
|
23724
23763
|
}
|
|
23764
|
+
|
|
23725
23765
|
.v-color-picker-edit__input input {
|
|
23726
23766
|
border-radius: 4px;
|
|
23727
23767
|
margin-bottom: 8px;
|
|
@@ -23738,12 +23778,14 @@ html.v-overlay-scroll-blocked {
|
|
|
23738
23778
|
}.v-color-picker-preview__alpha .v-slider-track__background {
|
|
23739
23779
|
background-color: transparent !important;
|
|
23740
23780
|
}
|
|
23741
|
-
.v-color-picker-preview__alpha .v-slider-track__background
|
|
23781
|
+
.v-locale--is-ltr.v-color-picker-preview__alpha .v-slider-track__background, .v-locale--is-ltr .v-color-picker-preview__alpha .v-slider-track__background {
|
|
23742
23782
|
background-image: linear-gradient(to right, transparent, var(--v-color-picker-color-hsv));
|
|
23743
23783
|
}
|
|
23744
|
-
|
|
23784
|
+
|
|
23785
|
+
.v-locale--is-rtl.v-color-picker-preview__alpha .v-slider-track__background, .v-locale--is-rtl .v-color-picker-preview__alpha .v-slider-track__background {
|
|
23745
23786
|
background-image: linear-gradient(to left, transparent, var(--v-color-picker-color-hsv));
|
|
23746
23787
|
}
|
|
23788
|
+
|
|
23747
23789
|
.v-color-picker-preview__alpha .v-slider-track__background::after {
|
|
23748
23790
|
content: "";
|
|
23749
23791
|
z-index: -1;
|
|
@@ -23770,21 +23812,24 @@ html.v-overlay-scroll-blocked {
|
|
|
23770
23812
|
border-radius: 50%;
|
|
23771
23813
|
overflow: hidden;
|
|
23772
23814
|
}
|
|
23773
|
-
.v-color-picker-preview__dot
|
|
23815
|
+
.v-locale--is-ltr.v-color-picker-preview__dot, .v-locale--is-ltr .v-color-picker-preview__dot {
|
|
23774
23816
|
margin-right: 24px;
|
|
23775
23817
|
}
|
|
23776
|
-
|
|
23818
|
+
|
|
23819
|
+
.v-locale--is-rtl.v-color-picker-preview__dot, .v-locale--is-rtl .v-color-picker-preview__dot {
|
|
23777
23820
|
margin-left: 24px;
|
|
23778
23821
|
}
|
|
23822
|
+
|
|
23779
23823
|
.v-color-picker-preview__dot > div {
|
|
23780
23824
|
width: 100%;
|
|
23781
23825
|
height: 100%;
|
|
23782
23826
|
}
|
|
23783
23827
|
|
|
23784
|
-
.v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background
|
|
23828
|
+
.v-locale--is-ltr.v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background, .v-locale--is-ltr .v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background {
|
|
23785
23829
|
background: linear-gradient(to right, #F00 0%, #FF0 16.66%, #0F0 33.33%, #0FF 50%, #00F 66.66%, #F0F 83.33%, #F00 100%);
|
|
23786
23830
|
}
|
|
23787
|
-
|
|
23831
|
+
|
|
23832
|
+
.v-locale--is-rtl.v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background, .v-locale--is-rtl .v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background {
|
|
23788
23833
|
background: linear-gradient(to left, #F00 0%, #FF0 16.66%, #0F0 33.33%, #0FF 50%, #00F 66.66%, #F0F 83.33%, #F00 100%);
|
|
23789
23834
|
}
|
|
23790
23835
|
|
|
@@ -23930,12 +23975,14 @@ html.v-overlay-scroll-blocked {
|
|
|
23930
23975
|
top: 50%;
|
|
23931
23976
|
transform: translateY(-50%);
|
|
23932
23977
|
}
|
|
23933
|
-
.v-slider.v-input--horizontal .v-slider-thumb
|
|
23978
|
+
.v-locale--is-ltr.v-slider.v-input--horizontal .v-slider-thumb, .v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-thumb {
|
|
23934
23979
|
left: calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2);
|
|
23935
23980
|
}
|
|
23936
|
-
|
|
23981
|
+
|
|
23982
|
+
.v-locale--is-rtl.v-slider.v-input--horizontal .v-slider-thumb, .v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-thumb {
|
|
23937
23983
|
right: calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2);
|
|
23938
23984
|
}
|
|
23985
|
+
|
|
23939
23986
|
.v-slider.v-input--horizontal .v-slider-thumb__label-container {
|
|
23940
23987
|
left: calc(var(--v-slider-thumb-size) / 2);
|
|
23941
23988
|
top: 0;
|
|
@@ -23943,12 +23990,14 @@ html.v-overlay-scroll-blocked {
|
|
|
23943
23990
|
.v-slider.v-input--horizontal .v-slider-thumb__label {
|
|
23944
23991
|
bottom: calc(var(--v-slider-thumb-size) / 2);
|
|
23945
23992
|
}
|
|
23946
|
-
.v-slider.v-input--horizontal .v-slider-thumb__label
|
|
23993
|
+
.v-locale--is-ltr.v-slider.v-input--horizontal .v-slider-thumb__label, .v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-thumb__label {
|
|
23947
23994
|
transform: translateX(-50%);
|
|
23948
23995
|
}
|
|
23949
|
-
|
|
23996
|
+
|
|
23997
|
+
.v-locale--is-rtl.v-slider.v-input--horizontal .v-slider-thumb__label, .v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-thumb__label {
|
|
23950
23998
|
transform: translateX(50%);
|
|
23951
23999
|
}
|
|
24000
|
+
|
|
23952
24001
|
.v-slider.v-input--horizontal .v-slider-thumb__label::before {
|
|
23953
24002
|
border-left: 6px solid transparent;
|
|
23954
24003
|
border-right: 6px solid transparent;
|
|
@@ -24039,16 +24088,19 @@ html.v-overlay-scroll-blocked {
|
|
|
24039
24088
|
height: var(--v-slider-tick-size);
|
|
24040
24089
|
transform: translate(calc(var(--v-slider-tick-size) / -2), calc(var(--v-slider-tick-size) / -2));
|
|
24041
24090
|
}
|
|
24042
|
-
.v-slider-track__tick--first .v-slider-track__tick-label
|
|
24091
|
+
.v-locale--is-ltr.v-slider-track__tick--first .v-slider-track__tick-label, .v-locale--is-ltr .v-slider-track__tick--first .v-slider-track__tick-label {
|
|
24043
24092
|
transform: none;
|
|
24044
24093
|
}
|
|
24045
|
-
|
|
24094
|
+
|
|
24095
|
+
.v-locale--is-rtl.v-slider-track__tick--first .v-slider-track__tick-label, .v-locale--is-rtl .v-slider-track__tick--first .v-slider-track__tick-label {
|
|
24046
24096
|
transform: translateX(100%);
|
|
24047
24097
|
}
|
|
24048
|
-
|
|
24098
|
+
|
|
24099
|
+
.v-locale--is-ltr.v-slider-track__tick--last .v-slider-track__tick-label, .v-locale--is-ltr .v-slider-track__tick--last .v-slider-track__tick-label {
|
|
24049
24100
|
transform: translateX(-100%);
|
|
24050
24101
|
}
|
|
24051
|
-
|
|
24102
|
+
|
|
24103
|
+
.v-locale--is-rtl.v-slider-track__tick--last .v-slider-track__tick-label, .v-locale--is-rtl .v-slider-track__tick--last .v-slider-track__tick-label {
|
|
24052
24104
|
transform: none;
|
|
24053
24105
|
}
|
|
24054
24106
|
|
|
@@ -24075,34 +24127,40 @@ html.v-overlay-scroll-blocked {
|
|
|
24075
24127
|
.v-slider.v-input--horizontal .v-slider-track__tick {
|
|
24076
24128
|
margin-top: calc(calc(var(--v-slider-track-size) + 2px) / 2);
|
|
24077
24129
|
}
|
|
24078
|
-
.v-slider.v-input--horizontal .v-slider-track__tick
|
|
24130
|
+
.v-locale--is-rtl.v-slider.v-input--horizontal .v-slider-track__tick, .v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-track__tick {
|
|
24079
24131
|
transform: translate(calc(var(--v-slider-tick-size) / 2), calc(var(--v-slider-tick-size) / -2));
|
|
24080
24132
|
}
|
|
24133
|
+
|
|
24081
24134
|
.v-slider.v-input--horizontal .v-slider-track__tick .v-slider-track__tick-label {
|
|
24082
24135
|
margin-top: calc(var(--v-slider-track-size) / 2 + 8px);
|
|
24083
24136
|
}
|
|
24084
|
-
.v-slider.v-input--horizontal .v-slider-track__tick .v-slider-track__tick-label
|
|
24137
|
+
.v-locale--is-ltr.v-slider.v-input--horizontal .v-slider-track__tick .v-slider-track__tick-label, .v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-track__tick .v-slider-track__tick-label {
|
|
24085
24138
|
transform: translateX(-50%);
|
|
24086
24139
|
}
|
|
24087
|
-
|
|
24140
|
+
|
|
24141
|
+
.v-locale--is-rtl.v-slider.v-input--horizontal .v-slider-track__tick .v-slider-track__tick-label, .v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-track__tick .v-slider-track__tick-label {
|
|
24088
24142
|
transform: translateX(50%);
|
|
24089
24143
|
}
|
|
24144
|
+
|
|
24090
24145
|
.v-slider.v-input--horizontal .v-slider-track__tick--first {
|
|
24091
24146
|
margin-inline-start: calc(var(--v-slider-tick-size) + 1px);
|
|
24092
24147
|
}
|
|
24093
|
-
.v-slider.v-input--horizontal .v-slider-track__tick--first .v-slider-track__tick-label
|
|
24148
|
+
.v-locale--is-ltr.v-slider.v-input--horizontal .v-slider-track__tick--first .v-slider-track__tick-label, .v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-track__tick--first .v-slider-track__tick-label {
|
|
24094
24149
|
transform: translateX(0%);
|
|
24095
24150
|
}
|
|
24096
|
-
|
|
24151
|
+
|
|
24152
|
+
.v-locale--is-rtl.v-slider.v-input--horizontal .v-slider-track__tick--first .v-slider-track__tick-label, .v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-track__tick--first .v-slider-track__tick-label {
|
|
24097
24153
|
transform: translateX(0%);
|
|
24098
24154
|
}
|
|
24155
|
+
|
|
24099
24156
|
.v-slider.v-input--horizontal .v-slider-track__tick--last {
|
|
24100
24157
|
margin-inline-start: calc(100% - var(--v-slider-tick-size) - 1px);
|
|
24101
24158
|
}
|
|
24102
|
-
.v-slider.v-input--horizontal .v-slider-track__tick--last .v-slider-track__tick-label
|
|
24159
|
+
.v-locale--is-ltr.v-slider.v-input--horizontal .v-slider-track__tick--last .v-slider-track__tick-label, .v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-track__tick--last .v-slider-track__tick-label {
|
|
24103
24160
|
transform: translateX(-100%);
|
|
24104
24161
|
}
|
|
24105
|
-
|
|
24162
|
+
|
|
24163
|
+
.v-locale--is-rtl.v-slider.v-input--horizontal .v-slider-track__tick--last .v-slider-track__tick-label, .v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-track__tick--last .v-slider-track__tick-label {
|
|
24106
24164
|
transform: translateX(100%);
|
|
24107
24165
|
}
|
|
24108
24166
|
|
|
@@ -24126,9 +24184,10 @@ html.v-overlay-scroll-blocked {
|
|
|
24126
24184
|
margin-inline-start: calc(calc(var(--v-slider-track-size) + 2px) / 2);
|
|
24127
24185
|
transform: translate(calc(var(--v-slider-tick-size) / -2), calc(var(--v-slider-tick-size) / 2));
|
|
24128
24186
|
}
|
|
24129
|
-
.v-slider.v-input--vertical .v-slider-track__tick
|
|
24187
|
+
.v-locale--is-rtl.v-slider.v-input--vertical .v-slider-track__tick, .v-locale--is-rtl .v-slider.v-input--vertical .v-slider-track__tick {
|
|
24130
24188
|
transform: translate(calc(var(--v-slider-tick-size) / 2), calc(var(--v-slider-tick-size) / 2));
|
|
24131
24189
|
}
|
|
24190
|
+
|
|
24132
24191
|
.v-slider.v-input--vertical .v-slider-track__tick--first {
|
|
24133
24192
|
bottom: calc(0% + var(--v-slider-tick-size) + 1px);
|
|
24134
24193
|
}
|