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.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
|
*/
|
|
@@ -16398,7 +16398,7 @@ html.overflow-y-hidden {
|
|
|
16398
16398
|
position: absolute;
|
|
16399
16399
|
right: 0;
|
|
16400
16400
|
top: 0;
|
|
16401
|
-
transform: scale(1.
|
|
16401
|
+
transform: scale(1.05);
|
|
16402
16402
|
}
|
|
16403
16403
|
.v-badge--dot .v-badge__badge {
|
|
16404
16404
|
border-radius: 4.5px;
|
|
@@ -17958,6 +17958,26 @@ html.overflow-y-hidden {
|
|
|
17958
17958
|
.v-chip-group--column {
|
|
17959
17959
|
flex-wrap: wrap;
|
|
17960
17960
|
white-space: normal;
|
|
17961
|
+
}.v-color-picker {
|
|
17962
|
+
align-self: flex-start;
|
|
17963
|
+
contain: content;
|
|
17964
|
+
}
|
|
17965
|
+
.v-color-picker.v-sheet {
|
|
17966
|
+
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));
|
|
17967
|
+
border-radius: 4px;
|
|
17968
|
+
}
|
|
17969
|
+
|
|
17970
|
+
.v-color-picker__controls {
|
|
17971
|
+
display: flex;
|
|
17972
|
+
flex-direction: column;
|
|
17973
|
+
padding: 16px;
|
|
17974
|
+
}
|
|
17975
|
+
|
|
17976
|
+
.v-color-picker--flat {
|
|
17977
|
+
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));
|
|
17978
|
+
}
|
|
17979
|
+
.v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
|
|
17980
|
+
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));
|
|
17961
17981
|
}.v-container {
|
|
17962
17982
|
width: 100%;
|
|
17963
17983
|
padding: 16px;
|
|
@@ -18107,80 +18127,91 @@ html.overflow-y-hidden {
|
|
|
18107
18127
|
max-width: 100%;
|
|
18108
18128
|
}
|
|
18109
18129
|
|
|
18110
|
-
.
|
|
18130
|
+
.v-locale--is-ltr.offset-1, .v-locale--is-ltr .offset-1 {
|
|
18111
18131
|
margin-left: 8.3333333333%;
|
|
18112
18132
|
}
|
|
18113
|
-
|
|
18133
|
+
|
|
18134
|
+
.v-locale--is-rtl.offset-1, .v-locale--is-rtl .offset-1 {
|
|
18114
18135
|
margin-right: 8.3333333333%;
|
|
18115
18136
|
}
|
|
18116
18137
|
|
|
18117
|
-
.
|
|
18138
|
+
.v-locale--is-ltr.offset-2, .v-locale--is-ltr .offset-2 {
|
|
18118
18139
|
margin-left: 16.6666666667%;
|
|
18119
18140
|
}
|
|
18120
|
-
|
|
18141
|
+
|
|
18142
|
+
.v-locale--is-rtl.offset-2, .v-locale--is-rtl .offset-2 {
|
|
18121
18143
|
margin-right: 16.6666666667%;
|
|
18122
18144
|
}
|
|
18123
18145
|
|
|
18124
|
-
.
|
|
18146
|
+
.v-locale--is-ltr.offset-3, .v-locale--is-ltr .offset-3 {
|
|
18125
18147
|
margin-left: 25%;
|
|
18126
18148
|
}
|
|
18127
|
-
|
|
18149
|
+
|
|
18150
|
+
.v-locale--is-rtl.offset-3, .v-locale--is-rtl .offset-3 {
|
|
18128
18151
|
margin-right: 25%;
|
|
18129
18152
|
}
|
|
18130
18153
|
|
|
18131
|
-
.
|
|
18154
|
+
.v-locale--is-ltr.offset-4, .v-locale--is-ltr .offset-4 {
|
|
18132
18155
|
margin-left: 33.3333333333%;
|
|
18133
18156
|
}
|
|
18134
|
-
|
|
18157
|
+
|
|
18158
|
+
.v-locale--is-rtl.offset-4, .v-locale--is-rtl .offset-4 {
|
|
18135
18159
|
margin-right: 33.3333333333%;
|
|
18136
18160
|
}
|
|
18137
18161
|
|
|
18138
|
-
.
|
|
18162
|
+
.v-locale--is-ltr.offset-5, .v-locale--is-ltr .offset-5 {
|
|
18139
18163
|
margin-left: 41.6666666667%;
|
|
18140
18164
|
}
|
|
18141
|
-
|
|
18165
|
+
|
|
18166
|
+
.v-locale--is-rtl.offset-5, .v-locale--is-rtl .offset-5 {
|
|
18142
18167
|
margin-right: 41.6666666667%;
|
|
18143
18168
|
}
|
|
18144
18169
|
|
|
18145
|
-
.
|
|
18170
|
+
.v-locale--is-ltr.offset-6, .v-locale--is-ltr .offset-6 {
|
|
18146
18171
|
margin-left: 50%;
|
|
18147
18172
|
}
|
|
18148
|
-
|
|
18173
|
+
|
|
18174
|
+
.v-locale--is-rtl.offset-6, .v-locale--is-rtl .offset-6 {
|
|
18149
18175
|
margin-right: 50%;
|
|
18150
18176
|
}
|
|
18151
18177
|
|
|
18152
|
-
.
|
|
18178
|
+
.v-locale--is-ltr.offset-7, .v-locale--is-ltr .offset-7 {
|
|
18153
18179
|
margin-left: 58.3333333333%;
|
|
18154
18180
|
}
|
|
18155
|
-
|
|
18181
|
+
|
|
18182
|
+
.v-locale--is-rtl.offset-7, .v-locale--is-rtl .offset-7 {
|
|
18156
18183
|
margin-right: 58.3333333333%;
|
|
18157
18184
|
}
|
|
18158
18185
|
|
|
18159
|
-
.
|
|
18186
|
+
.v-locale--is-ltr.offset-8, .v-locale--is-ltr .offset-8 {
|
|
18160
18187
|
margin-left: 66.6666666667%;
|
|
18161
18188
|
}
|
|
18162
|
-
|
|
18189
|
+
|
|
18190
|
+
.v-locale--is-rtl.offset-8, .v-locale--is-rtl .offset-8 {
|
|
18163
18191
|
margin-right: 66.6666666667%;
|
|
18164
18192
|
}
|
|
18165
18193
|
|
|
18166
|
-
.
|
|
18194
|
+
.v-locale--is-ltr.offset-9, .v-locale--is-ltr .offset-9 {
|
|
18167
18195
|
margin-left: 75%;
|
|
18168
18196
|
}
|
|
18169
|
-
|
|
18197
|
+
|
|
18198
|
+
.v-locale--is-rtl.offset-9, .v-locale--is-rtl .offset-9 {
|
|
18170
18199
|
margin-right: 75%;
|
|
18171
18200
|
}
|
|
18172
18201
|
|
|
18173
|
-
.
|
|
18202
|
+
.v-locale--is-ltr.offset-10, .v-locale--is-ltr .offset-10 {
|
|
18174
18203
|
margin-left: 83.3333333333%;
|
|
18175
18204
|
}
|
|
18176
|
-
|
|
18205
|
+
|
|
18206
|
+
.v-locale--is-rtl.offset-10, .v-locale--is-rtl .offset-10 {
|
|
18177
18207
|
margin-right: 83.3333333333%;
|
|
18178
18208
|
}
|
|
18179
18209
|
|
|
18180
|
-
.
|
|
18210
|
+
.v-locale--is-ltr.offset-11, .v-locale--is-ltr .offset-11 {
|
|
18181
18211
|
margin-left: 91.6666666667%;
|
|
18182
18212
|
}
|
|
18183
|
-
|
|
18213
|
+
|
|
18214
|
+
.v-locale--is-rtl.offset-11, .v-locale--is-rtl .offset-11 {
|
|
18184
18215
|
margin-right: 91.6666666667%;
|
|
18185
18216
|
}
|
|
18186
18217
|
|
|
@@ -18243,76 +18274,76 @@ html.overflow-y-hidden {
|
|
|
18243
18274
|
flex: 0 0 100%;
|
|
18244
18275
|
max-width: 100%;
|
|
18245
18276
|
}
|
|
18246
|
-
.
|
|
18277
|
+
.v-locale--is-ltr.offset-sm-0, .v-locale--is-ltr .offset-sm-0 {
|
|
18247
18278
|
margin-left: 0;
|
|
18248
18279
|
}
|
|
18249
|
-
.
|
|
18280
|
+
.v-locale--is-rtl.offset-sm-0, .v-locale--is-rtl .offset-sm-0 {
|
|
18250
18281
|
margin-right: 0;
|
|
18251
18282
|
}
|
|
18252
|
-
.
|
|
18283
|
+
.v-locale--is-ltr.offset-sm-1, .v-locale--is-ltr .offset-sm-1 {
|
|
18253
18284
|
margin-left: 8.3333333333%;
|
|
18254
18285
|
}
|
|
18255
|
-
.
|
|
18286
|
+
.v-locale--is-rtl.offset-sm-1, .v-locale--is-rtl .offset-sm-1 {
|
|
18256
18287
|
margin-right: 8.3333333333%;
|
|
18257
18288
|
}
|
|
18258
|
-
.
|
|
18289
|
+
.v-locale--is-ltr.offset-sm-2, .v-locale--is-ltr .offset-sm-2 {
|
|
18259
18290
|
margin-left: 16.6666666667%;
|
|
18260
18291
|
}
|
|
18261
|
-
.
|
|
18292
|
+
.v-locale--is-rtl.offset-sm-2, .v-locale--is-rtl .offset-sm-2 {
|
|
18262
18293
|
margin-right: 16.6666666667%;
|
|
18263
18294
|
}
|
|
18264
|
-
.
|
|
18295
|
+
.v-locale--is-ltr.offset-sm-3, .v-locale--is-ltr .offset-sm-3 {
|
|
18265
18296
|
margin-left: 25%;
|
|
18266
18297
|
}
|
|
18267
|
-
.
|
|
18298
|
+
.v-locale--is-rtl.offset-sm-3, .v-locale--is-rtl .offset-sm-3 {
|
|
18268
18299
|
margin-right: 25%;
|
|
18269
18300
|
}
|
|
18270
|
-
.
|
|
18301
|
+
.v-locale--is-ltr.offset-sm-4, .v-locale--is-ltr .offset-sm-4 {
|
|
18271
18302
|
margin-left: 33.3333333333%;
|
|
18272
18303
|
}
|
|
18273
|
-
.
|
|
18304
|
+
.v-locale--is-rtl.offset-sm-4, .v-locale--is-rtl .offset-sm-4 {
|
|
18274
18305
|
margin-right: 33.3333333333%;
|
|
18275
18306
|
}
|
|
18276
|
-
.
|
|
18307
|
+
.v-locale--is-ltr.offset-sm-5, .v-locale--is-ltr .offset-sm-5 {
|
|
18277
18308
|
margin-left: 41.6666666667%;
|
|
18278
18309
|
}
|
|
18279
|
-
.
|
|
18310
|
+
.v-locale--is-rtl.offset-sm-5, .v-locale--is-rtl .offset-sm-5 {
|
|
18280
18311
|
margin-right: 41.6666666667%;
|
|
18281
18312
|
}
|
|
18282
|
-
.
|
|
18313
|
+
.v-locale--is-ltr.offset-sm-6, .v-locale--is-ltr .offset-sm-6 {
|
|
18283
18314
|
margin-left: 50%;
|
|
18284
18315
|
}
|
|
18285
|
-
.
|
|
18316
|
+
.v-locale--is-rtl.offset-sm-6, .v-locale--is-rtl .offset-sm-6 {
|
|
18286
18317
|
margin-right: 50%;
|
|
18287
18318
|
}
|
|
18288
|
-
.
|
|
18319
|
+
.v-locale--is-ltr.offset-sm-7, .v-locale--is-ltr .offset-sm-7 {
|
|
18289
18320
|
margin-left: 58.3333333333%;
|
|
18290
18321
|
}
|
|
18291
|
-
.
|
|
18322
|
+
.v-locale--is-rtl.offset-sm-7, .v-locale--is-rtl .offset-sm-7 {
|
|
18292
18323
|
margin-right: 58.3333333333%;
|
|
18293
18324
|
}
|
|
18294
|
-
.
|
|
18325
|
+
.v-locale--is-ltr.offset-sm-8, .v-locale--is-ltr .offset-sm-8 {
|
|
18295
18326
|
margin-left: 66.6666666667%;
|
|
18296
18327
|
}
|
|
18297
|
-
.
|
|
18328
|
+
.v-locale--is-rtl.offset-sm-8, .v-locale--is-rtl .offset-sm-8 {
|
|
18298
18329
|
margin-right: 66.6666666667%;
|
|
18299
18330
|
}
|
|
18300
|
-
.
|
|
18331
|
+
.v-locale--is-ltr.offset-sm-9, .v-locale--is-ltr .offset-sm-9 {
|
|
18301
18332
|
margin-left: 75%;
|
|
18302
18333
|
}
|
|
18303
|
-
.
|
|
18334
|
+
.v-locale--is-rtl.offset-sm-9, .v-locale--is-rtl .offset-sm-9 {
|
|
18304
18335
|
margin-right: 75%;
|
|
18305
18336
|
}
|
|
18306
|
-
.
|
|
18337
|
+
.v-locale--is-ltr.offset-sm-10, .v-locale--is-ltr .offset-sm-10 {
|
|
18307
18338
|
margin-left: 83.3333333333%;
|
|
18308
18339
|
}
|
|
18309
|
-
.
|
|
18340
|
+
.v-locale--is-rtl.offset-sm-10, .v-locale--is-rtl .offset-sm-10 {
|
|
18310
18341
|
margin-right: 83.3333333333%;
|
|
18311
18342
|
}
|
|
18312
|
-
.
|
|
18343
|
+
.v-locale--is-ltr.offset-sm-11, .v-locale--is-ltr .offset-sm-11 {
|
|
18313
18344
|
margin-left: 91.6666666667%;
|
|
18314
18345
|
}
|
|
18315
|
-
.
|
|
18346
|
+
.v-locale--is-rtl.offset-sm-11, .v-locale--is-rtl .offset-sm-11 {
|
|
18316
18347
|
margin-right: 91.6666666667%;
|
|
18317
18348
|
}
|
|
18318
18349
|
}
|
|
@@ -18375,76 +18406,76 @@ html.overflow-y-hidden {
|
|
|
18375
18406
|
flex: 0 0 100%;
|
|
18376
18407
|
max-width: 100%;
|
|
18377
18408
|
}
|
|
18378
|
-
.
|
|
18409
|
+
.v-locale--is-ltr.offset-md-0, .v-locale--is-ltr .offset-md-0 {
|
|
18379
18410
|
margin-left: 0;
|
|
18380
18411
|
}
|
|
18381
|
-
.
|
|
18412
|
+
.v-locale--is-rtl.offset-md-0, .v-locale--is-rtl .offset-md-0 {
|
|
18382
18413
|
margin-right: 0;
|
|
18383
18414
|
}
|
|
18384
|
-
.
|
|
18415
|
+
.v-locale--is-ltr.offset-md-1, .v-locale--is-ltr .offset-md-1 {
|
|
18385
18416
|
margin-left: 8.3333333333%;
|
|
18386
18417
|
}
|
|
18387
|
-
.
|
|
18418
|
+
.v-locale--is-rtl.offset-md-1, .v-locale--is-rtl .offset-md-1 {
|
|
18388
18419
|
margin-right: 8.3333333333%;
|
|
18389
18420
|
}
|
|
18390
|
-
.
|
|
18421
|
+
.v-locale--is-ltr.offset-md-2, .v-locale--is-ltr .offset-md-2 {
|
|
18391
18422
|
margin-left: 16.6666666667%;
|
|
18392
18423
|
}
|
|
18393
|
-
.
|
|
18424
|
+
.v-locale--is-rtl.offset-md-2, .v-locale--is-rtl .offset-md-2 {
|
|
18394
18425
|
margin-right: 16.6666666667%;
|
|
18395
18426
|
}
|
|
18396
|
-
.
|
|
18427
|
+
.v-locale--is-ltr.offset-md-3, .v-locale--is-ltr .offset-md-3 {
|
|
18397
18428
|
margin-left: 25%;
|
|
18398
18429
|
}
|
|
18399
|
-
.
|
|
18430
|
+
.v-locale--is-rtl.offset-md-3, .v-locale--is-rtl .offset-md-3 {
|
|
18400
18431
|
margin-right: 25%;
|
|
18401
18432
|
}
|
|
18402
|
-
.
|
|
18433
|
+
.v-locale--is-ltr.offset-md-4, .v-locale--is-ltr .offset-md-4 {
|
|
18403
18434
|
margin-left: 33.3333333333%;
|
|
18404
18435
|
}
|
|
18405
|
-
.
|
|
18436
|
+
.v-locale--is-rtl.offset-md-4, .v-locale--is-rtl .offset-md-4 {
|
|
18406
18437
|
margin-right: 33.3333333333%;
|
|
18407
18438
|
}
|
|
18408
|
-
.
|
|
18439
|
+
.v-locale--is-ltr.offset-md-5, .v-locale--is-ltr .offset-md-5 {
|
|
18409
18440
|
margin-left: 41.6666666667%;
|
|
18410
18441
|
}
|
|
18411
|
-
.
|
|
18442
|
+
.v-locale--is-rtl.offset-md-5, .v-locale--is-rtl .offset-md-5 {
|
|
18412
18443
|
margin-right: 41.6666666667%;
|
|
18413
18444
|
}
|
|
18414
|
-
.
|
|
18445
|
+
.v-locale--is-ltr.offset-md-6, .v-locale--is-ltr .offset-md-6 {
|
|
18415
18446
|
margin-left: 50%;
|
|
18416
18447
|
}
|
|
18417
|
-
.
|
|
18448
|
+
.v-locale--is-rtl.offset-md-6, .v-locale--is-rtl .offset-md-6 {
|
|
18418
18449
|
margin-right: 50%;
|
|
18419
18450
|
}
|
|
18420
|
-
.
|
|
18451
|
+
.v-locale--is-ltr.offset-md-7, .v-locale--is-ltr .offset-md-7 {
|
|
18421
18452
|
margin-left: 58.3333333333%;
|
|
18422
18453
|
}
|
|
18423
|
-
.
|
|
18454
|
+
.v-locale--is-rtl.offset-md-7, .v-locale--is-rtl .offset-md-7 {
|
|
18424
18455
|
margin-right: 58.3333333333%;
|
|
18425
18456
|
}
|
|
18426
|
-
.
|
|
18457
|
+
.v-locale--is-ltr.offset-md-8, .v-locale--is-ltr .offset-md-8 {
|
|
18427
18458
|
margin-left: 66.6666666667%;
|
|
18428
18459
|
}
|
|
18429
|
-
.
|
|
18460
|
+
.v-locale--is-rtl.offset-md-8, .v-locale--is-rtl .offset-md-8 {
|
|
18430
18461
|
margin-right: 66.6666666667%;
|
|
18431
18462
|
}
|
|
18432
|
-
.
|
|
18463
|
+
.v-locale--is-ltr.offset-md-9, .v-locale--is-ltr .offset-md-9 {
|
|
18433
18464
|
margin-left: 75%;
|
|
18434
18465
|
}
|
|
18435
|
-
.
|
|
18466
|
+
.v-locale--is-rtl.offset-md-9, .v-locale--is-rtl .offset-md-9 {
|
|
18436
18467
|
margin-right: 75%;
|
|
18437
18468
|
}
|
|
18438
|
-
.
|
|
18469
|
+
.v-locale--is-ltr.offset-md-10, .v-locale--is-ltr .offset-md-10 {
|
|
18439
18470
|
margin-left: 83.3333333333%;
|
|
18440
18471
|
}
|
|
18441
|
-
.
|
|
18472
|
+
.v-locale--is-rtl.offset-md-10, .v-locale--is-rtl .offset-md-10 {
|
|
18442
18473
|
margin-right: 83.3333333333%;
|
|
18443
18474
|
}
|
|
18444
|
-
.
|
|
18475
|
+
.v-locale--is-ltr.offset-md-11, .v-locale--is-ltr .offset-md-11 {
|
|
18445
18476
|
margin-left: 91.6666666667%;
|
|
18446
18477
|
}
|
|
18447
|
-
.
|
|
18478
|
+
.v-locale--is-rtl.offset-md-11, .v-locale--is-rtl .offset-md-11 {
|
|
18448
18479
|
margin-right: 91.6666666667%;
|
|
18449
18480
|
}
|
|
18450
18481
|
}
|
|
@@ -18507,76 +18538,76 @@ html.overflow-y-hidden {
|
|
|
18507
18538
|
flex: 0 0 100%;
|
|
18508
18539
|
max-width: 100%;
|
|
18509
18540
|
}
|
|
18510
|
-
.
|
|
18541
|
+
.v-locale--is-ltr.offset-lg-0, .v-locale--is-ltr .offset-lg-0 {
|
|
18511
18542
|
margin-left: 0;
|
|
18512
18543
|
}
|
|
18513
|
-
.
|
|
18544
|
+
.v-locale--is-rtl.offset-lg-0, .v-locale--is-rtl .offset-lg-0 {
|
|
18514
18545
|
margin-right: 0;
|
|
18515
18546
|
}
|
|
18516
|
-
.
|
|
18547
|
+
.v-locale--is-ltr.offset-lg-1, .v-locale--is-ltr .offset-lg-1 {
|
|
18517
18548
|
margin-left: 8.3333333333%;
|
|
18518
18549
|
}
|
|
18519
|
-
.
|
|
18550
|
+
.v-locale--is-rtl.offset-lg-1, .v-locale--is-rtl .offset-lg-1 {
|
|
18520
18551
|
margin-right: 8.3333333333%;
|
|
18521
18552
|
}
|
|
18522
|
-
.
|
|
18553
|
+
.v-locale--is-ltr.offset-lg-2, .v-locale--is-ltr .offset-lg-2 {
|
|
18523
18554
|
margin-left: 16.6666666667%;
|
|
18524
18555
|
}
|
|
18525
|
-
.
|
|
18556
|
+
.v-locale--is-rtl.offset-lg-2, .v-locale--is-rtl .offset-lg-2 {
|
|
18526
18557
|
margin-right: 16.6666666667%;
|
|
18527
18558
|
}
|
|
18528
|
-
.
|
|
18559
|
+
.v-locale--is-ltr.offset-lg-3, .v-locale--is-ltr .offset-lg-3 {
|
|
18529
18560
|
margin-left: 25%;
|
|
18530
18561
|
}
|
|
18531
|
-
.
|
|
18562
|
+
.v-locale--is-rtl.offset-lg-3, .v-locale--is-rtl .offset-lg-3 {
|
|
18532
18563
|
margin-right: 25%;
|
|
18533
18564
|
}
|
|
18534
|
-
.
|
|
18565
|
+
.v-locale--is-ltr.offset-lg-4, .v-locale--is-ltr .offset-lg-4 {
|
|
18535
18566
|
margin-left: 33.3333333333%;
|
|
18536
18567
|
}
|
|
18537
|
-
.
|
|
18568
|
+
.v-locale--is-rtl.offset-lg-4, .v-locale--is-rtl .offset-lg-4 {
|
|
18538
18569
|
margin-right: 33.3333333333%;
|
|
18539
18570
|
}
|
|
18540
|
-
.
|
|
18571
|
+
.v-locale--is-ltr.offset-lg-5, .v-locale--is-ltr .offset-lg-5 {
|
|
18541
18572
|
margin-left: 41.6666666667%;
|
|
18542
18573
|
}
|
|
18543
|
-
.
|
|
18574
|
+
.v-locale--is-rtl.offset-lg-5, .v-locale--is-rtl .offset-lg-5 {
|
|
18544
18575
|
margin-right: 41.6666666667%;
|
|
18545
18576
|
}
|
|
18546
|
-
.
|
|
18577
|
+
.v-locale--is-ltr.offset-lg-6, .v-locale--is-ltr .offset-lg-6 {
|
|
18547
18578
|
margin-left: 50%;
|
|
18548
18579
|
}
|
|
18549
|
-
.
|
|
18580
|
+
.v-locale--is-rtl.offset-lg-6, .v-locale--is-rtl .offset-lg-6 {
|
|
18550
18581
|
margin-right: 50%;
|
|
18551
18582
|
}
|
|
18552
|
-
.
|
|
18583
|
+
.v-locale--is-ltr.offset-lg-7, .v-locale--is-ltr .offset-lg-7 {
|
|
18553
18584
|
margin-left: 58.3333333333%;
|
|
18554
18585
|
}
|
|
18555
|
-
.
|
|
18586
|
+
.v-locale--is-rtl.offset-lg-7, .v-locale--is-rtl .offset-lg-7 {
|
|
18556
18587
|
margin-right: 58.3333333333%;
|
|
18557
18588
|
}
|
|
18558
|
-
.
|
|
18589
|
+
.v-locale--is-ltr.offset-lg-8, .v-locale--is-ltr .offset-lg-8 {
|
|
18559
18590
|
margin-left: 66.6666666667%;
|
|
18560
18591
|
}
|
|
18561
|
-
.
|
|
18592
|
+
.v-locale--is-rtl.offset-lg-8, .v-locale--is-rtl .offset-lg-8 {
|
|
18562
18593
|
margin-right: 66.6666666667%;
|
|
18563
18594
|
}
|
|
18564
|
-
.
|
|
18595
|
+
.v-locale--is-ltr.offset-lg-9, .v-locale--is-ltr .offset-lg-9 {
|
|
18565
18596
|
margin-left: 75%;
|
|
18566
18597
|
}
|
|
18567
|
-
.
|
|
18598
|
+
.v-locale--is-rtl.offset-lg-9, .v-locale--is-rtl .offset-lg-9 {
|
|
18568
18599
|
margin-right: 75%;
|
|
18569
18600
|
}
|
|
18570
|
-
.
|
|
18601
|
+
.v-locale--is-ltr.offset-lg-10, .v-locale--is-ltr .offset-lg-10 {
|
|
18571
18602
|
margin-left: 83.3333333333%;
|
|
18572
18603
|
}
|
|
18573
|
-
.
|
|
18604
|
+
.v-locale--is-rtl.offset-lg-10, .v-locale--is-rtl .offset-lg-10 {
|
|
18574
18605
|
margin-right: 83.3333333333%;
|
|
18575
18606
|
}
|
|
18576
|
-
.
|
|
18607
|
+
.v-locale--is-ltr.offset-lg-11, .v-locale--is-ltr .offset-lg-11 {
|
|
18577
18608
|
margin-left: 91.6666666667%;
|
|
18578
18609
|
}
|
|
18579
|
-
.
|
|
18610
|
+
.v-locale--is-rtl.offset-lg-11, .v-locale--is-rtl .offset-lg-11 {
|
|
18580
18611
|
margin-right: 91.6666666667%;
|
|
18581
18612
|
}
|
|
18582
18613
|
}
|
|
@@ -18639,76 +18670,76 @@ html.overflow-y-hidden {
|
|
|
18639
18670
|
flex: 0 0 100%;
|
|
18640
18671
|
max-width: 100%;
|
|
18641
18672
|
}
|
|
18642
|
-
.
|
|
18673
|
+
.v-locale--is-ltr.offset-xl-0, .v-locale--is-ltr .offset-xl-0 {
|
|
18643
18674
|
margin-left: 0;
|
|
18644
18675
|
}
|
|
18645
|
-
.
|
|
18676
|
+
.v-locale--is-rtl.offset-xl-0, .v-locale--is-rtl .offset-xl-0 {
|
|
18646
18677
|
margin-right: 0;
|
|
18647
18678
|
}
|
|
18648
|
-
.
|
|
18679
|
+
.v-locale--is-ltr.offset-xl-1, .v-locale--is-ltr .offset-xl-1 {
|
|
18649
18680
|
margin-left: 8.3333333333%;
|
|
18650
18681
|
}
|
|
18651
|
-
.
|
|
18682
|
+
.v-locale--is-rtl.offset-xl-1, .v-locale--is-rtl .offset-xl-1 {
|
|
18652
18683
|
margin-right: 8.3333333333%;
|
|
18653
18684
|
}
|
|
18654
|
-
.
|
|
18685
|
+
.v-locale--is-ltr.offset-xl-2, .v-locale--is-ltr .offset-xl-2 {
|
|
18655
18686
|
margin-left: 16.6666666667%;
|
|
18656
18687
|
}
|
|
18657
|
-
.
|
|
18688
|
+
.v-locale--is-rtl.offset-xl-2, .v-locale--is-rtl .offset-xl-2 {
|
|
18658
18689
|
margin-right: 16.6666666667%;
|
|
18659
18690
|
}
|
|
18660
|
-
.
|
|
18691
|
+
.v-locale--is-ltr.offset-xl-3, .v-locale--is-ltr .offset-xl-3 {
|
|
18661
18692
|
margin-left: 25%;
|
|
18662
18693
|
}
|
|
18663
|
-
.
|
|
18694
|
+
.v-locale--is-rtl.offset-xl-3, .v-locale--is-rtl .offset-xl-3 {
|
|
18664
18695
|
margin-right: 25%;
|
|
18665
18696
|
}
|
|
18666
|
-
.
|
|
18697
|
+
.v-locale--is-ltr.offset-xl-4, .v-locale--is-ltr .offset-xl-4 {
|
|
18667
18698
|
margin-left: 33.3333333333%;
|
|
18668
18699
|
}
|
|
18669
|
-
.
|
|
18700
|
+
.v-locale--is-rtl.offset-xl-4, .v-locale--is-rtl .offset-xl-4 {
|
|
18670
18701
|
margin-right: 33.3333333333%;
|
|
18671
18702
|
}
|
|
18672
|
-
.
|
|
18703
|
+
.v-locale--is-ltr.offset-xl-5, .v-locale--is-ltr .offset-xl-5 {
|
|
18673
18704
|
margin-left: 41.6666666667%;
|
|
18674
18705
|
}
|
|
18675
|
-
.
|
|
18706
|
+
.v-locale--is-rtl.offset-xl-5, .v-locale--is-rtl .offset-xl-5 {
|
|
18676
18707
|
margin-right: 41.6666666667%;
|
|
18677
18708
|
}
|
|
18678
|
-
.
|
|
18709
|
+
.v-locale--is-ltr.offset-xl-6, .v-locale--is-ltr .offset-xl-6 {
|
|
18679
18710
|
margin-left: 50%;
|
|
18680
18711
|
}
|
|
18681
|
-
.
|
|
18712
|
+
.v-locale--is-rtl.offset-xl-6, .v-locale--is-rtl .offset-xl-6 {
|
|
18682
18713
|
margin-right: 50%;
|
|
18683
18714
|
}
|
|
18684
|
-
.
|
|
18715
|
+
.v-locale--is-ltr.offset-xl-7, .v-locale--is-ltr .offset-xl-7 {
|
|
18685
18716
|
margin-left: 58.3333333333%;
|
|
18686
18717
|
}
|
|
18687
|
-
.
|
|
18718
|
+
.v-locale--is-rtl.offset-xl-7, .v-locale--is-rtl .offset-xl-7 {
|
|
18688
18719
|
margin-right: 58.3333333333%;
|
|
18689
18720
|
}
|
|
18690
|
-
.
|
|
18721
|
+
.v-locale--is-ltr.offset-xl-8, .v-locale--is-ltr .offset-xl-8 {
|
|
18691
18722
|
margin-left: 66.6666666667%;
|
|
18692
18723
|
}
|
|
18693
|
-
.
|
|
18724
|
+
.v-locale--is-rtl.offset-xl-8, .v-locale--is-rtl .offset-xl-8 {
|
|
18694
18725
|
margin-right: 66.6666666667%;
|
|
18695
18726
|
}
|
|
18696
|
-
.
|
|
18727
|
+
.v-locale--is-ltr.offset-xl-9, .v-locale--is-ltr .offset-xl-9 {
|
|
18697
18728
|
margin-left: 75%;
|
|
18698
18729
|
}
|
|
18699
|
-
.
|
|
18730
|
+
.v-locale--is-rtl.offset-xl-9, .v-locale--is-rtl .offset-xl-9 {
|
|
18700
18731
|
margin-right: 75%;
|
|
18701
18732
|
}
|
|
18702
|
-
.
|
|
18733
|
+
.v-locale--is-ltr.offset-xl-10, .v-locale--is-ltr .offset-xl-10 {
|
|
18703
18734
|
margin-left: 83.3333333333%;
|
|
18704
18735
|
}
|
|
18705
|
-
.
|
|
18736
|
+
.v-locale--is-rtl.offset-xl-10, .v-locale--is-rtl .offset-xl-10 {
|
|
18706
18737
|
margin-right: 83.3333333333%;
|
|
18707
18738
|
}
|
|
18708
|
-
.
|
|
18739
|
+
.v-locale--is-ltr.offset-xl-11, .v-locale--is-ltr .offset-xl-11 {
|
|
18709
18740
|
margin-left: 91.6666666667%;
|
|
18710
18741
|
}
|
|
18711
|
-
.
|
|
18742
|
+
.v-locale--is-rtl.offset-xl-11, .v-locale--is-rtl .offset-xl-11 {
|
|
18712
18743
|
margin-right: 91.6666666667%;
|
|
18713
18744
|
}
|
|
18714
18745
|
}
|
|
@@ -18771,98 +18802,78 @@ html.overflow-y-hidden {
|
|
|
18771
18802
|
flex: 0 0 100%;
|
|
18772
18803
|
max-width: 100%;
|
|
18773
18804
|
}
|
|
18774
|
-
.
|
|
18805
|
+
.v-locale--is-ltr.offset-xxl-0, .v-locale--is-ltr .offset-xxl-0 {
|
|
18775
18806
|
margin-left: 0;
|
|
18776
18807
|
}
|
|
18777
|
-
.
|
|
18808
|
+
.v-locale--is-rtl.offset-xxl-0, .v-locale--is-rtl .offset-xxl-0 {
|
|
18778
18809
|
margin-right: 0;
|
|
18779
18810
|
}
|
|
18780
|
-
.
|
|
18811
|
+
.v-locale--is-ltr.offset-xxl-1, .v-locale--is-ltr .offset-xxl-1 {
|
|
18781
18812
|
margin-left: 8.3333333333%;
|
|
18782
18813
|
}
|
|
18783
|
-
.
|
|
18814
|
+
.v-locale--is-rtl.offset-xxl-1, .v-locale--is-rtl .offset-xxl-1 {
|
|
18784
18815
|
margin-right: 8.3333333333%;
|
|
18785
18816
|
}
|
|
18786
|
-
.
|
|
18817
|
+
.v-locale--is-ltr.offset-xxl-2, .v-locale--is-ltr .offset-xxl-2 {
|
|
18787
18818
|
margin-left: 16.6666666667%;
|
|
18788
18819
|
}
|
|
18789
|
-
.
|
|
18820
|
+
.v-locale--is-rtl.offset-xxl-2, .v-locale--is-rtl .offset-xxl-2 {
|
|
18790
18821
|
margin-right: 16.6666666667%;
|
|
18791
18822
|
}
|
|
18792
|
-
.
|
|
18823
|
+
.v-locale--is-ltr.offset-xxl-3, .v-locale--is-ltr .offset-xxl-3 {
|
|
18793
18824
|
margin-left: 25%;
|
|
18794
18825
|
}
|
|
18795
|
-
.
|
|
18826
|
+
.v-locale--is-rtl.offset-xxl-3, .v-locale--is-rtl .offset-xxl-3 {
|
|
18796
18827
|
margin-right: 25%;
|
|
18797
18828
|
}
|
|
18798
|
-
.
|
|
18829
|
+
.v-locale--is-ltr.offset-xxl-4, .v-locale--is-ltr .offset-xxl-4 {
|
|
18799
18830
|
margin-left: 33.3333333333%;
|
|
18800
18831
|
}
|
|
18801
|
-
.
|
|
18832
|
+
.v-locale--is-rtl.offset-xxl-4, .v-locale--is-rtl .offset-xxl-4 {
|
|
18802
18833
|
margin-right: 33.3333333333%;
|
|
18803
18834
|
}
|
|
18804
|
-
.
|
|
18835
|
+
.v-locale--is-ltr.offset-xxl-5, .v-locale--is-ltr .offset-xxl-5 {
|
|
18805
18836
|
margin-left: 41.6666666667%;
|
|
18806
18837
|
}
|
|
18807
|
-
.
|
|
18838
|
+
.v-locale--is-rtl.offset-xxl-5, .v-locale--is-rtl .offset-xxl-5 {
|
|
18808
18839
|
margin-right: 41.6666666667%;
|
|
18809
18840
|
}
|
|
18810
|
-
.
|
|
18841
|
+
.v-locale--is-ltr.offset-xxl-6, .v-locale--is-ltr .offset-xxl-6 {
|
|
18811
18842
|
margin-left: 50%;
|
|
18812
18843
|
}
|
|
18813
|
-
.
|
|
18844
|
+
.v-locale--is-rtl.offset-xxl-6, .v-locale--is-rtl .offset-xxl-6 {
|
|
18814
18845
|
margin-right: 50%;
|
|
18815
18846
|
}
|
|
18816
|
-
.
|
|
18847
|
+
.v-locale--is-ltr.offset-xxl-7, .v-locale--is-ltr .offset-xxl-7 {
|
|
18817
18848
|
margin-left: 58.3333333333%;
|
|
18818
18849
|
}
|
|
18819
|
-
.
|
|
18850
|
+
.v-locale--is-rtl.offset-xxl-7, .v-locale--is-rtl .offset-xxl-7 {
|
|
18820
18851
|
margin-right: 58.3333333333%;
|
|
18821
18852
|
}
|
|
18822
|
-
.
|
|
18853
|
+
.v-locale--is-ltr.offset-xxl-8, .v-locale--is-ltr .offset-xxl-8 {
|
|
18823
18854
|
margin-left: 66.6666666667%;
|
|
18824
18855
|
}
|
|
18825
|
-
.
|
|
18856
|
+
.v-locale--is-rtl.offset-xxl-8, .v-locale--is-rtl .offset-xxl-8 {
|
|
18826
18857
|
margin-right: 66.6666666667%;
|
|
18827
18858
|
}
|
|
18828
|
-
.
|
|
18859
|
+
.v-locale--is-ltr.offset-xxl-9, .v-locale--is-ltr .offset-xxl-9 {
|
|
18829
18860
|
margin-left: 75%;
|
|
18830
18861
|
}
|
|
18831
|
-
.
|
|
18862
|
+
.v-locale--is-rtl.offset-xxl-9, .v-locale--is-rtl .offset-xxl-9 {
|
|
18832
18863
|
margin-right: 75%;
|
|
18833
18864
|
}
|
|
18834
|
-
.
|
|
18865
|
+
.v-locale--is-ltr.offset-xxl-10, .v-locale--is-ltr .offset-xxl-10 {
|
|
18835
18866
|
margin-left: 83.3333333333%;
|
|
18836
18867
|
}
|
|
18837
|
-
.
|
|
18868
|
+
.v-locale--is-rtl.offset-xxl-10, .v-locale--is-rtl .offset-xxl-10 {
|
|
18838
18869
|
margin-right: 83.3333333333%;
|
|
18839
18870
|
}
|
|
18840
|
-
.
|
|
18871
|
+
.v-locale--is-ltr.offset-xxl-11, .v-locale--is-ltr .offset-xxl-11 {
|
|
18841
18872
|
margin-left: 91.6666666667%;
|
|
18842
18873
|
}
|
|
18843
|
-
.
|
|
18874
|
+
.v-locale--is-rtl.offset-xxl-11, .v-locale--is-rtl .offset-xxl-11 {
|
|
18844
18875
|
margin-right: 91.6666666667%;
|
|
18845
18876
|
}
|
|
18846
|
-
}.v-color-picker {
|
|
18847
|
-
align-self: flex-start;
|
|
18848
|
-
contain: content;
|
|
18849
|
-
}
|
|
18850
|
-
.v-color-picker.v-sheet {
|
|
18851
|
-
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));
|
|
18852
|
-
border-radius: 4px;
|
|
18853
|
-
}
|
|
18854
|
-
|
|
18855
|
-
.v-color-picker__controls {
|
|
18856
|
-
display: flex;
|
|
18857
|
-
flex-direction: column;
|
|
18858
|
-
padding: 16px;
|
|
18859
|
-
}
|
|
18860
|
-
|
|
18861
|
-
.v-color-picker--flat {
|
|
18862
|
-
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));
|
|
18863
|
-
}
|
|
18864
|
-
.v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
|
|
18865
|
-
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));
|
|
18866
18877
|
}.v-combobox .v-field .v-text-field__prefix,
|
|
18867
18878
|
.v-combobox .v-field .v-text-field__suffix,
|
|
18868
18879
|
.v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
|
|
@@ -19640,23 +19651,36 @@ textarea.v-field__input::placeholder {
|
|
|
19640
19651
|
transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
19641
19652
|
}
|
|
19642
19653
|
.v-field--variant-outlined .v-field__outline__start {
|
|
19643
|
-
flex: 0 0 12px;
|
|
19644
19654
|
border-top-width: var(--v-field-border-width);
|
|
19645
19655
|
border-bottom-width: var(--v-field-border-width);
|
|
19646
19656
|
border-inline-start-width: var(--v-field-border-width);
|
|
19647
19657
|
}
|
|
19648
|
-
.v-
|
|
19658
|
+
.v-input--density-default .v-field--variant-outlined .v-field__outline__start {
|
|
19659
|
+
flex: 0 0 29px;
|
|
19660
|
+
}
|
|
19661
|
+
|
|
19662
|
+
.v-input--density-comfortable .v-field--variant-outlined .v-field__outline__start {
|
|
19663
|
+
flex: 0 0 25px;
|
|
19664
|
+
}
|
|
19665
|
+
|
|
19666
|
+
.v-input--density-compact .v-field--variant-outlined .v-field__outline__start {
|
|
19667
|
+
flex: 0 0 21px;
|
|
19668
|
+
}
|
|
19669
|
+
|
|
19670
|
+
.v-locale--is-ltr.v-field--variant-outlined .v-field__outline__start, .v-locale--is-ltr .v-field--variant-outlined .v-field__outline__start {
|
|
19649
19671
|
border-top-left-radius: inherit;
|
|
19650
19672
|
border-top-right-radius: 0;
|
|
19651
19673
|
border-bottom-right-radius: 0;
|
|
19652
19674
|
border-bottom-left-radius: inherit;
|
|
19653
19675
|
}
|
|
19654
|
-
|
|
19676
|
+
|
|
19677
|
+
.v-locale--is-rtl.v-field--variant-outlined .v-field__outline__start, .v-locale--is-rtl .v-field--variant-outlined .v-field__outline__start {
|
|
19655
19678
|
border-top-left-radius: 0;
|
|
19656
19679
|
border-top-right-radius: inherit;
|
|
19657
19680
|
border-bottom-right-radius: inherit;
|
|
19658
19681
|
border-bottom-left-radius: 0;
|
|
19659
19682
|
}
|
|
19683
|
+
|
|
19660
19684
|
.v-field--variant-outlined .v-field__outline__notch {
|
|
19661
19685
|
flex: none;
|
|
19662
19686
|
position: relative;
|
|
@@ -19688,13 +19712,14 @@ textarea.v-field__input::placeholder {
|
|
|
19688
19712
|
border-bottom-width: var(--v-field-border-width);
|
|
19689
19713
|
border-inline-end-width: var(--v-field-border-width);
|
|
19690
19714
|
}
|
|
19691
|
-
.v-field--variant-outlined .v-field__outline__end
|
|
19715
|
+
.v-locale--is-ltr.v-field--variant-outlined .v-field__outline__end, .v-locale--is-ltr .v-field--variant-outlined .v-field__outline__end {
|
|
19692
19716
|
border-top-left-radius: 0;
|
|
19693
19717
|
border-top-right-radius: inherit;
|
|
19694
19718
|
border-bottom-right-radius: inherit;
|
|
19695
19719
|
border-bottom-left-radius: 0;
|
|
19696
19720
|
}
|
|
19697
|
-
|
|
19721
|
+
|
|
19722
|
+
.v-locale--is-rtl.v-field--variant-outlined .v-field__outline__end, .v-locale--is-rtl .v-field--variant-outlined .v-field__outline__end {
|
|
19698
19723
|
border-top-left-radius: inherit;
|
|
19699
19724
|
border-top-right-radius: 0;
|
|
19700
19725
|
border-bottom-right-radius: 0;
|
|
@@ -19775,10 +19800,11 @@ textarea.v-field__input::placeholder {
|
|
|
19775
19800
|
.v-field--reverse .v-field__field, .v-field--reverse .v-field__input {
|
|
19776
19801
|
flex-direction: row-reverse;
|
|
19777
19802
|
}
|
|
19778
|
-
.v-field--reverse .v-field__input
|
|
19803
|
+
.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 {
|
|
19779
19804
|
text-align: right;
|
|
19780
19805
|
}
|
|
19781
|
-
|
|
19806
|
+
|
|
19807
|
+
.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 {
|
|
19782
19808
|
text-align: left;
|
|
19783
19809
|
}
|
|
19784
19810
|
|
|
@@ -20610,6 +20636,8 @@ textarea.v-field__input::placeholder {
|
|
|
20610
20636
|
}
|
|
20611
20637
|
.v-list-group__header.v-list-item--active:hover .v-list-item__overlay {
|
|
20612
20638
|
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
|
20639
|
+
}.v-locale-provider {
|
|
20640
|
+
display: contents;
|
|
20613
20641
|
}.v-main {
|
|
20614
20642
|
flex: 1 0 auto;
|
|
20615
20643
|
max-width: 100%;
|
|
@@ -21078,11 +21106,12 @@ html.v-overlay-scroll-blocked {
|
|
|
21078
21106
|
.v-progress-linear--rounded-bar .v-progress-linear__stream + .v-progress-linear__background {
|
|
21079
21107
|
border-radius: 9999px;
|
|
21080
21108
|
}
|
|
21081
|
-
.v-progress-linear--rounded-bar .v-progress-linear__determinate
|
|
21109
|
+
.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 {
|
|
21082
21110
|
border-top-left-radius: 0;
|
|
21083
21111
|
border-bottom-left-radius: 0;
|
|
21084
21112
|
}
|
|
21085
|
-
|
|
21113
|
+
|
|
21114
|
+
.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 {
|
|
21086
21115
|
border-top-right-radius: 0;
|
|
21087
21116
|
border-bottom-right-radius: 0;
|
|
21088
21117
|
}
|
|
@@ -22235,11 +22264,12 @@ html.v-overlay-scroll-blocked {
|
|
|
22235
22264
|
height: var(--v-timeline-line-thickness);
|
|
22236
22265
|
width: calc(var(--v-timeline-line-size-base) + 12px - var(--v-timeline-line-inset));
|
|
22237
22266
|
}
|
|
22238
|
-
.v-timeline--horizontal .v-timeline-divider__before
|
|
22267
|
+
.v-locale--is-ltr.v-timeline--horizontal .v-timeline-divider__before, .v-locale--is-ltr .v-timeline--horizontal .v-timeline-divider__before {
|
|
22239
22268
|
left: -12px;
|
|
22240
22269
|
right: initial;
|
|
22241
22270
|
}
|
|
22242
|
-
|
|
22271
|
+
|
|
22272
|
+
.v-locale--is-rtl.v-timeline--horizontal .v-timeline-divider__before, .v-locale--is-rtl .v-timeline--horizontal .v-timeline-divider__before {
|
|
22243
22273
|
right: -12px;
|
|
22244
22274
|
left: initial;
|
|
22245
22275
|
}
|
|
@@ -22258,11 +22288,12 @@ html.v-overlay-scroll-blocked {
|
|
|
22258
22288
|
height: var(--v-timeline-line-thickness);
|
|
22259
22289
|
width: calc(var(--v-timeline-line-size-base) + 12px - var(--v-timeline-line-inset));
|
|
22260
22290
|
}
|
|
22261
|
-
.v-timeline--horizontal .v-timeline-divider__after
|
|
22291
|
+
.v-locale--is-ltr.v-timeline--horizontal .v-timeline-divider__after, .v-locale--is-ltr .v-timeline--horizontal .v-timeline-divider__after {
|
|
22262
22292
|
right: -12px;
|
|
22263
22293
|
left: initial;
|
|
22264
22294
|
}
|
|
22265
|
-
|
|
22295
|
+
|
|
22296
|
+
.v-locale--is-rtl.v-timeline--horizontal .v-timeline-divider__after, .v-locale--is-rtl .v-timeline--horizontal .v-timeline-divider__after {
|
|
22266
22297
|
left: -12px;
|
|
22267
22298
|
right: initial;
|
|
22268
22299
|
}
|
|
@@ -22282,11 +22313,12 @@ html.v-overlay-scroll-blocked {
|
|
|
22282
22313
|
.v-timeline--horizontal .v-timeline-item:first-child .v-timeline-divider__before {
|
|
22283
22314
|
width: calc(var(--v-timeline-line-size-base) + 12px - var(--v-timeline-line-inset));
|
|
22284
22315
|
}
|
|
22285
|
-
.v-timeline--horizontal .v-timeline-item:first-child .v-timeline-divider__before
|
|
22316
|
+
.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 {
|
|
22286
22317
|
left: 0;
|
|
22287
22318
|
right: initial;
|
|
22288
22319
|
}
|
|
22289
|
-
|
|
22320
|
+
|
|
22321
|
+
.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 {
|
|
22290
22322
|
right: 0;
|
|
22291
22323
|
left: initial;
|
|
22292
22324
|
}
|
|
@@ -22298,11 +22330,12 @@ html.v-overlay-scroll-blocked {
|
|
|
22298
22330
|
.v-timeline--horizontal .v-timeline-item:first-child .v-timeline-divider__after {
|
|
22299
22331
|
width: calc(var(--v-timeline-line-size-base) - var(--v-timeline-line-inset) + var(--v-timeline-line-size-offset));
|
|
22300
22332
|
}
|
|
22301
|
-
.v-timeline--horizontal .v-timeline-item:first-child .v-timeline-divider__after
|
|
22333
|
+
.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 {
|
|
22302
22334
|
right: -12px;
|
|
22303
22335
|
left: initial;
|
|
22304
22336
|
}
|
|
22305
|
-
|
|
22337
|
+
|
|
22338
|
+
.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 {
|
|
22306
22339
|
left: -12px;
|
|
22307
22340
|
right: initial;
|
|
22308
22341
|
}
|
|
@@ -22323,15 +22356,20 @@ html.v-overlay-scroll-blocked {
|
|
|
22323
22356
|
.v-timeline--horizontal .v-timeline-item:last-child .v-timeline-divider__after {
|
|
22324
22357
|
width: calc(var(--v-timeline-line-size-base) + 12px - var(--v-timeline-line-inset));
|
|
22325
22358
|
}
|
|
22326
|
-
.v-timeline--horizontal .v-timeline-item:last-child .v-timeline-divider__after
|
|
22359
|
+
.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 {
|
|
22327
22360
|
right: 0;
|
|
22328
22361
|
left: initial;
|
|
22329
22362
|
}
|
|
22330
|
-
|
|
22363
|
+
|
|
22364
|
+
.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 {
|
|
22331
22365
|
left: 0;
|
|
22332
22366
|
right: initial;
|
|
22333
22367
|
}
|
|
22334
22368
|
|
|
22369
|
+
.v-timeline--vertical .v-timeline-item:only-child .v-timeline-divider__after {
|
|
22370
|
+
height: calc(var(--v-timeline-line-size-base) - var(--v-timeline-line-inset));
|
|
22371
|
+
}
|
|
22372
|
+
|
|
22335
22373
|
.v-timeline-divider__dot {
|
|
22336
22374
|
z-index: 1;
|
|
22337
22375
|
flex-shrink: 0;
|
|
@@ -22616,12 +22654,14 @@ html.v-overlay-scroll-blocked {
|
|
|
22616
22654
|
.v-toolbar--collapse .v-toolbar-title {
|
|
22617
22655
|
display: none;
|
|
22618
22656
|
}
|
|
22619
|
-
.v-
|
|
22657
|
+
.v-locale--is-ltr.v-toolbar--collapse, .v-locale--is-ltr .v-toolbar--collapse {
|
|
22620
22658
|
border-bottom-right-radius: 24px;
|
|
22621
22659
|
}
|
|
22622
|
-
|
|
22660
|
+
|
|
22661
|
+
.v-locale--is-rtl.v-toolbar--collapse, .v-locale--is-rtl .v-toolbar--collapse {
|
|
22623
22662
|
border-bottom-left-radius: 24px;
|
|
22624
22663
|
}
|
|
22664
|
+
|
|
22625
22665
|
.v-toolbar--flat {
|
|
22626
22666
|
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));
|
|
22627
22667
|
}
|
|
@@ -22815,8 +22855,27 @@ html.v-overlay-scroll-blocked {
|
|
|
22815
22855
|
}
|
|
22816
22856
|
.v-window-y-reverse-transition-leave-to {
|
|
22817
22857
|
transform: translateY(100%);
|
|
22818
|
-
}.v-
|
|
22819
|
-
display:
|
|
22858
|
+
}.v-color-picker-canvas {
|
|
22859
|
+
display: flex;
|
|
22860
|
+
position: relative;
|
|
22861
|
+
overflow: hidden;
|
|
22862
|
+
contain: content;
|
|
22863
|
+
}
|
|
22864
|
+
.v-color-picker-canvas__dot {
|
|
22865
|
+
position: absolute;
|
|
22866
|
+
top: 0;
|
|
22867
|
+
left: 0;
|
|
22868
|
+
width: 15px;
|
|
22869
|
+
height: 15px;
|
|
22870
|
+
background: transparent;
|
|
22871
|
+
border-radius: 50%;
|
|
22872
|
+
box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
|
|
22873
|
+
}
|
|
22874
|
+
.v-color-picker-canvas__dot--disabled {
|
|
22875
|
+
box-shadow: 0px 0px 0px 1.5px rgba(255, 255, 255, 0.7), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
|
|
22876
|
+
}
|
|
22877
|
+
.v-color-picker-canvas:hover .v-color-picker-canvas__dot {
|
|
22878
|
+
will-change: transform;
|
|
22820
22879
|
}.v-color-picker-edit {
|
|
22821
22880
|
display: flex;
|
|
22822
22881
|
margin-top: 24px;
|
|
@@ -22829,12 +22888,14 @@ html.v-overlay-scroll-blocked {
|
|
|
22829
22888
|
justify-content: center;
|
|
22830
22889
|
text-align: center;
|
|
22831
22890
|
}
|
|
22832
|
-
.v-color-picker-edit__input:not(:last-child)
|
|
22891
|
+
.v-locale--is-ltr.v-color-picker-edit__input:not(:last-child), .v-locale--is-ltr .v-color-picker-edit__input:not(:last-child) {
|
|
22833
22892
|
margin-right: 8px;
|
|
22834
22893
|
}
|
|
22835
|
-
|
|
22894
|
+
|
|
22895
|
+
.v-locale--is-rtl.v-color-picker-edit__input:not(:last-child), .v-locale--is-rtl .v-color-picker-edit__input:not(:last-child) {
|
|
22836
22896
|
margin-left: 8px;
|
|
22837
22897
|
}
|
|
22898
|
+
|
|
22838
22899
|
.v-color-picker-edit__input input {
|
|
22839
22900
|
border-radius: 4px;
|
|
22840
22901
|
margin-bottom: 8px;
|
|
@@ -22848,36 +22909,17 @@ html.v-overlay-scroll-blocked {
|
|
|
22848
22909
|
}
|
|
22849
22910
|
.v-color-picker-edit__input span {
|
|
22850
22911
|
font-size: 0.75rem;
|
|
22851
|
-
}.v-color-picker-canvas {
|
|
22852
|
-
display: flex;
|
|
22853
|
-
position: relative;
|
|
22854
|
-
overflow: hidden;
|
|
22855
|
-
contain: content;
|
|
22856
|
-
}
|
|
22857
|
-
.v-color-picker-canvas__dot {
|
|
22858
|
-
position: absolute;
|
|
22859
|
-
top: 0;
|
|
22860
|
-
left: 0;
|
|
22861
|
-
width: 15px;
|
|
22862
|
-
height: 15px;
|
|
22863
|
-
background: transparent;
|
|
22864
|
-
border-radius: 50%;
|
|
22865
|
-
box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
|
|
22866
|
-
}
|
|
22867
|
-
.v-color-picker-canvas__dot--disabled {
|
|
22868
|
-
box-shadow: 0px 0px 0px 1.5px rgba(255, 255, 255, 0.7), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
|
|
22869
|
-
}
|
|
22870
|
-
.v-color-picker-canvas:hover .v-color-picker-canvas__dot {
|
|
22871
|
-
will-change: transform;
|
|
22872
22912
|
}.v-color-picker-preview__alpha .v-slider-track__background {
|
|
22873
22913
|
background-color: transparent !important;
|
|
22874
22914
|
}
|
|
22875
|
-
.v-color-picker-preview__alpha .v-slider-track__background
|
|
22915
|
+
.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 {
|
|
22876
22916
|
background-image: linear-gradient(to right, transparent, var(--v-color-picker-color-hsv));
|
|
22877
22917
|
}
|
|
22878
|
-
|
|
22918
|
+
|
|
22919
|
+
.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 {
|
|
22879
22920
|
background-image: linear-gradient(to left, transparent, var(--v-color-picker-color-hsv));
|
|
22880
22921
|
}
|
|
22922
|
+
|
|
22881
22923
|
.v-color-picker-preview__alpha .v-slider-track__background::after {
|
|
22882
22924
|
content: "";
|
|
22883
22925
|
z-index: -1;
|
|
@@ -22904,21 +22946,24 @@ html.v-overlay-scroll-blocked {
|
|
|
22904
22946
|
border-radius: 50%;
|
|
22905
22947
|
overflow: hidden;
|
|
22906
22948
|
}
|
|
22907
|
-
.v-color-picker-preview__dot
|
|
22949
|
+
.v-locale--is-ltr.v-color-picker-preview__dot, .v-locale--is-ltr .v-color-picker-preview__dot {
|
|
22908
22950
|
margin-right: 24px;
|
|
22909
22951
|
}
|
|
22910
|
-
|
|
22952
|
+
|
|
22953
|
+
.v-locale--is-rtl.v-color-picker-preview__dot, .v-locale--is-rtl .v-color-picker-preview__dot {
|
|
22911
22954
|
margin-left: 24px;
|
|
22912
22955
|
}
|
|
22956
|
+
|
|
22913
22957
|
.v-color-picker-preview__dot > div {
|
|
22914
22958
|
width: 100%;
|
|
22915
22959
|
height: 100%;
|
|
22916
22960
|
}
|
|
22917
22961
|
|
|
22918
|
-
.v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background
|
|
22962
|
+
.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 {
|
|
22919
22963
|
background: linear-gradient(to right, #F00 0%, #FF0 16.66%, #0F0 33.33%, #0FF 50%, #00F 66.66%, #F0F 83.33%, #F00 100%);
|
|
22920
22964
|
}
|
|
22921
|
-
|
|
22965
|
+
|
|
22966
|
+
.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 {
|
|
22922
22967
|
background: linear-gradient(to left, #F00 0%, #FF0 16.66%, #0F0 33.33%, #0FF 50%, #00F 66.66%, #F0F 83.33%, #F00 100%);
|
|
22923
22968
|
}
|
|
22924
22969
|
|
|
@@ -23064,12 +23109,14 @@ html.v-overlay-scroll-blocked {
|
|
|
23064
23109
|
top: 50%;
|
|
23065
23110
|
transform: translateY(-50%);
|
|
23066
23111
|
}
|
|
23067
|
-
.v-slider.v-input--horizontal .v-slider-thumb
|
|
23112
|
+
.v-locale--is-ltr.v-slider.v-input--horizontal .v-slider-thumb, .v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-thumb {
|
|
23068
23113
|
left: calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2);
|
|
23069
23114
|
}
|
|
23070
|
-
|
|
23115
|
+
|
|
23116
|
+
.v-locale--is-rtl.v-slider.v-input--horizontal .v-slider-thumb, .v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-thumb {
|
|
23071
23117
|
right: calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2);
|
|
23072
23118
|
}
|
|
23119
|
+
|
|
23073
23120
|
.v-slider.v-input--horizontal .v-slider-thumb__label-container {
|
|
23074
23121
|
left: calc(var(--v-slider-thumb-size) / 2);
|
|
23075
23122
|
top: 0;
|
|
@@ -23077,12 +23124,14 @@ html.v-overlay-scroll-blocked {
|
|
|
23077
23124
|
.v-slider.v-input--horizontal .v-slider-thumb__label {
|
|
23078
23125
|
bottom: calc(var(--v-slider-thumb-size) / 2);
|
|
23079
23126
|
}
|
|
23080
|
-
.v-slider.v-input--horizontal .v-slider-thumb__label
|
|
23127
|
+
.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 {
|
|
23081
23128
|
transform: translateX(-50%);
|
|
23082
23129
|
}
|
|
23083
|
-
|
|
23130
|
+
|
|
23131
|
+
.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 {
|
|
23084
23132
|
transform: translateX(50%);
|
|
23085
23133
|
}
|
|
23134
|
+
|
|
23086
23135
|
.v-slider.v-input--horizontal .v-slider-thumb__label::before {
|
|
23087
23136
|
border-left: 6px solid transparent;
|
|
23088
23137
|
border-right: 6px solid transparent;
|
|
@@ -23173,16 +23222,19 @@ html.v-overlay-scroll-blocked {
|
|
|
23173
23222
|
height: var(--v-slider-tick-size);
|
|
23174
23223
|
transform: translate(calc(var(--v-slider-tick-size) / -2), calc(var(--v-slider-tick-size) / -2));
|
|
23175
23224
|
}
|
|
23176
|
-
.v-slider-track__tick--first .v-slider-track__tick-label
|
|
23225
|
+
.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 {
|
|
23177
23226
|
transform: none;
|
|
23178
23227
|
}
|
|
23179
|
-
|
|
23228
|
+
|
|
23229
|
+
.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 {
|
|
23180
23230
|
transform: translateX(100%);
|
|
23181
23231
|
}
|
|
23182
|
-
|
|
23232
|
+
|
|
23233
|
+
.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 {
|
|
23183
23234
|
transform: translateX(-100%);
|
|
23184
23235
|
}
|
|
23185
|
-
|
|
23236
|
+
|
|
23237
|
+
.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 {
|
|
23186
23238
|
transform: none;
|
|
23187
23239
|
}
|
|
23188
23240
|
|
|
@@ -23209,34 +23261,40 @@ html.v-overlay-scroll-blocked {
|
|
|
23209
23261
|
.v-slider.v-input--horizontal .v-slider-track__tick {
|
|
23210
23262
|
margin-top: calc(calc(var(--v-slider-track-size) + 2px) / 2);
|
|
23211
23263
|
}
|
|
23212
|
-
.v-slider.v-input--horizontal .v-slider-track__tick
|
|
23264
|
+
.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 {
|
|
23213
23265
|
transform: translate(calc(var(--v-slider-tick-size) / 2), calc(var(--v-slider-tick-size) / -2));
|
|
23214
23266
|
}
|
|
23267
|
+
|
|
23215
23268
|
.v-slider.v-input--horizontal .v-slider-track__tick .v-slider-track__tick-label {
|
|
23216
23269
|
margin-top: calc(var(--v-slider-track-size) / 2 + 8px);
|
|
23217
23270
|
}
|
|
23218
|
-
.v-slider.v-input--horizontal .v-slider-track__tick .v-slider-track__tick-label
|
|
23271
|
+
.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 {
|
|
23219
23272
|
transform: translateX(-50%);
|
|
23220
23273
|
}
|
|
23221
|
-
|
|
23274
|
+
|
|
23275
|
+
.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 {
|
|
23222
23276
|
transform: translateX(50%);
|
|
23223
23277
|
}
|
|
23278
|
+
|
|
23224
23279
|
.v-slider.v-input--horizontal .v-slider-track__tick--first {
|
|
23225
23280
|
margin-inline-start: calc(var(--v-slider-tick-size) + 1px);
|
|
23226
23281
|
}
|
|
23227
|
-
.v-slider.v-input--horizontal .v-slider-track__tick--first .v-slider-track__tick-label
|
|
23282
|
+
.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 {
|
|
23228
23283
|
transform: translateX(0%);
|
|
23229
23284
|
}
|
|
23230
|
-
|
|
23285
|
+
|
|
23286
|
+
.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 {
|
|
23231
23287
|
transform: translateX(0%);
|
|
23232
23288
|
}
|
|
23289
|
+
|
|
23233
23290
|
.v-slider.v-input--horizontal .v-slider-track__tick--last {
|
|
23234
23291
|
margin-inline-start: calc(100% - var(--v-slider-tick-size) - 1px);
|
|
23235
23292
|
}
|
|
23236
|
-
.v-slider.v-input--horizontal .v-slider-track__tick--last .v-slider-track__tick-label
|
|
23293
|
+
.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 {
|
|
23237
23294
|
transform: translateX(-100%);
|
|
23238
23295
|
}
|
|
23239
|
-
|
|
23296
|
+
|
|
23297
|
+
.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 {
|
|
23240
23298
|
transform: translateX(100%);
|
|
23241
23299
|
}
|
|
23242
23300
|
|
|
@@ -23260,9 +23318,10 @@ html.v-overlay-scroll-blocked {
|
|
|
23260
23318
|
margin-inline-start: calc(calc(var(--v-slider-track-size) + 2px) / 2);
|
|
23261
23319
|
transform: translate(calc(var(--v-slider-tick-size) / -2), calc(var(--v-slider-tick-size) / 2));
|
|
23262
23320
|
}
|
|
23263
|
-
.v-slider.v-input--vertical .v-slider-track__tick
|
|
23321
|
+
.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 {
|
|
23264
23322
|
transform: translate(calc(var(--v-slider-tick-size) / 2), calc(var(--v-slider-tick-size) / 2));
|
|
23265
23323
|
}
|
|
23324
|
+
|
|
23266
23325
|
.v-slider.v-input--vertical .v-slider-track__tick--first {
|
|
23267
23326
|
bottom: calc(0% + var(--v-slider-tick-size) + 1px);
|
|
23268
23327
|
}
|