vuetify 3.5.7 → 3.5.9
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 +568 -8
- package/dist/json/importMap-labs.json +20 -4
- package/dist/json/importMap.json +156 -156
- package/dist/json/tags.json +160 -0
- package/dist/json/web-types.json +1695 -9
- package/dist/vuetify-labs.css +1849 -1820
- package/dist/vuetify-labs.d.ts +3601 -694
- package/dist/vuetify-labs.esm.js +891 -237
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +891 -237
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +911 -906
- package/dist/vuetify.d.ts +576 -72
- package/dist/vuetify.esm.js +273 -35
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +273 -35
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +541 -510
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.css +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.mjs +5 -3
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.sass +1 -1
- package/lib/components/VAutocomplete/index.d.mts +138 -6
- package/lib/components/VColorPicker/VColorPickerPreview.css +1 -0
- package/lib/components/VColorPicker/VColorPickerPreview.sass +1 -0
- package/lib/components/VColorPicker/_variables.scss +1 -0
- package/lib/components/VCombobox/VCombobox.css +1 -1
- package/lib/components/VCombobox/VCombobox.mjs +28 -10
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VCombobox/VCombobox.sass +1 -1
- package/lib/components/VCombobox/index.d.mts +138 -6
- package/lib/components/VDatePicker/VDatePickerControls.mjs +1 -0
- package/lib/components/VDatePicker/VDatePickerControls.mjs.map +1 -1
- package/lib/components/VDatePicker/VDatePickerMonth.mjs +1 -1
- package/lib/components/VDatePicker/VDatePickerMonth.mjs.map +1 -1
- package/lib/components/VList/VList.mjs +8 -2
- package/lib/components/VList/VList.mjs.map +1 -1
- package/lib/components/VList/VListGroup.mjs +3 -1
- package/lib/components/VList/VListGroup.mjs.map +1 -1
- package/lib/components/VList/VListItem.mjs +17 -4
- package/lib/components/VList/VListItem.mjs.map +1 -1
- package/lib/components/VList/index.d.mts +108 -6
- package/lib/components/VSelect/VSelect.mjs +5 -3
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VSelect/index.d.mts +138 -6
- package/lib/components/VSwitch/VSwitch.css +9 -5
- package/lib/components/VSwitch/VSwitch.mjs +2 -0
- package/lib/components/VSwitch/VSwitch.mjs.map +1 -1
- package/lib/components/VSwitch/VSwitch.sass +10 -7
- package/lib/components/VSwitch/_variables.scss +2 -0
- package/lib/components/index.d.mts +522 -24
- package/lib/composables/date/adapters/vuetify.mjs +21 -3
- package/lib/composables/date/adapters/vuetify.mjs.map +1 -1
- package/lib/composables/nested/activeStrategies.mjs +121 -0
- package/lib/composables/nested/activeStrategies.mjs.map +1 -0
- package/lib/composables/nested/nested.mjs +50 -1
- package/lib/composables/nested/nested.mjs.map +1 -1
- package/lib/composables/nested/selectStrategies.mjs +4 -2
- package/lib/composables/nested/selectStrategies.mjs.map +1 -1
- package/lib/composables/transition.mjs +7 -5
- package/lib/composables/transition.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/iconsets/fa.mjs +2 -0
- package/lib/iconsets/fa.mjs.map +1 -1
- package/lib/iconsets/fa4.mjs +2 -0
- package/lib/iconsets/fa4.mjs.map +1 -1
- package/lib/iconsets/md.mjs +2 -0
- package/lib/iconsets/md.mjs.map +1 -1
- package/lib/iconsets/mdi-svg.mjs +2 -0
- package/lib/iconsets/mdi-svg.mjs.map +1 -1
- package/lib/iconsets/mdi.mjs +2 -0
- package/lib/iconsets/mdi.mjs.map +1 -1
- package/lib/index.d.mts +54 -48
- package/lib/labs/VCalendar/VCalendarInterval.css +1 -0
- package/lib/labs/VCalendar/VCalendarInterval.sass +1 -0
- package/lib/labs/VCalendar/VCalendarIntervalEvent.css +6 -0
- package/lib/labs/VCalendar/VCalendarIntervalEvent.mjs +5 -2
- package/lib/labs/VCalendar/VCalendarIntervalEvent.mjs.map +1 -1
- package/lib/labs/VCalendar/VCalendarIntervalEvent.sass +6 -0
- package/lib/labs/VFab/VFab.css +1 -1
- package/lib/labs/VFab/VFab.sass +1 -1
- package/lib/labs/VSparkline/VBarline.mjs +4 -3
- package/lib/labs/VSparkline/VBarline.mjs.map +1 -1
- package/lib/labs/VSparkline/VTrendline.mjs +9 -5
- package/lib/labs/VSparkline/VTrendline.mjs.map +1 -1
- package/lib/labs/VSparkline/index.d.mts +15 -0
- package/lib/labs/VSparkline/util/line.mjs +4 -0
- package/lib/labs/VSparkline/util/line.mjs.map +1 -1
- package/lib/labs/VSpeedDial/VSpeedDial.css +3 -0
- package/lib/labs/VSpeedDial/VSpeedDial.mjs +56 -0
- package/lib/labs/VSpeedDial/VSpeedDial.mjs.map +1 -0
- package/lib/labs/VSpeedDial/VSpeedDial.sass +2 -0
- package/lib/labs/VSpeedDial/index.d.mts +649 -0
- package/lib/labs/VSpeedDial/index.mjs +2 -0
- package/lib/labs/VSpeedDial/index.mjs.map +1 -0
- package/lib/labs/VTreeview/VTreeview.mjs +154 -0
- package/lib/labs/VTreeview/VTreeview.mjs.map +1 -0
- package/lib/labs/VTreeview/VTreeviewChildren.mjs +98 -0
- package/lib/labs/VTreeview/VTreeviewChildren.mjs.map +1 -0
- package/lib/labs/VTreeview/VTreeviewGroup.mjs +48 -0
- package/lib/labs/VTreeview/VTreeviewGroup.mjs.map +1 -0
- package/lib/labs/VTreeview/VTreeviewItem.css +17 -0
- package/lib/labs/VTreeview/VTreeviewItem.mjs +86 -0
- package/lib/labs/VTreeview/VTreeviewItem.mjs.map +1 -0
- package/lib/labs/VTreeview/VTreeviewItem.sass +19 -0
- package/lib/labs/VTreeview/index.d.mts +1975 -0
- package/lib/labs/VTreeview/index.mjs +4 -0
- package/lib/labs/VTreeview/index.mjs.map +1 -0
- package/lib/labs/VTreeview/shared.mjs +4 -0
- package/lib/labs/VTreeview/shared.mjs.map +1 -0
- package/lib/labs/VTreeview/variables.scss +8 -0
- package/lib/labs/components.d.mts +3877 -1292
- package/lib/labs/components.mjs +4 -2
- package/lib/labs/components.mjs.map +1 -1
- package/package.json +2 -2
package/dist/vuetify-labs.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.5.
|
|
2
|
+
* Vuetify v3.5.9
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -17029,60 +17029,6 @@ html.overflow-y-hidden {
|
|
|
17029
17029
|
font-weight: normal;
|
|
17030
17030
|
padding: 0.2em 0.4rem;
|
|
17031
17031
|
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-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
17032
|
-
}.v-calendar-day__row-with-label {
|
|
17033
|
-
display: grid;
|
|
17034
|
-
grid-template-columns: 48px 8px 1fr;
|
|
17035
|
-
border-right: thin solid #e0e0e0;
|
|
17036
|
-
}
|
|
17037
|
-
.v-calendar-day__row-with-label .v-calendar-day__row-hairline {
|
|
17038
|
-
position: relative;
|
|
17039
|
-
border-right: thin solid #e0e0e0;
|
|
17040
|
-
}
|
|
17041
|
-
.v-calendar-day__row-with-label .v-calendar-day__row-hairline:after {
|
|
17042
|
-
content: "";
|
|
17043
|
-
border-bottom: thin solid #e0e0e0;
|
|
17044
|
-
position: absolute;
|
|
17045
|
-
width: 100%;
|
|
17046
|
-
margin-top: -1px;
|
|
17047
|
-
z-index: 3;
|
|
17048
|
-
pointer-events: none;
|
|
17049
|
-
}
|
|
17050
|
-
.v-calendar-day__row-with-label .v-calendar-day__row-label {
|
|
17051
|
-
font-size: 10px;
|
|
17052
|
-
text-align: center;
|
|
17053
|
-
position: relative;
|
|
17054
|
-
top: -8px;
|
|
17055
|
-
}
|
|
17056
|
-
.v-calendar-day__row-with-label .v-calendar-day__row-content {
|
|
17057
|
-
border-bottom: thin solid #e0e0e0;
|
|
17058
|
-
}
|
|
17059
|
-
.v-calendar-day__row-with-label .v-calendar-day__row-content.v-calendar-day__row-content-through {
|
|
17060
|
-
border-bottom: none;
|
|
17061
|
-
}
|
|
17062
|
-
|
|
17063
|
-
.v-calendar-day__row-without-label {
|
|
17064
|
-
display: grid;
|
|
17065
|
-
grid-template-columns: 1fr;
|
|
17066
|
-
border-right: thin solid #e0e0e0;
|
|
17067
|
-
}
|
|
17068
|
-
.v-calendar-day__row-without-label .v-calendar-day__row-content {
|
|
17069
|
-
border-bottom: thin solid #e0e0e0;
|
|
17070
|
-
}
|
|
17071
|
-
.v-calendar-day__row-without-label .v-calendar-day__row-content.v-calendar-day__row-content-through {
|
|
17072
|
-
border-bottom: none;
|
|
17073
|
-
}.v-calendar-header {
|
|
17074
|
-
align-items: center;
|
|
17075
|
-
display: flex;
|
|
17076
|
-
min-height: 64px;
|
|
17077
|
-
}
|
|
17078
|
-
|
|
17079
|
-
.v-calendar-header__today {
|
|
17080
|
-
margin-inline-end: 24px;
|
|
17081
|
-
}
|
|
17082
|
-
|
|
17083
|
-
.v-calendar-header__title {
|
|
17084
|
-
font-size: 1.5rem;
|
|
17085
|
-
margin-inline-start: 24px;
|
|
17086
17032
|
}.v-calendar-day {
|
|
17087
17033
|
position: relative;
|
|
17088
17034
|
display: flex;
|
|
@@ -17338,6 +17284,19 @@ html.overflow-y-hidden {
|
|
|
17338
17284
|
}
|
|
17339
17285
|
.v-calendar-month__days.days-with-weeknumbers__7 > .v-calendar-month__day:nth-child(8n) {
|
|
17340
17286
|
border-right: none;
|
|
17287
|
+
}.v-calendar-header {
|
|
17288
|
+
align-items: center;
|
|
17289
|
+
display: flex;
|
|
17290
|
+
min-height: 64px;
|
|
17291
|
+
}
|
|
17292
|
+
|
|
17293
|
+
.v-calendar-header__today {
|
|
17294
|
+
margin-inline-end: 24px;
|
|
17295
|
+
}
|
|
17296
|
+
|
|
17297
|
+
.v-calendar-header__title {
|
|
17298
|
+
font-size: 1.5rem;
|
|
17299
|
+
margin-inline-start: 24px;
|
|
17341
17300
|
}.v-calendar-month__day {
|
|
17342
17301
|
position: relative;
|
|
17343
17302
|
display: flex;
|
|
@@ -17401,6 +17360,55 @@ html.overflow-y-hidden {
|
|
|
17401
17360
|
|
|
17402
17361
|
.v-calendar-weekly__day-alldayevents-container {
|
|
17403
17362
|
min-height: 24px;
|
|
17363
|
+
}.v-calendar-internal-event {
|
|
17364
|
+
overflow: hidden;
|
|
17365
|
+
padding: 4px;
|
|
17366
|
+
text-overflow: ellipsis;
|
|
17367
|
+
white-space: nowrap;
|
|
17368
|
+
}.v-calendar-day__row-with-label {
|
|
17369
|
+
display: grid;
|
|
17370
|
+
grid-template-columns: 48px 8px 1fr;
|
|
17371
|
+
border-right: thin solid #e0e0e0;
|
|
17372
|
+
}
|
|
17373
|
+
.v-calendar-day__row-with-label .v-calendar-day__row-hairline {
|
|
17374
|
+
position: relative;
|
|
17375
|
+
border-right: thin solid #e0e0e0;
|
|
17376
|
+
}
|
|
17377
|
+
.v-calendar-day__row-with-label .v-calendar-day__row-hairline:after {
|
|
17378
|
+
content: "";
|
|
17379
|
+
border-bottom: thin solid #e0e0e0;
|
|
17380
|
+
position: absolute;
|
|
17381
|
+
width: 100%;
|
|
17382
|
+
margin-top: -1px;
|
|
17383
|
+
z-index: 3;
|
|
17384
|
+
pointer-events: none;
|
|
17385
|
+
}
|
|
17386
|
+
.v-calendar-day__row-with-label .v-calendar-day__row-label {
|
|
17387
|
+
font-size: 10px;
|
|
17388
|
+
text-align: center;
|
|
17389
|
+
position: relative;
|
|
17390
|
+
top: -8px;
|
|
17391
|
+
}
|
|
17392
|
+
.v-calendar-day__row-with-label .v-calendar-day__row-content {
|
|
17393
|
+
border-bottom: thin solid #e0e0e0;
|
|
17394
|
+
}
|
|
17395
|
+
.v-calendar-day__row-with-label .v-calendar-day__row-content.v-calendar-day__row-content-through {
|
|
17396
|
+
border-bottom: none;
|
|
17397
|
+
}
|
|
17398
|
+
|
|
17399
|
+
.v-calendar-day__row-without-label {
|
|
17400
|
+
display: grid;
|
|
17401
|
+
grid-template-columns: 1fr;
|
|
17402
|
+
border-right: thin solid #e0e0e0;
|
|
17403
|
+
}
|
|
17404
|
+
.v-calendar-day__row-without-label .v-calendar-day__row-content {
|
|
17405
|
+
overflow: hidden;
|
|
17406
|
+
border-bottom: thin solid #e0e0e0;
|
|
17407
|
+
}
|
|
17408
|
+
.v-calendar-day__row-without-label .v-calendar-day__row-content.v-calendar-day__row-content-through {
|
|
17409
|
+
border-bottom: none;
|
|
17410
|
+
}.v-speed-dial__content {
|
|
17411
|
+
gap: 8px;
|
|
17404
17412
|
}.v-picker.v-sheet {
|
|
17405
17413
|
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-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
17406
17414
|
border-radius: 4px;
|
|
@@ -17452,64 +17460,6 @@ html.overflow-y-hidden {
|
|
|
17452
17460
|
padding-bottom: 16px;
|
|
17453
17461
|
font-weight: 400;
|
|
17454
17462
|
letter-spacing: 0.1666666667em;
|
|
17455
|
-
}.v-empty-state {
|
|
17456
|
-
align-items: center;
|
|
17457
|
-
display: flex;
|
|
17458
|
-
flex-direction: column;
|
|
17459
|
-
justify-content: center;
|
|
17460
|
-
min-height: 100%;
|
|
17461
|
-
padding: 16px;
|
|
17462
|
-
}
|
|
17463
|
-
.v-empty-state--start {
|
|
17464
|
-
align-items: flex-start;
|
|
17465
|
-
}
|
|
17466
|
-
.v-empty-state--center {
|
|
17467
|
-
align-items: center;
|
|
17468
|
-
}
|
|
17469
|
-
.v-empty-state--end {
|
|
17470
|
-
align-items: flex-end;
|
|
17471
|
-
}
|
|
17472
|
-
|
|
17473
|
-
.v-empty-state__media {
|
|
17474
|
-
text-align: center;
|
|
17475
|
-
width: 100%;
|
|
17476
|
-
}
|
|
17477
|
-
|
|
17478
|
-
.v-empty-state__headline {
|
|
17479
|
-
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
|
17480
|
-
font-size: 3.75rem;
|
|
17481
|
-
font-weight: 300;
|
|
17482
|
-
line-height: 3.75rem;
|
|
17483
|
-
}
|
|
17484
|
-
|
|
17485
|
-
.v-empty-state__title {
|
|
17486
|
-
font-size: 1.25rem;
|
|
17487
|
-
font-weight: 500;
|
|
17488
|
-
line-height: 2rem;
|
|
17489
|
-
text-align: center;
|
|
17490
|
-
}
|
|
17491
|
-
|
|
17492
|
-
.v-empty-state__text {
|
|
17493
|
-
font-size: 1rem;
|
|
17494
|
-
font-weight: 400;
|
|
17495
|
-
line-height: 1.5rem;
|
|
17496
|
-
padding: 0 16px;
|
|
17497
|
-
text-align: center;
|
|
17498
|
-
}
|
|
17499
|
-
|
|
17500
|
-
.v-empty-state__content {
|
|
17501
|
-
padding: 24px 0;
|
|
17502
|
-
}
|
|
17503
|
-
|
|
17504
|
-
.v-empty-state__actions {
|
|
17505
|
-
display: flex;
|
|
17506
|
-
gap: 8px;
|
|
17507
|
-
padding: 16px;
|
|
17508
|
-
}
|
|
17509
|
-
|
|
17510
|
-
.v-empty-state__action-btn.v-btn {
|
|
17511
|
-
background-color: rgb(var(--v-theme-surface-variant));
|
|
17512
|
-
color: rgb(var(--v-theme-on-surface-variant));
|
|
17513
17463
|
}.v-fab {
|
|
17514
17464
|
align-items: center;
|
|
17515
17465
|
display: inline-flex;
|
|
@@ -17555,7 +17505,7 @@ html.overflow-y-hidden {
|
|
|
17555
17505
|
vertical-align: middle;
|
|
17556
17506
|
}
|
|
17557
17507
|
.v-fab--app .v-fab__container {
|
|
17558
|
-
margin:
|
|
17508
|
+
margin: 12px;
|
|
17559
17509
|
}
|
|
17560
17510
|
.v-fab--absolute .v-fab__container {
|
|
17561
17511
|
position: absolute;
|
|
@@ -17578,6 +17528,80 @@ html.overflow-y-hidden {
|
|
|
17578
17528
|
}
|
|
17579
17529
|
.v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
|
|
17580
17530
|
right: 0;
|
|
17531
|
+
}.v-empty-state {
|
|
17532
|
+
align-items: center;
|
|
17533
|
+
display: flex;
|
|
17534
|
+
flex-direction: column;
|
|
17535
|
+
justify-content: center;
|
|
17536
|
+
min-height: 100%;
|
|
17537
|
+
padding: 16px;
|
|
17538
|
+
}
|
|
17539
|
+
.v-empty-state--start {
|
|
17540
|
+
align-items: flex-start;
|
|
17541
|
+
}
|
|
17542
|
+
.v-empty-state--center {
|
|
17543
|
+
align-items: center;
|
|
17544
|
+
}
|
|
17545
|
+
.v-empty-state--end {
|
|
17546
|
+
align-items: flex-end;
|
|
17547
|
+
}
|
|
17548
|
+
|
|
17549
|
+
.v-empty-state__media {
|
|
17550
|
+
text-align: center;
|
|
17551
|
+
width: 100%;
|
|
17552
|
+
}
|
|
17553
|
+
|
|
17554
|
+
.v-empty-state__headline {
|
|
17555
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
|
17556
|
+
font-size: 3.75rem;
|
|
17557
|
+
font-weight: 300;
|
|
17558
|
+
line-height: 3.75rem;
|
|
17559
|
+
}
|
|
17560
|
+
|
|
17561
|
+
.v-empty-state__title {
|
|
17562
|
+
font-size: 1.25rem;
|
|
17563
|
+
font-weight: 500;
|
|
17564
|
+
line-height: 2rem;
|
|
17565
|
+
text-align: center;
|
|
17566
|
+
}
|
|
17567
|
+
|
|
17568
|
+
.v-empty-state__text {
|
|
17569
|
+
font-size: 1rem;
|
|
17570
|
+
font-weight: 400;
|
|
17571
|
+
line-height: 1.5rem;
|
|
17572
|
+
padding: 0 16px;
|
|
17573
|
+
text-align: center;
|
|
17574
|
+
}
|
|
17575
|
+
|
|
17576
|
+
.v-empty-state__content {
|
|
17577
|
+
padding: 24px 0;
|
|
17578
|
+
}
|
|
17579
|
+
|
|
17580
|
+
.v-empty-state__actions {
|
|
17581
|
+
display: flex;
|
|
17582
|
+
gap: 8px;
|
|
17583
|
+
padding: 16px;
|
|
17584
|
+
}
|
|
17585
|
+
|
|
17586
|
+
.v-empty-state__action-btn.v-btn {
|
|
17587
|
+
background-color: rgb(var(--v-theme-surface-variant));
|
|
17588
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
|
17589
|
+
}.v-treeview-item--filtered {
|
|
17590
|
+
display: none;
|
|
17591
|
+
}
|
|
17592
|
+
|
|
17593
|
+
.v-treeview {
|
|
17594
|
+
--indent-padding: 0px;
|
|
17595
|
+
}
|
|
17596
|
+
|
|
17597
|
+
.v-treeview-group.v-list-group {
|
|
17598
|
+
--list-indent-size: 16px;
|
|
17599
|
+
}
|
|
17600
|
+
.v-list--slim .v-treeview-group.v-list-group {
|
|
17601
|
+
--prepend-width: 16px;
|
|
17602
|
+
}
|
|
17603
|
+
.v-treeview-group.v-list-group .v-list-group__items .v-list-item {
|
|
17604
|
+
padding-inline-start: calc(12px + var(--indent-padding)) !important;
|
|
17581
17605
|
}.v-application {
|
|
17582
17606
|
display: flex;
|
|
17583
17607
|
background: rgb(var(--v-theme-background));
|
|
@@ -17873,7 +17897,7 @@ html.overflow-y-hidden {
|
|
|
17873
17897
|
.v-autocomplete--selecting-index .v-field__input > input {
|
|
17874
17898
|
caret-color: transparent;
|
|
17875
17899
|
}
|
|
17876
|
-
.v-autocomplete--single:not(.v-autocomplete--selection-slot).v-text-field
|
|
17900
|
+
.v-autocomplete--single:not(.v-autocomplete--selection-slot).v-text-field input {
|
|
17877
17901
|
flex: 1 1;
|
|
17878
17902
|
position: absolute;
|
|
17879
17903
|
left: 0;
|
|
@@ -17897,79 +17921,8 @@ html.overflow-y-hidden {
|
|
|
17897
17921
|
.v-autocomplete--active-menu .v-autocomplete__menu-icon {
|
|
17898
17922
|
opacity: var(--v-high-emphasis-opacity);
|
|
17899
17923
|
transform: rotate(180deg);
|
|
17900
|
-
}.v-
|
|
17901
|
-
|
|
17902
|
-
line-height: 1;
|
|
17903
|
-
}
|
|
17904
|
-
|
|
17905
|
-
.v-badge__badge {
|
|
17906
|
-
align-items: center;
|
|
17907
|
-
display: inline-flex;
|
|
17908
|
-
border-radius: 10px;
|
|
17909
|
-
font-size: 0.75rem;
|
|
17910
|
-
font-weight: 500;
|
|
17911
|
-
height: 1.25rem;
|
|
17912
|
-
justify-content: center;
|
|
17913
|
-
min-width: 20px;
|
|
17914
|
-
padding: 4px 6px;
|
|
17915
|
-
pointer-events: auto;
|
|
17916
|
-
position: absolute;
|
|
17917
|
-
text-align: center;
|
|
17918
|
-
text-indent: 0;
|
|
17919
|
-
transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
|
|
17920
|
-
white-space: nowrap;
|
|
17921
|
-
background: rgb(var(--v-theme-surface-variant));
|
|
17922
|
-
color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
|
|
17923
|
-
}
|
|
17924
|
-
.v-badge--bordered .v-badge__badge::after {
|
|
17925
|
-
border-radius: inherit;
|
|
17926
|
-
border-style: solid;
|
|
17927
|
-
border-width: 2px;
|
|
17928
|
-
bottom: 0;
|
|
17929
|
-
color: rgb(var(--v-theme-background));
|
|
17930
|
-
content: "";
|
|
17931
|
-
left: 0;
|
|
17932
|
-
position: absolute;
|
|
17933
|
-
right: 0;
|
|
17934
|
-
top: 0;
|
|
17935
|
-
transform: scale(1.05);
|
|
17936
|
-
}
|
|
17937
|
-
.v-badge--dot .v-badge__badge {
|
|
17938
|
-
border-radius: 4.5px;
|
|
17939
|
-
height: 9px;
|
|
17940
|
-
min-width: 0;
|
|
17941
|
-
padding: 0;
|
|
17942
|
-
width: 9px;
|
|
17943
|
-
}
|
|
17944
|
-
.v-badge--dot .v-badge__badge::after {
|
|
17945
|
-
border-width: 1.5px;
|
|
17946
|
-
}
|
|
17947
|
-
.v-badge--inline .v-badge__badge {
|
|
17948
|
-
position: relative;
|
|
17949
|
-
vertical-align: middle;
|
|
17950
|
-
}
|
|
17951
|
-
.v-badge__badge .v-icon {
|
|
17952
|
-
color: inherit;
|
|
17953
|
-
font-size: 0.75rem;
|
|
17954
|
-
margin: 0 -2px;
|
|
17955
|
-
}
|
|
17956
|
-
.v-badge__badge img,
|
|
17957
|
-
.v-badge__badge .v-img {
|
|
17958
|
-
height: 100%;
|
|
17959
|
-
width: 100%;
|
|
17960
|
-
}
|
|
17961
|
-
|
|
17962
|
-
.v-badge__wrapper {
|
|
17963
|
-
display: flex;
|
|
17964
|
-
position: relative;
|
|
17965
|
-
}
|
|
17966
|
-
.v-badge--inline .v-badge__wrapper {
|
|
17967
|
-
align-items: center;
|
|
17968
|
-
display: inline-flex;
|
|
17969
|
-
justify-content: center;
|
|
17970
|
-
margin: 0 4px;
|
|
17971
|
-
}.v-avatar {
|
|
17972
|
-
flex: none;
|
|
17924
|
+
}.v-avatar {
|
|
17925
|
+
flex: none;
|
|
17973
17926
|
align-items: center;
|
|
17974
17927
|
display: inline-flex;
|
|
17975
17928
|
justify-content: center;
|
|
@@ -18055,163 +18008,189 @@ html.overflow-y-hidden {
|
|
|
18055
18008
|
.v-avatar .v-img {
|
|
18056
18009
|
height: 100%;
|
|
18057
18010
|
width: 100%;
|
|
18058
|
-
}.v-
|
|
18059
|
-
display:
|
|
18060
|
-
|
|
18061
|
-
|
|
18062
|
-
|
|
18063
|
-
|
|
18064
|
-
|
|
18065
|
-
|
|
18066
|
-
|
|
18067
|
-
|
|
18068
|
-
|
|
18069
|
-
|
|
18011
|
+
}.v-badge {
|
|
18012
|
+
display: inline-block;
|
|
18013
|
+
line-height: 1;
|
|
18014
|
+
}
|
|
18015
|
+
|
|
18016
|
+
.v-badge__badge {
|
|
18017
|
+
align-items: center;
|
|
18018
|
+
display: inline-flex;
|
|
18019
|
+
border-radius: 10px;
|
|
18020
|
+
font-size: 0.75rem;
|
|
18021
|
+
font-weight: 500;
|
|
18022
|
+
height: 1.25rem;
|
|
18023
|
+
justify-content: center;
|
|
18024
|
+
min-width: 20px;
|
|
18025
|
+
padding: 4px 6px;
|
|
18026
|
+
pointer-events: auto;
|
|
18027
|
+
position: absolute;
|
|
18028
|
+
text-align: center;
|
|
18029
|
+
text-indent: 0;
|
|
18030
|
+
transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
|
|
18031
|
+
white-space: nowrap;
|
|
18032
|
+
background: rgb(var(--v-theme-surface-variant));
|
|
18033
|
+
color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
|
|
18034
|
+
}
|
|
18035
|
+
.v-badge--bordered .v-badge__badge::after {
|
|
18036
|
+
border-radius: inherit;
|
|
18037
|
+
border-style: solid;
|
|
18038
|
+
border-width: 2px;
|
|
18039
|
+
bottom: 0;
|
|
18040
|
+
color: rgb(var(--v-theme-background));
|
|
18041
|
+
content: "";
|
|
18042
|
+
left: 0;
|
|
18043
|
+
position: absolute;
|
|
18044
|
+
right: 0;
|
|
18045
|
+
top: 0;
|
|
18046
|
+
transform: scale(1.05);
|
|
18047
|
+
}
|
|
18048
|
+
.v-badge--dot .v-badge__badge {
|
|
18049
|
+
border-radius: 4.5px;
|
|
18050
|
+
height: 9px;
|
|
18051
|
+
min-width: 0;
|
|
18052
|
+
padding: 0;
|
|
18053
|
+
width: 9px;
|
|
18054
|
+
}
|
|
18055
|
+
.v-badge--dot .v-badge__badge::after {
|
|
18056
|
+
border-width: 1.5px;
|
|
18057
|
+
}
|
|
18058
|
+
.v-badge--inline .v-badge__badge {
|
|
18070
18059
|
position: relative;
|
|
18060
|
+
vertical-align: middle;
|
|
18061
|
+
}
|
|
18062
|
+
.v-badge__badge .v-icon {
|
|
18063
|
+
color: inherit;
|
|
18064
|
+
font-size: 0.75rem;
|
|
18065
|
+
margin: 0 -2px;
|
|
18066
|
+
}
|
|
18067
|
+
.v-badge__badge img,
|
|
18068
|
+
.v-badge__badge .v-img {
|
|
18069
|
+
height: 100%;
|
|
18071
18070
|
width: 100%;
|
|
18071
|
+
}
|
|
18072
|
+
|
|
18073
|
+
.v-badge__wrapper {
|
|
18074
|
+
display: flex;
|
|
18075
|
+
position: relative;
|
|
18076
|
+
}
|
|
18077
|
+
.v-badge--inline .v-badge__wrapper {
|
|
18078
|
+
align-items: center;
|
|
18079
|
+
display: inline-flex;
|
|
18080
|
+
justify-content: center;
|
|
18081
|
+
margin: 0 4px;
|
|
18082
|
+
}.v-bottom-navigation {
|
|
18083
|
+
display: flex;
|
|
18084
|
+
max-width: 100%;
|
|
18085
|
+
overflow: hidden;
|
|
18086
|
+
position: absolute;
|
|
18087
|
+
transition: transform, color 0.2s, 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
18072
18088
|
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
18073
18089
|
border-style: solid;
|
|
18074
|
-
border-width: 0
|
|
18075
|
-
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-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
18090
|
+
border-width: 0;
|
|
18076
18091
|
border-radius: 0;
|
|
18077
18092
|
background: rgb(var(--v-theme-surface));
|
|
18078
18093
|
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
18079
18094
|
}
|
|
18080
|
-
.v-
|
|
18095
|
+
.v-bottom-navigation--border {
|
|
18081
18096
|
border-width: thin;
|
|
18082
18097
|
box-shadow: none;
|
|
18083
18098
|
}
|
|
18084
|
-
.v-
|
|
18085
|
-
|
|
18086
|
-
}
|
|
18087
|
-
.v-banner--fixed {
|
|
18088
|
-
position: fixed;
|
|
18099
|
+
.v-bottom-navigation--active {
|
|
18100
|
+
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-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
18089
18101
|
}
|
|
18090
|
-
|
|
18091
|
-
|
|
18102
|
+
|
|
18103
|
+
.v-bottom-navigation__content {
|
|
18104
|
+
display: flex;
|
|
18105
|
+
flex: none;
|
|
18106
|
+
font-size: 0.75rem;
|
|
18107
|
+
justify-content: center;
|
|
18108
|
+
transition: inherit;
|
|
18109
|
+
width: 100%;
|
|
18092
18110
|
}
|
|
18093
|
-
.v-
|
|
18094
|
-
|
|
18111
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn {
|
|
18112
|
+
font-size: inherit;
|
|
18113
|
+
height: 100%;
|
|
18114
|
+
max-width: 168px;
|
|
18115
|
+
min-width: 80px;
|
|
18116
|
+
text-transform: none;
|
|
18117
|
+
transition: inherit;
|
|
18118
|
+
width: auto;
|
|
18119
|
+
border-radius: 0;
|
|
18095
18120
|
}
|
|
18096
|
-
.v-
|
|
18097
|
-
|
|
18121
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__content,
|
|
18122
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
|
|
18123
|
+
transition: inherit;
|
|
18098
18124
|
}
|
|
18099
|
-
.v-
|
|
18100
|
-
|
|
18125
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
|
|
18126
|
+
font-size: 1.5rem;
|
|
18101
18127
|
}
|
|
18102
|
-
.v-
|
|
18103
|
-
|
|
18128
|
+
.v-bottom-navigation--grow .v-bottom-navigation__content > .v-btn {
|
|
18129
|
+
flex-grow: 1;
|
|
18104
18130
|
}
|
|
18105
|
-
.v-
|
|
18106
|
-
|
|
18107
|
-
|
|
18131
|
+
.v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content > span {
|
|
18132
|
+
transition: inherit;
|
|
18133
|
+
opacity: 0;
|
|
18108
18134
|
}
|
|
18109
|
-
.v-
|
|
18110
|
-
|
|
18135
|
+
.v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
|
|
18136
|
+
transform: translateY(0.5rem);
|
|
18137
|
+
}.v-breadcrumbs {
|
|
18138
|
+
display: flex;
|
|
18139
|
+
align-items: center;
|
|
18140
|
+
line-height: 1.375rem;
|
|
18141
|
+
padding: 16px 12px;
|
|
18111
18142
|
}
|
|
18112
|
-
.v-
|
|
18113
|
-
|
|
18143
|
+
.v-breadcrumbs--rounded {
|
|
18144
|
+
border-radius: 4px;
|
|
18114
18145
|
}
|
|
18115
|
-
.v-
|
|
18146
|
+
.v-breadcrumbs--density-default {
|
|
18116
18147
|
padding-top: 16px;
|
|
18117
18148
|
padding-bottom: 16px;
|
|
18118
18149
|
}
|
|
18119
|
-
.v-banner--density-default.v-banner--three-line {
|
|
18120
|
-
padding-top: 24px;
|
|
18121
|
-
padding-bottom: 16px;
|
|
18122
|
-
}
|
|
18123
|
-
.v-banner--density-default:not(.v-banner--one-line) .v-banner-actions, .v-banner--density-default.v-banner--two-line .v-banner-actions, .v-banner--density-default.v-banner--three-line .v-banner-actions {
|
|
18124
|
-
margin-top: 20px;
|
|
18125
|
-
}
|
|
18126
18150
|
|
|
18127
|
-
.v-
|
|
18128
|
-
margin-bottom: -4px;
|
|
18129
|
-
}
|
|
18130
|
-
.v-banner--density-comfortable.v-banner--one-line {
|
|
18131
|
-
padding-top: 4px;
|
|
18132
|
-
padding-bottom: 4px;
|
|
18133
|
-
}
|
|
18134
|
-
.v-banner--density-comfortable.v-banner--one-line .v-banner-actions {
|
|
18135
|
-
margin-bottom: 0;
|
|
18136
|
-
}
|
|
18137
|
-
.v-banner--density-comfortable.v-banner--two-line {
|
|
18151
|
+
.v-breadcrumbs--density-comfortable {
|
|
18138
18152
|
padding-top: 12px;
|
|
18139
18153
|
padding-bottom: 12px;
|
|
18140
18154
|
}
|
|
18141
|
-
.v-banner--density-comfortable.v-banner--three-line {
|
|
18142
|
-
padding-top: 20px;
|
|
18143
|
-
padding-bottom: 12px;
|
|
18144
|
-
}
|
|
18145
|
-
.v-banner--density-comfortable:not(.v-banner--one-line) .v-banner-actions, .v-banner--density-comfortable.v-banner--two-line .v-banner-actions, .v-banner--density-comfortable.v-banner--three-line .v-banner-actions {
|
|
18146
|
-
margin-top: 16px;
|
|
18147
|
-
}
|
|
18148
18155
|
|
|
18149
|
-
.v-
|
|
18150
|
-
margin-bottom: 0px;
|
|
18151
|
-
}
|
|
18152
|
-
.v-banner--density-compact.v-banner--one-line {
|
|
18153
|
-
padding-top: 0px;
|
|
18154
|
-
padding-bottom: 0px;
|
|
18155
|
-
}
|
|
18156
|
-
.v-banner--density-compact.v-banner--one-line .v-banner-actions {
|
|
18157
|
-
margin-bottom: 0;
|
|
18158
|
-
}
|
|
18159
|
-
.v-banner--density-compact.v-banner--two-line {
|
|
18156
|
+
.v-breadcrumbs--density-compact {
|
|
18160
18157
|
padding-top: 8px;
|
|
18161
18158
|
padding-bottom: 8px;
|
|
18162
18159
|
}
|
|
18163
|
-
.v-banner--density-compact.v-banner--three-line {
|
|
18164
|
-
padding-top: 16px;
|
|
18165
|
-
padding-bottom: 8px;
|
|
18166
|
-
}
|
|
18167
|
-
.v-banner--density-compact:not(.v-banner--one-line) .v-banner-actions, .v-banner--density-compact.v-banner--two-line .v-banner-actions, .v-banner--density-compact.v-banner--three-line .v-banner-actions {
|
|
18168
|
-
margin-top: 12px;
|
|
18169
|
-
}
|
|
18170
|
-
|
|
18171
|
-
.v-banner--sticky {
|
|
18172
|
-
top: 0;
|
|
18173
|
-
}
|
|
18174
18160
|
|
|
18175
|
-
.v-
|
|
18161
|
+
.v-breadcrumbs__prepend {
|
|
18176
18162
|
align-items: center;
|
|
18177
|
-
display: flex;
|
|
18178
|
-
grid-area: content;
|
|
18179
|
-
}
|
|
18180
|
-
|
|
18181
|
-
.v-banner__prepend {
|
|
18182
|
-
align-self: flex-start;
|
|
18183
|
-
grid-area: prepend;
|
|
18184
|
-
margin-inline-end: 24px;
|
|
18163
|
+
display: inline-flex;
|
|
18185
18164
|
}
|
|
18186
18165
|
|
|
18187
|
-
.v-
|
|
18188
|
-
align-
|
|
18189
|
-
|
|
18190
|
-
|
|
18191
|
-
|
|
18192
|
-
|
|
18193
|
-
|
|
18194
|
-
.v-banner--two-line .v-banner-actions, .v-banner--three-line .v-banner-actions {
|
|
18195
|
-
margin-top: 20px;
|
|
18166
|
+
.v-breadcrumbs-item {
|
|
18167
|
+
align-items: center;
|
|
18168
|
+
color: inherit;
|
|
18169
|
+
display: inline-flex;
|
|
18170
|
+
padding: 0 4px;
|
|
18171
|
+
text-decoration: none;
|
|
18172
|
+
vertical-align: middle;
|
|
18196
18173
|
}
|
|
18197
|
-
|
|
18198
|
-
|
|
18199
|
-
-
|
|
18200
|
-
display: -webkit-box;
|
|
18201
|
-
padding-inline-end: 90px;
|
|
18202
|
-
overflow: hidden;
|
|
18174
|
+
.v-breadcrumbs-item--disabled {
|
|
18175
|
+
opacity: var(--v-disabled-opacity);
|
|
18176
|
+
pointer-events: none;
|
|
18203
18177
|
}
|
|
18204
|
-
.v-
|
|
18205
|
-
|
|
18178
|
+
.v-breadcrumbs-item--link {
|
|
18179
|
+
color: inherit;
|
|
18180
|
+
text-decoration: none;
|
|
18206
18181
|
}
|
|
18207
|
-
.v-
|
|
18208
|
-
-
|
|
18182
|
+
.v-breadcrumbs-item--link:hover {
|
|
18183
|
+
text-decoration: underline;
|
|
18209
18184
|
}
|
|
18210
|
-
.v-
|
|
18211
|
-
-
|
|
18185
|
+
.v-breadcrumbs-item .v-icon {
|
|
18186
|
+
font-size: 1rem;
|
|
18187
|
+
margin-inline: -4px 2px;
|
|
18212
18188
|
}
|
|
18213
|
-
|
|
18214
|
-
|
|
18189
|
+
|
|
18190
|
+
.v-breadcrumbs-divider {
|
|
18191
|
+
display: inline-block;
|
|
18192
|
+
padding: 0 8px;
|
|
18193
|
+
vertical-align: middle;
|
|
18215
18194
|
}.bottom-sheet-transition-enter-from {
|
|
18216
18195
|
transform: translateY(100%);
|
|
18217
18196
|
}
|
|
@@ -18244,187 +18223,6 @@ html.overflow-y-hidden {
|
|
|
18244
18223
|
.v-bottom-sheet.v-bottom-sheet--inset {
|
|
18245
18224
|
max-width: 70%;
|
|
18246
18225
|
}
|
|
18247
|
-
}.v-bottom-navigation {
|
|
18248
|
-
display: flex;
|
|
18249
|
-
max-width: 100%;
|
|
18250
|
-
overflow: hidden;
|
|
18251
|
-
position: absolute;
|
|
18252
|
-
transition: transform, color 0.2s, 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
18253
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
18254
|
-
border-style: solid;
|
|
18255
|
-
border-width: 0;
|
|
18256
|
-
border-radius: 0;
|
|
18257
|
-
background: rgb(var(--v-theme-surface));
|
|
18258
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
18259
|
-
}
|
|
18260
|
-
.v-bottom-navigation--border {
|
|
18261
|
-
border-width: thin;
|
|
18262
|
-
box-shadow: none;
|
|
18263
|
-
}
|
|
18264
|
-
.v-bottom-navigation--active {
|
|
18265
|
-
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-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
18266
|
-
}
|
|
18267
|
-
|
|
18268
|
-
.v-bottom-navigation__content {
|
|
18269
|
-
display: flex;
|
|
18270
|
-
flex: none;
|
|
18271
|
-
font-size: 0.75rem;
|
|
18272
|
-
justify-content: center;
|
|
18273
|
-
transition: inherit;
|
|
18274
|
-
width: 100%;
|
|
18275
|
-
}
|
|
18276
|
-
.v-bottom-navigation .v-bottom-navigation__content > .v-btn {
|
|
18277
|
-
font-size: inherit;
|
|
18278
|
-
height: 100%;
|
|
18279
|
-
max-width: 168px;
|
|
18280
|
-
min-width: 80px;
|
|
18281
|
-
text-transform: none;
|
|
18282
|
-
transition: inherit;
|
|
18283
|
-
width: auto;
|
|
18284
|
-
border-radius: 0;
|
|
18285
|
-
}
|
|
18286
|
-
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__content,
|
|
18287
|
-
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
|
|
18288
|
-
transition: inherit;
|
|
18289
|
-
}
|
|
18290
|
-
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
|
|
18291
|
-
font-size: 1.5rem;
|
|
18292
|
-
}
|
|
18293
|
-
.v-bottom-navigation--grow .v-bottom-navigation__content > .v-btn {
|
|
18294
|
-
flex-grow: 1;
|
|
18295
|
-
}
|
|
18296
|
-
.v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content > span {
|
|
18297
|
-
transition: inherit;
|
|
18298
|
-
opacity: 0;
|
|
18299
|
-
}
|
|
18300
|
-
.v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
|
|
18301
|
-
transform: translateY(0.5rem);
|
|
18302
|
-
}.v-btn-group {
|
|
18303
|
-
display: inline-flex;
|
|
18304
|
-
flex-wrap: nowrap;
|
|
18305
|
-
max-width: 100%;
|
|
18306
|
-
min-width: 0;
|
|
18307
|
-
overflow: hidden;
|
|
18308
|
-
vertical-align: middle;
|
|
18309
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
18310
|
-
border-style: solid;
|
|
18311
|
-
border-width: 0;
|
|
18312
|
-
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-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
18313
|
-
border-radius: 4px;
|
|
18314
|
-
background: transparent;
|
|
18315
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
18316
|
-
}
|
|
18317
|
-
.v-btn-group--border {
|
|
18318
|
-
border-width: thin;
|
|
18319
|
-
box-shadow: none;
|
|
18320
|
-
}
|
|
18321
|
-
.v-btn-group--density-default.v-btn-group {
|
|
18322
|
-
height: 48px;
|
|
18323
|
-
}
|
|
18324
|
-
|
|
18325
|
-
.v-btn-group--density-comfortable.v-btn-group {
|
|
18326
|
-
height: 40px;
|
|
18327
|
-
}
|
|
18328
|
-
|
|
18329
|
-
.v-btn-group--density-compact.v-btn-group {
|
|
18330
|
-
height: 36px;
|
|
18331
|
-
}
|
|
18332
|
-
|
|
18333
|
-
.v-btn-group .v-btn {
|
|
18334
|
-
border-radius: 0;
|
|
18335
|
-
border-color: inherit;
|
|
18336
|
-
}
|
|
18337
|
-
.v-btn-group .v-btn:not(:last-child) {
|
|
18338
|
-
border-inline-end: none;
|
|
18339
|
-
}
|
|
18340
|
-
.v-btn-group .v-btn:not(:first-child) {
|
|
18341
|
-
border-inline-start: none;
|
|
18342
|
-
}
|
|
18343
|
-
.v-btn-group .v-btn:first-child {
|
|
18344
|
-
border-start-start-radius: inherit;
|
|
18345
|
-
border-end-start-radius: inherit;
|
|
18346
|
-
}
|
|
18347
|
-
.v-btn-group .v-btn:last-child {
|
|
18348
|
-
border-start-end-radius: inherit;
|
|
18349
|
-
border-end-end-radius: inherit;
|
|
18350
|
-
}
|
|
18351
|
-
.v-btn-group--divided .v-btn:not(:last-child) {
|
|
18352
|
-
border-inline-end-width: thin;
|
|
18353
|
-
border-inline-end-style: solid;
|
|
18354
|
-
border-inline-end-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
18355
|
-
}
|
|
18356
|
-
.v-btn-group--tile {
|
|
18357
|
-
border-radius: 0;
|
|
18358
|
-
}.v-breadcrumbs {
|
|
18359
|
-
display: flex;
|
|
18360
|
-
align-items: center;
|
|
18361
|
-
line-height: 1.375rem;
|
|
18362
|
-
padding: 16px 12px;
|
|
18363
|
-
}
|
|
18364
|
-
.v-breadcrumbs--rounded {
|
|
18365
|
-
border-radius: 4px;
|
|
18366
|
-
}
|
|
18367
|
-
.v-breadcrumbs--density-default {
|
|
18368
|
-
padding-top: 16px;
|
|
18369
|
-
padding-bottom: 16px;
|
|
18370
|
-
}
|
|
18371
|
-
|
|
18372
|
-
.v-breadcrumbs--density-comfortable {
|
|
18373
|
-
padding-top: 12px;
|
|
18374
|
-
padding-bottom: 12px;
|
|
18375
|
-
}
|
|
18376
|
-
|
|
18377
|
-
.v-breadcrumbs--density-compact {
|
|
18378
|
-
padding-top: 8px;
|
|
18379
|
-
padding-bottom: 8px;
|
|
18380
|
-
}
|
|
18381
|
-
|
|
18382
|
-
.v-breadcrumbs__prepend {
|
|
18383
|
-
align-items: center;
|
|
18384
|
-
display: inline-flex;
|
|
18385
|
-
}
|
|
18386
|
-
|
|
18387
|
-
.v-breadcrumbs-item {
|
|
18388
|
-
align-items: center;
|
|
18389
|
-
color: inherit;
|
|
18390
|
-
display: inline-flex;
|
|
18391
|
-
padding: 0 4px;
|
|
18392
|
-
text-decoration: none;
|
|
18393
|
-
vertical-align: middle;
|
|
18394
|
-
}
|
|
18395
|
-
.v-breadcrumbs-item--disabled {
|
|
18396
|
-
opacity: var(--v-disabled-opacity);
|
|
18397
|
-
pointer-events: none;
|
|
18398
|
-
}
|
|
18399
|
-
.v-breadcrumbs-item--link {
|
|
18400
|
-
color: inherit;
|
|
18401
|
-
text-decoration: none;
|
|
18402
|
-
}
|
|
18403
|
-
.v-breadcrumbs-item--link:hover {
|
|
18404
|
-
text-decoration: underline;
|
|
18405
|
-
}
|
|
18406
|
-
.v-breadcrumbs-item .v-icon {
|
|
18407
|
-
font-size: 1rem;
|
|
18408
|
-
margin-inline: -4px 2px;
|
|
18409
|
-
}
|
|
18410
|
-
|
|
18411
|
-
.v-breadcrumbs-divider {
|
|
18412
|
-
display: inline-block;
|
|
18413
|
-
padding: 0 8px;
|
|
18414
|
-
vertical-align: middle;
|
|
18415
|
-
}.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
|
|
18416
|
-
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
|
18417
|
-
}
|
|
18418
|
-
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
|
|
18419
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
|
18420
|
-
}
|
|
18421
|
-
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
|
|
18422
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
18423
|
-
}
|
|
18424
|
-
@supports not selector(:focus-visible) {
|
|
18425
|
-
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
|
|
18426
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
18427
|
-
}
|
|
18428
18226
|
}.v-btn {
|
|
18429
18227
|
align-items: center;
|
|
18430
18228
|
border-radius: 4px;
|
|
@@ -19124,14 +18922,70 @@ html.overflow-y-hidden {
|
|
|
19124
18922
|
pointer-events: none;
|
|
19125
18923
|
opacity: 0;
|
|
19126
18924
|
transition: opacity 0.2s ease-in-out;
|
|
19127
|
-
}.v-
|
|
18925
|
+
}.v-btn-group {
|
|
18926
|
+
display: inline-flex;
|
|
18927
|
+
flex-wrap: nowrap;
|
|
18928
|
+
max-width: 100%;
|
|
18929
|
+
min-width: 0;
|
|
19128
18930
|
overflow: hidden;
|
|
19129
|
-
|
|
19130
|
-
|
|
19131
|
-
|
|
19132
|
-
|
|
19133
|
-
|
|
19134
|
-
|
|
18931
|
+
vertical-align: middle;
|
|
18932
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
18933
|
+
border-style: solid;
|
|
18934
|
+
border-width: 0;
|
|
18935
|
+
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-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
18936
|
+
border-radius: 4px;
|
|
18937
|
+
background: transparent;
|
|
18938
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
18939
|
+
}
|
|
18940
|
+
.v-btn-group--border {
|
|
18941
|
+
border-width: thin;
|
|
18942
|
+
box-shadow: none;
|
|
18943
|
+
}
|
|
18944
|
+
.v-btn-group--density-default.v-btn-group {
|
|
18945
|
+
height: 48px;
|
|
18946
|
+
}
|
|
18947
|
+
|
|
18948
|
+
.v-btn-group--density-comfortable.v-btn-group {
|
|
18949
|
+
height: 40px;
|
|
18950
|
+
}
|
|
18951
|
+
|
|
18952
|
+
.v-btn-group--density-compact.v-btn-group {
|
|
18953
|
+
height: 36px;
|
|
18954
|
+
}
|
|
18955
|
+
|
|
18956
|
+
.v-btn-group .v-btn {
|
|
18957
|
+
border-radius: 0;
|
|
18958
|
+
border-color: inherit;
|
|
18959
|
+
}
|
|
18960
|
+
.v-btn-group .v-btn:not(:last-child) {
|
|
18961
|
+
border-inline-end: none;
|
|
18962
|
+
}
|
|
18963
|
+
.v-btn-group .v-btn:not(:first-child) {
|
|
18964
|
+
border-inline-start: none;
|
|
18965
|
+
}
|
|
18966
|
+
.v-btn-group .v-btn:first-child {
|
|
18967
|
+
border-start-start-radius: inherit;
|
|
18968
|
+
border-end-start-radius: inherit;
|
|
18969
|
+
}
|
|
18970
|
+
.v-btn-group .v-btn:last-child {
|
|
18971
|
+
border-start-end-radius: inherit;
|
|
18972
|
+
border-end-end-radius: inherit;
|
|
18973
|
+
}
|
|
18974
|
+
.v-btn-group--divided .v-btn:not(:last-child) {
|
|
18975
|
+
border-inline-end-width: thin;
|
|
18976
|
+
border-inline-end-style: solid;
|
|
18977
|
+
border-inline-end-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
18978
|
+
}
|
|
18979
|
+
.v-btn-group--tile {
|
|
18980
|
+
border-radius: 0;
|
|
18981
|
+
}.v-carousel {
|
|
18982
|
+
overflow: hidden;
|
|
18983
|
+
position: relative;
|
|
18984
|
+
width: 100%;
|
|
18985
|
+
}
|
|
18986
|
+
.v-carousel__controls {
|
|
18987
|
+
align-items: center;
|
|
18988
|
+
bottom: 0;
|
|
19135
18989
|
display: flex;
|
|
19136
18990
|
height: 50px;
|
|
19137
18991
|
justify-content: center;
|
|
@@ -19187,29 +19041,19 @@ html.overflow-y-hidden {
|
|
|
19187
19041
|
flex-direction: column;
|
|
19188
19042
|
height: 100% !important;
|
|
19189
19043
|
width: 50px;
|
|
19190
|
-
}.v-
|
|
19191
|
-
|
|
19192
|
-
}
|
|
19193
|
-
.v-checkbox .v-selection-control {
|
|
19194
|
-
min-height: var(--v-input-control-height);
|
|
19195
|
-
}.v-chip-group {
|
|
19196
|
-
display: flex;
|
|
19197
|
-
max-width: 100%;
|
|
19198
|
-
min-width: 0;
|
|
19199
|
-
overflow-x: auto;
|
|
19200
|
-
padding: 4px 0;
|
|
19044
|
+
}.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
|
|
19045
|
+
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
|
19201
19046
|
}
|
|
19202
|
-
.v-
|
|
19203
|
-
|
|
19047
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
|
|
19048
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
|
19204
19049
|
}
|
|
19205
|
-
.v-
|
|
19206
|
-
opacity: var(--v-activated-opacity);
|
|
19050
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
|
|
19051
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
19207
19052
|
}
|
|
19208
|
-
|
|
19209
|
-
.v-
|
|
19210
|
-
|
|
19211
|
-
|
|
19212
|
-
max-width: 100%;
|
|
19053
|
+
@supports not selector(:focus-visible) {
|
|
19054
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
|
|
19055
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
19056
|
+
}
|
|
19213
19057
|
}.v-chip {
|
|
19214
19058
|
align-items: center;
|
|
19215
19059
|
display: inline-flex;
|
|
@@ -19617,6 +19461,110 @@ html.overflow-y-hidden {
|
|
|
19617
19461
|
|
|
19618
19462
|
.v-chip--label {
|
|
19619
19463
|
border-radius: 4px;
|
|
19464
|
+
}.v-combobox .v-field .v-text-field__prefix,
|
|
19465
|
+
.v-combobox .v-field .v-text-field__suffix,
|
|
19466
|
+
.v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
|
|
19467
|
+
cursor: text;
|
|
19468
|
+
}
|
|
19469
|
+
.v-combobox .v-field .v-field__input > input {
|
|
19470
|
+
flex: 1 1;
|
|
19471
|
+
}
|
|
19472
|
+
.v-combobox .v-field input {
|
|
19473
|
+
min-width: 64px;
|
|
19474
|
+
}
|
|
19475
|
+
.v-combobox .v-field:not(.v-field--focused) input {
|
|
19476
|
+
min-width: 0;
|
|
19477
|
+
}
|
|
19478
|
+
.v-combobox .v-field--dirty .v-combobox__selection {
|
|
19479
|
+
margin-inline-end: 2px;
|
|
19480
|
+
}
|
|
19481
|
+
.v-combobox .v-combobox__selection-text {
|
|
19482
|
+
overflow: hidden;
|
|
19483
|
+
text-overflow: ellipsis;
|
|
19484
|
+
white-space: nowrap;
|
|
19485
|
+
}
|
|
19486
|
+
|
|
19487
|
+
.v-combobox__content {
|
|
19488
|
+
overflow: hidden;
|
|
19489
|
+
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-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
19490
|
+
border-radius: 4px;
|
|
19491
|
+
}
|
|
19492
|
+
.v-combobox__mask {
|
|
19493
|
+
background: rgb(var(--v-theme-surface-light));
|
|
19494
|
+
}
|
|
19495
|
+
.v-combobox__selection {
|
|
19496
|
+
display: inline-flex;
|
|
19497
|
+
align-items: center;
|
|
19498
|
+
height: 1.5rem;
|
|
19499
|
+
letter-spacing: inherit;
|
|
19500
|
+
line-height: inherit;
|
|
19501
|
+
max-width: calc(100% - 2px - 2px);
|
|
19502
|
+
}
|
|
19503
|
+
.v-combobox__selection:first-child {
|
|
19504
|
+
margin-inline-start: 0;
|
|
19505
|
+
}
|
|
19506
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
|
19507
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
|
19508
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
|
19509
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
19510
|
+
top: 0px;
|
|
19511
|
+
}
|
|
19512
|
+
.v-combobox--selecting-index .v-combobox__selection {
|
|
19513
|
+
opacity: var(--v-medium-emphasis-opacity);
|
|
19514
|
+
}
|
|
19515
|
+
.v-combobox--selecting-index .v-combobox__selection--selected {
|
|
19516
|
+
opacity: 1;
|
|
19517
|
+
}
|
|
19518
|
+
.v-combobox--selecting-index .v-field__input > input {
|
|
19519
|
+
caret-color: transparent;
|
|
19520
|
+
}
|
|
19521
|
+
.v-combobox--single:not(.v-combobox--selection-slot).v-text-field input {
|
|
19522
|
+
flex: 1 1;
|
|
19523
|
+
position: absolute;
|
|
19524
|
+
left: 0;
|
|
19525
|
+
right: 0;
|
|
19526
|
+
width: 100%;
|
|
19527
|
+
padding-inline: inherit;
|
|
19528
|
+
}
|
|
19529
|
+
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--active input {
|
|
19530
|
+
transition: none;
|
|
19531
|
+
}
|
|
19532
|
+
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--dirty:not(.v-field--focused) input {
|
|
19533
|
+
opacity: 0;
|
|
19534
|
+
}
|
|
19535
|
+
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--focused .v-combobox__selection {
|
|
19536
|
+
opacity: 0;
|
|
19537
|
+
}
|
|
19538
|
+
.v-combobox__menu-icon {
|
|
19539
|
+
margin-inline-start: 4px;
|
|
19540
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
19541
|
+
}
|
|
19542
|
+
.v-combobox--active-menu .v-combobox__menu-icon {
|
|
19543
|
+
opacity: var(--v-high-emphasis-opacity);
|
|
19544
|
+
transform: rotate(180deg);
|
|
19545
|
+
}.v-checkbox.v-input {
|
|
19546
|
+
flex: 0 1 auto;
|
|
19547
|
+
}
|
|
19548
|
+
.v-checkbox .v-selection-control {
|
|
19549
|
+
min-height: var(--v-input-control-height);
|
|
19550
|
+
}.v-chip-group {
|
|
19551
|
+
display: flex;
|
|
19552
|
+
max-width: 100%;
|
|
19553
|
+
min-width: 0;
|
|
19554
|
+
overflow-x: auto;
|
|
19555
|
+
padding: 4px 0;
|
|
19556
|
+
}
|
|
19557
|
+
.v-chip-group .v-chip {
|
|
19558
|
+
margin: 4px 8px 4px 0;
|
|
19559
|
+
}
|
|
19560
|
+
.v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
|
|
19561
|
+
opacity: var(--v-activated-opacity);
|
|
19562
|
+
}
|
|
19563
|
+
|
|
19564
|
+
.v-chip-group--column .v-slide-group__content {
|
|
19565
|
+
white-space: normal;
|
|
19566
|
+
flex-wrap: wrap;
|
|
19567
|
+
max-width: 100%;
|
|
19620
19568
|
}.v-color-picker {
|
|
19621
19569
|
align-self: flex-start;
|
|
19622
19570
|
contain: content;
|
|
@@ -20309,121 +20257,45 @@ html.overflow-y-hidden {
|
|
|
20309
20257
|
.offset-xxl-11 {
|
|
20310
20258
|
margin-inline-start: 91.6666666667%;
|
|
20311
20259
|
}
|
|
20312
|
-
}.v-
|
|
20313
|
-
|
|
20314
|
-
|
|
20315
|
-
|
|
20316
|
-
|
|
20317
|
-
.v-
|
|
20318
|
-
|
|
20319
|
-
}
|
|
20320
|
-
.v-combobox .v-field input {
|
|
20321
|
-
min-width: 64px;
|
|
20260
|
+
}.v-counter {
|
|
20261
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
|
20262
|
+
flex: 0 1 auto;
|
|
20263
|
+
font-size: 12px;
|
|
20264
|
+
transition-duration: 150ms;
|
|
20265
|
+
}.v-data-table {
|
|
20266
|
+
width: 100%;
|
|
20322
20267
|
}
|
|
20323
|
-
|
|
20324
|
-
|
|
20268
|
+
|
|
20269
|
+
.v-data-table__table {
|
|
20270
|
+
width: 100%;
|
|
20271
|
+
border-collapse: separate;
|
|
20272
|
+
border-spacing: 0;
|
|
20325
20273
|
}
|
|
20326
|
-
|
|
20327
|
-
|
|
20274
|
+
|
|
20275
|
+
.v-data-table__tr--focus {
|
|
20276
|
+
border: 1px dotted black;
|
|
20328
20277
|
}
|
|
20329
|
-
.v-
|
|
20330
|
-
|
|
20331
|
-
text-overflow: ellipsis;
|
|
20332
|
-
white-space: nowrap;
|
|
20278
|
+
.v-data-table__tr--clickable {
|
|
20279
|
+
cursor: pointer;
|
|
20333
20280
|
}
|
|
20334
20281
|
|
|
20335
|
-
.v-
|
|
20336
|
-
|
|
20337
|
-
|
|
20338
|
-
|
|
20282
|
+
.v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-end,
|
|
20283
|
+
.v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-end,
|
|
20284
|
+
.v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-end,
|
|
20285
|
+
.v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-end {
|
|
20286
|
+
text-align: end;
|
|
20339
20287
|
}
|
|
20340
|
-
.v-
|
|
20341
|
-
|
|
20288
|
+
.v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-end .v-data-table-header__content,
|
|
20289
|
+
.v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-end .v-data-table-header__content,
|
|
20290
|
+
.v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-end .v-data-table-header__content,
|
|
20291
|
+
.v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-end .v-data-table-header__content {
|
|
20292
|
+
flex-direction: row-reverse;
|
|
20342
20293
|
}
|
|
20343
|
-
.v-
|
|
20344
|
-
|
|
20345
|
-
|
|
20346
|
-
|
|
20347
|
-
|
|
20348
|
-
line-height: inherit;
|
|
20349
|
-
max-width: calc(100% - 2px - 2px);
|
|
20350
|
-
}
|
|
20351
|
-
.v-combobox__selection:first-child {
|
|
20352
|
-
margin-inline-start: 0;
|
|
20353
|
-
}
|
|
20354
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
|
20355
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
|
20356
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
|
20357
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
20358
|
-
top: 0px;
|
|
20359
|
-
}
|
|
20360
|
-
.v-combobox--selecting-index .v-combobox__selection {
|
|
20361
|
-
opacity: var(--v-medium-emphasis-opacity);
|
|
20362
|
-
}
|
|
20363
|
-
.v-combobox--selecting-index .v-combobox__selection--selected {
|
|
20364
|
-
opacity: 1;
|
|
20365
|
-
}
|
|
20366
|
-
.v-combobox--selecting-index .v-field__input > input {
|
|
20367
|
-
caret-color: transparent;
|
|
20368
|
-
}
|
|
20369
|
-
.v-combobox--single:not(.v-combobox--selection-slot).v-text-field .v-field--focused input {
|
|
20370
|
-
flex: 1 1;
|
|
20371
|
-
position: absolute;
|
|
20372
|
-
left: 0;
|
|
20373
|
-
right: 0;
|
|
20374
|
-
width: 100%;
|
|
20375
|
-
padding-inline: inherit;
|
|
20376
|
-
}
|
|
20377
|
-
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--active input {
|
|
20378
|
-
transition: none;
|
|
20379
|
-
}
|
|
20380
|
-
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--dirty:not(.v-field--focused) input {
|
|
20381
|
-
opacity: 0;
|
|
20382
|
-
}
|
|
20383
|
-
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--focused .v-combobox__selection {
|
|
20384
|
-
opacity: 0;
|
|
20385
|
-
}
|
|
20386
|
-
.v-combobox__menu-icon {
|
|
20387
|
-
margin-inline-start: 4px;
|
|
20388
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
20389
|
-
}
|
|
20390
|
-
.v-combobox--active-menu .v-combobox__menu-icon {
|
|
20391
|
-
opacity: var(--v-high-emphasis-opacity);
|
|
20392
|
-
transform: rotate(180deg);
|
|
20393
|
-
}.v-data-table {
|
|
20394
|
-
width: 100%;
|
|
20395
|
-
}
|
|
20396
|
-
|
|
20397
|
-
.v-data-table__table {
|
|
20398
|
-
width: 100%;
|
|
20399
|
-
border-collapse: separate;
|
|
20400
|
-
border-spacing: 0;
|
|
20401
|
-
}
|
|
20402
|
-
|
|
20403
|
-
.v-data-table__tr--focus {
|
|
20404
|
-
border: 1px dotted black;
|
|
20405
|
-
}
|
|
20406
|
-
.v-data-table__tr--clickable {
|
|
20407
|
-
cursor: pointer;
|
|
20408
|
-
}
|
|
20409
|
-
|
|
20410
|
-
.v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-end,
|
|
20411
|
-
.v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-end,
|
|
20412
|
-
.v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-end,
|
|
20413
|
-
.v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-end {
|
|
20414
|
-
text-align: end;
|
|
20415
|
-
}
|
|
20416
|
-
.v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-end .v-data-table-header__content,
|
|
20417
|
-
.v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-end .v-data-table-header__content,
|
|
20418
|
-
.v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-end .v-data-table-header__content,
|
|
20419
|
-
.v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-end .v-data-table-header__content {
|
|
20420
|
-
flex-direction: row-reverse;
|
|
20421
|
-
}
|
|
20422
|
-
.v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-center,
|
|
20423
|
-
.v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-center,
|
|
20424
|
-
.v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-center,
|
|
20425
|
-
.v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-center {
|
|
20426
|
-
text-align: center;
|
|
20294
|
+
.v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-center,
|
|
20295
|
+
.v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-center,
|
|
20296
|
+
.v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-center,
|
|
20297
|
+
.v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-center {
|
|
20298
|
+
text-align: center;
|
|
20427
20299
|
}
|
|
20428
20300
|
.v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-center .v-data-table-header__content,
|
|
20429
20301
|
.v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-center .v-data-table-header__content,
|
|
@@ -20523,11 +20395,6 @@ html.overflow-y-hidden {
|
|
|
20523
20395
|
.v-data-table-rows-loading,
|
|
20524
20396
|
.v-data-table-rows-no-data {
|
|
20525
20397
|
text-align: center;
|
|
20526
|
-
}.v-counter {
|
|
20527
|
-
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
|
20528
|
-
flex: 0 1 auto;
|
|
20529
|
-
font-size: 12px;
|
|
20530
|
-
transition-duration: 150ms;
|
|
20531
20398
|
}.v-data-table-footer {
|
|
20532
20399
|
display: flex;
|
|
20533
20400
|
align-items: center;
|
|
@@ -20563,270 +20430,258 @@ html.overflow-y-hidden {
|
|
|
20563
20430
|
|
|
20564
20431
|
.v-data-table-footer__page {
|
|
20565
20432
|
padding: 0 8px;
|
|
20566
|
-
}.v-
|
|
20567
|
-
|
|
20568
|
-
|
|
20433
|
+
}.v-divider {
|
|
20434
|
+
display: block;
|
|
20435
|
+
flex: 1 1 100%;
|
|
20436
|
+
height: 0px;
|
|
20437
|
+
max-height: 0px;
|
|
20438
|
+
opacity: var(--v-border-opacity);
|
|
20439
|
+
transition: inherit;
|
|
20440
|
+
border-style: solid;
|
|
20441
|
+
border-width: thin 0 0 0;
|
|
20569
20442
|
}
|
|
20570
|
-
.v-
|
|
20443
|
+
.v-divider--vertical {
|
|
20444
|
+
align-self: stretch;
|
|
20445
|
+
border-width: 0 thin 0 0;
|
|
20446
|
+
display: inline-flex;
|
|
20447
|
+
height: inherit;
|
|
20448
|
+
margin-left: -1px;
|
|
20449
|
+
max-height: 100%;
|
|
20450
|
+
max-width: 0px;
|
|
20451
|
+
vertical-align: text-bottom;
|
|
20452
|
+
width: 0px;
|
|
20453
|
+
}
|
|
20454
|
+
.v-divider--inset:not(.v-divider--vertical) {
|
|
20455
|
+
max-width: calc(100% - 72px);
|
|
20456
|
+
margin-inline-start: 72px;
|
|
20457
|
+
}
|
|
20458
|
+
.v-divider--inset.v-divider--vertical {
|
|
20459
|
+
margin-bottom: 8px;
|
|
20460
|
+
margin-top: 8px;
|
|
20461
|
+
max-height: calc(100% - 16px);
|
|
20462
|
+
}.v-banner {
|
|
20463
|
+
display: grid;
|
|
20464
|
+
flex: 1 1;
|
|
20465
|
+
font-size: 0.875rem;
|
|
20466
|
+
grid-template-areas: "prepend content actions";
|
|
20467
|
+
grid-template-columns: max-content auto max-content;
|
|
20468
|
+
grid-template-rows: max-content max-content;
|
|
20469
|
+
line-height: 1.375rem;
|
|
20470
|
+
overflow: hidden;
|
|
20471
|
+
padding-inline: 16px 8px;
|
|
20472
|
+
padding-top: 16px;
|
|
20473
|
+
padding-bottom: 16px;
|
|
20474
|
+
position: relative;
|
|
20475
|
+
width: 100%;
|
|
20571
20476
|
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
20477
|
+
border-style: solid;
|
|
20478
|
+
border-width: 0 0 thin 0;
|
|
20479
|
+
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-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
20480
|
+
border-radius: 0;
|
|
20481
|
+
background: rgb(var(--v-theme-surface));
|
|
20482
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
20572
20483
|
}
|
|
20573
|
-
.v-
|
|
20574
|
-
|
|
20484
|
+
.v-banner--border {
|
|
20485
|
+
border-width: thin;
|
|
20486
|
+
box-shadow: none;
|
|
20575
20487
|
}
|
|
20576
|
-
.v-
|
|
20577
|
-
|
|
20488
|
+
.v-banner--absolute {
|
|
20489
|
+
position: absolute;
|
|
20578
20490
|
}
|
|
20579
|
-
|
|
20580
|
-
|
|
20581
|
-
display: flex;
|
|
20582
|
-
flex-wrap: wrap;
|
|
20583
|
-
justify-content: center;
|
|
20584
|
-
list-style-type: none;
|
|
20585
|
-
padding: 0;
|
|
20586
|
-
width: 100%;
|
|
20587
|
-
position: relative;
|
|
20588
|
-
z-index: 1;
|
|
20491
|
+
.v-banner--fixed {
|
|
20492
|
+
position: fixed;
|
|
20589
20493
|
}
|
|
20590
|
-
.v-
|
|
20591
|
-
|
|
20592
|
-
border-bottom-right-radius: 0 !important;
|
|
20494
|
+
.v-banner--sticky {
|
|
20495
|
+
position: sticky;
|
|
20593
20496
|
}
|
|
20594
|
-
.v-
|
|
20595
|
-
border-
|
|
20596
|
-
border-top-right-radius: 0 !important;
|
|
20497
|
+
.v-banner--rounded {
|
|
20498
|
+
border-radius: 4px;
|
|
20597
20499
|
}
|
|
20598
|
-
.v-
|
|
20599
|
-
|
|
20600
|
-
border-bottom-right-radius: 0 !important;
|
|
20500
|
+
.v-banner--stacked:not(.v-banner--one-line) {
|
|
20501
|
+
grid-template-areas: "prepend content" ". actions";
|
|
20601
20502
|
}
|
|
20602
|
-
.v-
|
|
20603
|
-
|
|
20604
|
-
border-top-right-radius: 0 !important;
|
|
20503
|
+
.v-banner--stacked .v-banner-text {
|
|
20504
|
+
padding-inline-end: 36px;
|
|
20605
20505
|
}
|
|
20606
|
-
.v-
|
|
20607
|
-
|
|
20608
|
-
border-bottom-right-radius: 0 !important;
|
|
20506
|
+
.v-banner--density-default .v-banner-actions {
|
|
20507
|
+
margin-bottom: -8px;
|
|
20609
20508
|
}
|
|
20610
|
-
.v-
|
|
20611
|
-
|
|
20612
|
-
|
|
20509
|
+
.v-banner--density-default.v-banner--one-line {
|
|
20510
|
+
padding-top: 8px;
|
|
20511
|
+
padding-bottom: 8px;
|
|
20613
20512
|
}
|
|
20614
|
-
.v-
|
|
20615
|
-
|
|
20616
|
-
border-bottom-right-radius: initial;
|
|
20513
|
+
.v-banner--density-default.v-banner--one-line .v-banner-actions {
|
|
20514
|
+
margin-bottom: 0;
|
|
20617
20515
|
}
|
|
20618
|
-
.v-
|
|
20619
|
-
|
|
20516
|
+
.v-banner--density-default.v-banner--one-line {
|
|
20517
|
+
padding-top: 10px;
|
|
20620
20518
|
}
|
|
20621
|
-
.v-
|
|
20622
|
-
|
|
20519
|
+
.v-banner--density-default.v-banner--two-line {
|
|
20520
|
+
padding-top: 16px;
|
|
20521
|
+
padding-bottom: 16px;
|
|
20522
|
+
}
|
|
20523
|
+
.v-banner--density-default.v-banner--three-line {
|
|
20524
|
+
padding-top: 24px;
|
|
20525
|
+
padding-bottom: 16px;
|
|
20526
|
+
}
|
|
20527
|
+
.v-banner--density-default:not(.v-banner--one-line) .v-banner-actions, .v-banner--density-default.v-banner--two-line .v-banner-actions, .v-banner--density-default.v-banner--three-line .v-banner-actions {
|
|
20528
|
+
margin-top: 20px;
|
|
20623
20529
|
}
|
|
20624
20530
|
|
|
20625
|
-
.v-
|
|
20626
|
-
|
|
20627
|
-
max-width: 100%;
|
|
20628
|
-
position: relative;
|
|
20629
|
-
transition: 0.3s all cubic-bezier(0.4, 0, 0.2, 1);
|
|
20630
|
-
transition-property: margin-top, border-radius, border, max-width;
|
|
20631
|
-
border-radius: 4px;
|
|
20531
|
+
.v-banner--density-comfortable .v-banner-actions {
|
|
20532
|
+
margin-bottom: -4px;
|
|
20632
20533
|
}
|
|
20633
|
-
.v-
|
|
20634
|
-
|
|
20635
|
-
|
|
20636
|
-
content: "";
|
|
20637
|
-
left: 0;
|
|
20638
|
-
position: absolute;
|
|
20639
|
-
right: 0;
|
|
20640
|
-
top: 0;
|
|
20641
|
-
transition: 0.3s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
|
20534
|
+
.v-banner--density-comfortable.v-banner--one-line {
|
|
20535
|
+
padding-top: 4px;
|
|
20536
|
+
padding-bottom: 4px;
|
|
20642
20537
|
}
|
|
20643
|
-
.v-
|
|
20644
|
-
|
|
20538
|
+
.v-banner--density-comfortable.v-banner--one-line .v-banner-actions {
|
|
20539
|
+
margin-bottom: 0;
|
|
20645
20540
|
}
|
|
20646
|
-
.v-
|
|
20647
|
-
|
|
20541
|
+
.v-banner--density-comfortable.v-banner--two-line {
|
|
20542
|
+
padding-top: 12px;
|
|
20543
|
+
padding-bottom: 12px;
|
|
20544
|
+
}
|
|
20545
|
+
.v-banner--density-comfortable.v-banner--three-line {
|
|
20546
|
+
padding-top: 20px;
|
|
20547
|
+
padding-bottom: 12px;
|
|
20548
|
+
}
|
|
20549
|
+
.v-banner--density-comfortable:not(.v-banner--one-line) .v-banner-actions, .v-banner--density-comfortable.v-banner--two-line .v-banner-actions, .v-banner--density-comfortable.v-banner--three-line .v-banner-actions {
|
|
20648
20550
|
margin-top: 16px;
|
|
20649
20551
|
}
|
|
20650
|
-
|
|
20651
|
-
.v-
|
|
20652
|
-
|
|
20552
|
+
|
|
20553
|
+
.v-banner--density-compact .v-banner-actions {
|
|
20554
|
+
margin-bottom: 0px;
|
|
20653
20555
|
}
|
|
20654
|
-
.v-
|
|
20655
|
-
|
|
20656
|
-
|
|
20556
|
+
.v-banner--density-compact.v-banner--one-line {
|
|
20557
|
+
padding-top: 0px;
|
|
20558
|
+
padding-bottom: 0px;
|
|
20657
20559
|
}
|
|
20658
|
-
.v-
|
|
20659
|
-
|
|
20560
|
+
.v-banner--density-compact.v-banner--one-line .v-banner-actions {
|
|
20561
|
+
margin-bottom: 0;
|
|
20562
|
+
}
|
|
20563
|
+
.v-banner--density-compact.v-banner--two-line {
|
|
20564
|
+
padding-top: 8px;
|
|
20565
|
+
padding-bottom: 8px;
|
|
20566
|
+
}
|
|
20567
|
+
.v-banner--density-compact.v-banner--three-line {
|
|
20568
|
+
padding-top: 16px;
|
|
20569
|
+
padding-bottom: 8px;
|
|
20570
|
+
}
|
|
20571
|
+
.v-banner--density-compact:not(.v-banner--one-line) .v-banner-actions, .v-banner--density-compact.v-banner--two-line .v-banner-actions, .v-banner--density-compact.v-banner--three-line .v-banner-actions {
|
|
20572
|
+
margin-top: 12px;
|
|
20660
20573
|
}
|
|
20661
20574
|
|
|
20662
|
-
.v-
|
|
20663
|
-
position: absolute;
|
|
20575
|
+
.v-banner--sticky {
|
|
20664
20576
|
top: 0;
|
|
20665
|
-
left: 0;
|
|
20666
|
-
width: 100%;
|
|
20667
|
-
height: 100%;
|
|
20668
|
-
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-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
20669
|
-
border-radius: inherit;
|
|
20670
|
-
z-index: -1;
|
|
20671
20577
|
}
|
|
20672
20578
|
|
|
20673
|
-
.v-
|
|
20579
|
+
.v-banner__content {
|
|
20674
20580
|
align-items: center;
|
|
20675
|
-
text-align: start;
|
|
20676
|
-
border-radius: inherit;
|
|
20677
20581
|
display: flex;
|
|
20678
|
-
|
|
20679
|
-
line-height: 1;
|
|
20680
|
-
min-height: 48px;
|
|
20681
|
-
outline: none;
|
|
20682
|
-
padding: 16px 24px;
|
|
20683
|
-
position: relative;
|
|
20684
|
-
transition: 0.3s min-height cubic-bezier(0.4, 0, 0.2, 1);
|
|
20685
|
-
width: 100%;
|
|
20686
|
-
justify-content: space-between;
|
|
20687
|
-
}
|
|
20688
|
-
.v-expansion-panel-title:hover > .v-expansion-panel-title__overlay {
|
|
20689
|
-
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
|
20690
|
-
}
|
|
20691
|
-
.v-expansion-panel-title:focus-visible > .v-expansion-panel-title__overlay {
|
|
20692
|
-
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
|
20693
|
-
}
|
|
20694
|
-
@supports not selector(:focus-visible) {
|
|
20695
|
-
.v-expansion-panel-title:focus > .v-expansion-panel-title__overlay {
|
|
20696
|
-
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
|
20697
|
-
}
|
|
20698
|
-
}
|
|
20699
|
-
.v-expansion-panel-title--focusable.v-expansion-panel-title--active .v-expansion-panel-title__overlay {
|
|
20700
|
-
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
|
20701
|
-
}
|
|
20702
|
-
.v-expansion-panel-title--focusable.v-expansion-panel-title--active:hover .v-expansion-panel-title__overlay {
|
|
20703
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
|
20704
|
-
}
|
|
20705
|
-
.v-expansion-panel-title--focusable.v-expansion-panel-title--active:focus-visible .v-expansion-panel-title__overlay {
|
|
20706
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
20707
|
-
}
|
|
20708
|
-
@supports not selector(:focus-visible) {
|
|
20709
|
-
.v-expansion-panel-title--focusable.v-expansion-panel-title--active:focus .v-expansion-panel-title__overlay {
|
|
20710
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
20711
|
-
}
|
|
20712
|
-
}
|
|
20713
|
-
|
|
20714
|
-
.v-expansion-panel-title__overlay {
|
|
20715
|
-
position: absolute;
|
|
20716
|
-
top: 0;
|
|
20717
|
-
left: 0;
|
|
20718
|
-
width: 100%;
|
|
20719
|
-
height: 100%;
|
|
20720
|
-
background-color: currentColor;
|
|
20721
|
-
border-radius: inherit;
|
|
20722
|
-
opacity: 0;
|
|
20582
|
+
grid-area: content;
|
|
20723
20583
|
}
|
|
20724
20584
|
|
|
20725
|
-
.v-
|
|
20726
|
-
|
|
20727
|
-
|
|
20728
|
-
margin-
|
|
20729
|
-
-webkit-user-select: none;
|
|
20730
|
-
user-select: none;
|
|
20731
|
-
margin-inline-start: auto;
|
|
20585
|
+
.v-banner__prepend {
|
|
20586
|
+
align-self: flex-start;
|
|
20587
|
+
grid-area: prepend;
|
|
20588
|
+
margin-inline-end: 24px;
|
|
20732
20589
|
}
|
|
20733
20590
|
|
|
20734
|
-
.v-
|
|
20591
|
+
.v-banner-actions {
|
|
20592
|
+
align-self: flex-end;
|
|
20735
20593
|
display: flex;
|
|
20594
|
+
flex: 0 1;
|
|
20595
|
+
grid-area: actions;
|
|
20596
|
+
justify-content: flex-end;
|
|
20736
20597
|
}
|
|
20737
|
-
.v-
|
|
20738
|
-
|
|
20739
|
-
flex: 1 1 auto;
|
|
20740
|
-
max-width: 100%;
|
|
20598
|
+
.v-banner--two-line .v-banner-actions, .v-banner--three-line .v-banner-actions {
|
|
20599
|
+
margin-top: 20px;
|
|
20741
20600
|
}
|
|
20742
20601
|
|
|
20743
|
-
.v-
|
|
20744
|
-
|
|
20602
|
+
.v-banner-text {
|
|
20603
|
+
-webkit-box-orient: vertical;
|
|
20604
|
+
display: -webkit-box;
|
|
20605
|
+
padding-inline-end: 90px;
|
|
20606
|
+
overflow: hidden;
|
|
20745
20607
|
}
|
|
20746
|
-
.v-
|
|
20747
|
-
|
|
20608
|
+
.v-banner--one-line .v-banner-text {
|
|
20609
|
+
-webkit-line-clamp: 1;
|
|
20748
20610
|
}
|
|
20749
|
-
|
|
20750
|
-
|
|
20751
|
-
max-width: calc(100% - 32px);
|
|
20611
|
+
.v-banner--two-line .v-banner-text {
|
|
20612
|
+
-webkit-line-clamp: 2;
|
|
20752
20613
|
}
|
|
20753
|
-
.v-
|
|
20754
|
-
|
|
20614
|
+
.v-banner--three-line .v-banner-text {
|
|
20615
|
+
-webkit-line-clamp: 3;
|
|
20755
20616
|
}
|
|
20756
|
-
|
|
20757
|
-
|
|
20758
|
-
|
|
20617
|
+
.v-banner--two-line .v-banner-text, .v-banner--three-line .v-banner-text {
|
|
20618
|
+
align-self: flex-start;
|
|
20619
|
+
}.v-date-picker {
|
|
20620
|
+
overflow: hidden;
|
|
20621
|
+
width: 328px;
|
|
20759
20622
|
}
|
|
20760
|
-
.v-
|
|
20761
|
-
|
|
20623
|
+
.v-date-picker--show-week {
|
|
20624
|
+
width: 368px;
|
|
20625
|
+
}.v-date-picker-header {
|
|
20626
|
+
align-items: flex-end;
|
|
20627
|
+
height: 70px;
|
|
20628
|
+
display: grid;
|
|
20629
|
+
grid-template-areas: "prepend content append";
|
|
20630
|
+
grid-template-columns: min-content minmax(0, 1fr) min-content;
|
|
20631
|
+
overflow: hidden;
|
|
20632
|
+
padding-inline: 24px 12px;
|
|
20633
|
+
padding-bottom: 12px;
|
|
20762
20634
|
}
|
|
20763
20635
|
|
|
20764
|
-
.v-
|
|
20765
|
-
|
|
20636
|
+
.v-date-picker-header__append {
|
|
20637
|
+
grid-area: append;
|
|
20766
20638
|
}
|
|
20767
|
-
|
|
20768
|
-
|
|
20639
|
+
|
|
20640
|
+
.v-date-picker-header__prepend {
|
|
20641
|
+
grid-area: prepend;
|
|
20642
|
+
padding-inline-start: 8px;
|
|
20769
20643
|
}
|
|
20770
20644
|
|
|
20771
|
-
.v-
|
|
20772
|
-
|
|
20645
|
+
.v-date-picker-header__content {
|
|
20646
|
+
align-items: center;
|
|
20647
|
+
display: inline-flex;
|
|
20648
|
+
font-size: 32px;
|
|
20649
|
+
line-height: 40px;
|
|
20650
|
+
grid-area: content;
|
|
20651
|
+
justify-content: space-between;
|
|
20773
20652
|
}
|
|
20774
|
-
.v-
|
|
20775
|
-
|
|
20776
|
-
}.v-divider {
|
|
20777
|
-
display: block;
|
|
20778
|
-
flex: 1 1 100%;
|
|
20779
|
-
height: 0px;
|
|
20780
|
-
max-height: 0px;
|
|
20781
|
-
opacity: var(--v-border-opacity);
|
|
20782
|
-
transition: inherit;
|
|
20783
|
-
border-style: solid;
|
|
20784
|
-
border-width: thin 0 0 0;
|
|
20653
|
+
.v-date-picker-header--clickable .v-date-picker-header__content {
|
|
20654
|
+
cursor: pointer;
|
|
20785
20655
|
}
|
|
20786
|
-
.v-
|
|
20787
|
-
|
|
20788
|
-
border-width: 0 thin 0 0;
|
|
20789
|
-
display: inline-flex;
|
|
20790
|
-
height: inherit;
|
|
20791
|
-
margin-left: -1px;
|
|
20792
|
-
max-height: 100%;
|
|
20793
|
-
max-width: 0px;
|
|
20794
|
-
vertical-align: text-bottom;
|
|
20795
|
-
width: 0px;
|
|
20656
|
+
.v-date-picker-header--clickable .v-date-picker-header__content:not(:hover) {
|
|
20657
|
+
opacity: 0.7;
|
|
20796
20658
|
}
|
|
20797
|
-
|
|
20798
|
-
|
|
20799
|
-
|
|
20659
|
+
|
|
20660
|
+
.date-picker-header-transition-enter-active,
|
|
20661
|
+
.date-picker-header-reverse-transition-enter-active {
|
|
20662
|
+
transition-duration: 0.3s;
|
|
20663
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
20800
20664
|
}
|
|
20801
|
-
.
|
|
20802
|
-
|
|
20803
|
-
|
|
20804
|
-
|
|
20805
|
-
}.v-date-picker {
|
|
20806
|
-
overflow: hidden;
|
|
20807
|
-
width: 328px;
|
|
20665
|
+
.date-picker-header-transition-leave-active,
|
|
20666
|
+
.date-picker-header-reverse-transition-leave-active {
|
|
20667
|
+
transition-duration: 0.3s;
|
|
20668
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
20808
20669
|
}
|
|
20809
|
-
|
|
20810
|
-
|
|
20811
|
-
|
|
20812
|
-
|
|
20670
|
+
|
|
20671
|
+
.date-picker-header-transition-enter-from {
|
|
20672
|
+
transform: translate(0, 100%);
|
|
20673
|
+
}
|
|
20674
|
+
.date-picker-header-transition-leave-to {
|
|
20675
|
+
opacity: 0;
|
|
20676
|
+
transform: translate(0, -100%);
|
|
20813
20677
|
}
|
|
20814
20678
|
|
|
20815
|
-
.
|
|
20816
|
-
|
|
20817
|
-
display: grid;
|
|
20818
|
-
flex: 1 1;
|
|
20819
|
-
height: inherit;
|
|
20820
|
-
justify-content: space-around;
|
|
20821
|
-
grid-template-columns: repeat(2, 1fr);
|
|
20822
|
-
grid-gap: 0px 24px;
|
|
20823
|
-
padding-inline-start: 36px;
|
|
20824
|
-
padding-inline-end: 36px;
|
|
20679
|
+
.date-picker-header-reverse-transition-enter-from {
|
|
20680
|
+
transform: translate(0, -100%);
|
|
20825
20681
|
}
|
|
20826
|
-
.
|
|
20827
|
-
|
|
20828
|
-
|
|
20829
|
-
padding-inline-end: 8px;
|
|
20682
|
+
.date-picker-header-reverse-transition-leave-to {
|
|
20683
|
+
opacity: 0;
|
|
20684
|
+
transform: translate(0, 100%);
|
|
20830
20685
|
}.v-date-picker-controls {
|
|
20831
20686
|
display: flex;
|
|
20832
20687
|
align-items: center;
|
|
@@ -20883,21 +20738,55 @@ html.overflow-y-hidden {
|
|
|
20883
20738
|
|
|
20884
20739
|
.v-date-picker__title {
|
|
20885
20740
|
display: inline-block;
|
|
20886
|
-
}.v-date-picker-
|
|
20887
|
-
|
|
20888
|
-
justify-content: center;
|
|
20889
|
-
padding: 0 12px 8px;
|
|
20890
|
-
--v-date-picker-month-day-diff: 4px;
|
|
20741
|
+
}.v-date-picker-months {
|
|
20742
|
+
height: 288px;
|
|
20891
20743
|
}
|
|
20892
20744
|
|
|
20893
|
-
.v-date-picker-
|
|
20745
|
+
.v-date-picker-months__content {
|
|
20746
|
+
align-items: center;
|
|
20894
20747
|
display: grid;
|
|
20895
|
-
|
|
20896
|
-
|
|
20897
|
-
|
|
20748
|
+
flex: 1 1;
|
|
20749
|
+
height: inherit;
|
|
20750
|
+
justify-content: space-around;
|
|
20751
|
+
grid-template-columns: repeat(2, 1fr);
|
|
20752
|
+
grid-gap: 0px 24px;
|
|
20753
|
+
padding-inline-start: 36px;
|
|
20754
|
+
padding-inline-end: 36px;
|
|
20898
20755
|
}
|
|
20899
|
-
.v-date-picker-
|
|
20900
|
-
|
|
20756
|
+
.v-date-picker-months__content .v-btn {
|
|
20757
|
+
text-transform: none;
|
|
20758
|
+
padding-inline-start: 8px;
|
|
20759
|
+
padding-inline-end: 8px;
|
|
20760
|
+
}.v-date-picker-years {
|
|
20761
|
+
height: 288px;
|
|
20762
|
+
overflow-y: scroll;
|
|
20763
|
+
}
|
|
20764
|
+
|
|
20765
|
+
.v-date-picker-years__content {
|
|
20766
|
+
display: grid;
|
|
20767
|
+
flex: 1 1;
|
|
20768
|
+
justify-content: space-around;
|
|
20769
|
+
grid-template-columns: repeat(3, 1fr);
|
|
20770
|
+
gap: 8px 24px;
|
|
20771
|
+
padding-inline: 32px;
|
|
20772
|
+
}
|
|
20773
|
+
.v-date-picker-years__content .v-btn {
|
|
20774
|
+
padding-inline: 8px;
|
|
20775
|
+
}.v-date-picker-month {
|
|
20776
|
+
display: flex;
|
|
20777
|
+
justify-content: center;
|
|
20778
|
+
padding: 0 12px 8px;
|
|
20779
|
+
--v-date-picker-month-day-diff: 4px;
|
|
20780
|
+
}
|
|
20781
|
+
|
|
20782
|
+
.v-date-picker-month__weeks {
|
|
20783
|
+
display: grid;
|
|
20784
|
+
grid-template-rows: min-content min-content min-content min-content min-content min-content min-content;
|
|
20785
|
+
column-gap: 4px;
|
|
20786
|
+
font-size: 0.85rem;
|
|
20787
|
+
}
|
|
20788
|
+
.v-date-picker-month__weeks + .v-date-picker-month__days {
|
|
20789
|
+
grid-row-gap: 0;
|
|
20901
20790
|
}
|
|
20902
20791
|
|
|
20903
20792
|
.v-date-picker-month__weekday {
|
|
@@ -20938,81 +20827,6 @@ html.overflow-y-hidden {
|
|
|
20938
20827
|
|
|
20939
20828
|
.v-date-picker-month__day--hide-adjacent {
|
|
20940
20829
|
opacity: 0;
|
|
20941
|
-
}.v-date-picker-years {
|
|
20942
|
-
height: 288px;
|
|
20943
|
-
overflow-y: scroll;
|
|
20944
|
-
}
|
|
20945
|
-
|
|
20946
|
-
.v-date-picker-years__content {
|
|
20947
|
-
display: grid;
|
|
20948
|
-
flex: 1 1;
|
|
20949
|
-
justify-content: space-around;
|
|
20950
|
-
grid-template-columns: repeat(3, 1fr);
|
|
20951
|
-
gap: 8px 24px;
|
|
20952
|
-
padding-inline: 32px;
|
|
20953
|
-
}
|
|
20954
|
-
.v-date-picker-years__content .v-btn {
|
|
20955
|
-
padding-inline: 8px;
|
|
20956
|
-
}.v-date-picker-header {
|
|
20957
|
-
align-items: flex-end;
|
|
20958
|
-
height: 70px;
|
|
20959
|
-
display: grid;
|
|
20960
|
-
grid-template-areas: "prepend content append";
|
|
20961
|
-
grid-template-columns: min-content minmax(0, 1fr) min-content;
|
|
20962
|
-
overflow: hidden;
|
|
20963
|
-
padding-inline: 24px 12px;
|
|
20964
|
-
padding-bottom: 12px;
|
|
20965
|
-
}
|
|
20966
|
-
|
|
20967
|
-
.v-date-picker-header__append {
|
|
20968
|
-
grid-area: append;
|
|
20969
|
-
}
|
|
20970
|
-
|
|
20971
|
-
.v-date-picker-header__prepend {
|
|
20972
|
-
grid-area: prepend;
|
|
20973
|
-
padding-inline-start: 8px;
|
|
20974
|
-
}
|
|
20975
|
-
|
|
20976
|
-
.v-date-picker-header__content {
|
|
20977
|
-
align-items: center;
|
|
20978
|
-
display: inline-flex;
|
|
20979
|
-
font-size: 32px;
|
|
20980
|
-
line-height: 40px;
|
|
20981
|
-
grid-area: content;
|
|
20982
|
-
justify-content: space-between;
|
|
20983
|
-
}
|
|
20984
|
-
.v-date-picker-header--clickable .v-date-picker-header__content {
|
|
20985
|
-
cursor: pointer;
|
|
20986
|
-
}
|
|
20987
|
-
.v-date-picker-header--clickable .v-date-picker-header__content:not(:hover) {
|
|
20988
|
-
opacity: 0.7;
|
|
20989
|
-
}
|
|
20990
|
-
|
|
20991
|
-
.date-picker-header-transition-enter-active,
|
|
20992
|
-
.date-picker-header-reverse-transition-enter-active {
|
|
20993
|
-
transition-duration: 0.3s;
|
|
20994
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
20995
|
-
}
|
|
20996
|
-
.date-picker-header-transition-leave-active,
|
|
20997
|
-
.date-picker-header-reverse-transition-leave-active {
|
|
20998
|
-
transition-duration: 0.3s;
|
|
20999
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
21000
|
-
}
|
|
21001
|
-
|
|
21002
|
-
.date-picker-header-transition-enter-from {
|
|
21003
|
-
transform: translate(0, 100%);
|
|
21004
|
-
}
|
|
21005
|
-
.date-picker-header-transition-leave-to {
|
|
21006
|
-
opacity: 0;
|
|
21007
|
-
transform: translate(0, -100%);
|
|
21008
|
-
}
|
|
21009
|
-
|
|
21010
|
-
.date-picker-header-reverse-transition-enter-from {
|
|
21011
|
-
transform: translate(0, -100%);
|
|
21012
|
-
}
|
|
21013
|
-
.date-picker-header-reverse-transition-leave-to {
|
|
21014
|
-
opacity: 0;
|
|
21015
|
-
transform: translate(0, 100%);
|
|
21016
20830
|
}.v-dialog {
|
|
21017
20831
|
align-items: center;
|
|
21018
20832
|
justify-content: center;
|
|
@@ -21084,23 +20898,233 @@ html.overflow-y-hidden {
|
|
|
21084
20898
|
border-radius: 0;
|
|
21085
20899
|
}
|
|
21086
20900
|
|
|
21087
|
-
.v-dialog--scrollable > .v-overlay__content,
|
|
21088
|
-
.v-dialog--scrollable > .v-overlay__content > form {
|
|
21089
|
-
display: flex;
|
|
20901
|
+
.v-dialog--scrollable > .v-overlay__content,
|
|
20902
|
+
.v-dialog--scrollable > .v-overlay__content > form {
|
|
20903
|
+
display: flex;
|
|
20904
|
+
}
|
|
20905
|
+
.v-dialog--scrollable > .v-overlay__content > .v-card,
|
|
20906
|
+
.v-dialog--scrollable > .v-overlay__content > form > .v-card {
|
|
20907
|
+
display: flex;
|
|
20908
|
+
flex: 1 1 100%;
|
|
20909
|
+
flex-direction: column;
|
|
20910
|
+
max-height: 100%;
|
|
20911
|
+
max-width: 100%;
|
|
20912
|
+
}
|
|
20913
|
+
.v-dialog--scrollable > .v-overlay__content > .v-card > .v-card-text,
|
|
20914
|
+
.v-dialog--scrollable > .v-overlay__content > form > .v-card > .v-card-text {
|
|
20915
|
+
-webkit-backface-visibility: hidden;
|
|
20916
|
+
backface-visibility: hidden;
|
|
20917
|
+
overflow-y: auto;
|
|
20918
|
+
}.v-expansion-panel {
|
|
20919
|
+
background-color: rgb(var(--v-theme-surface));
|
|
20920
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
20921
|
+
}
|
|
20922
|
+
.v-expansion-panel:not(:first-child)::after {
|
|
20923
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
20924
|
+
}
|
|
20925
|
+
.v-expansion-panel--disabled .v-expansion-panel-title {
|
|
20926
|
+
color: rgba(var(--v-theme-on-surface), 0.26);
|
|
20927
|
+
}
|
|
20928
|
+
.v-expansion-panel--disabled .v-expansion-panel-title .v-expansion-panel-title__overlay {
|
|
20929
|
+
opacity: 0.4615384615;
|
|
20930
|
+
}
|
|
20931
|
+
|
|
20932
|
+
.v-expansion-panels {
|
|
20933
|
+
display: flex;
|
|
20934
|
+
flex-wrap: wrap;
|
|
20935
|
+
justify-content: center;
|
|
20936
|
+
list-style-type: none;
|
|
20937
|
+
padding: 0;
|
|
20938
|
+
width: 100%;
|
|
20939
|
+
position: relative;
|
|
20940
|
+
z-index: 1;
|
|
20941
|
+
}
|
|
20942
|
+
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
|
|
20943
|
+
border-bottom-left-radius: 0 !important;
|
|
20944
|
+
border-bottom-right-radius: 0 !important;
|
|
20945
|
+
}
|
|
20946
|
+
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
|
|
20947
|
+
border-top-left-radius: 0 !important;
|
|
20948
|
+
border-top-right-radius: 0 !important;
|
|
20949
|
+
}
|
|
20950
|
+
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :first-child:not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
|
|
20951
|
+
border-bottom-left-radius: 0 !important;
|
|
20952
|
+
border-bottom-right-radius: 0 !important;
|
|
20953
|
+
}
|
|
20954
|
+
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :last-child:not(:first-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
|
|
20955
|
+
border-top-left-radius: 0 !important;
|
|
20956
|
+
border-top-right-radius: 0 !important;
|
|
20957
|
+
}
|
|
20958
|
+
.v-expansion-panels--variant-accordion > :first-child {
|
|
20959
|
+
border-bottom-left-radius: 0 !important;
|
|
20960
|
+
border-bottom-right-radius: 0 !important;
|
|
20961
|
+
}
|
|
20962
|
+
.v-expansion-panels--variant-accordion > :last-child {
|
|
20963
|
+
border-top-left-radius: 0 !important;
|
|
20964
|
+
border-top-right-radius: 0 !important;
|
|
20965
|
+
}
|
|
20966
|
+
.v-expansion-panels--variant-accordion > :last-child .v-expansion-panel-title--active {
|
|
20967
|
+
border-bottom-left-radius: initial;
|
|
20968
|
+
border-bottom-right-radius: initial;
|
|
20969
|
+
}
|
|
20970
|
+
.v-expansion-panels--variant-accordion > :not(:first-child):not(:last-child) {
|
|
20971
|
+
border-radius: 0 !important;
|
|
20972
|
+
}
|
|
20973
|
+
.v-expansion-panels--variant-accordion .v-expansion-panel-title__overlay {
|
|
20974
|
+
transition: 0.3s border-radius cubic-bezier(0.4, 0, 0.2, 1);
|
|
20975
|
+
}
|
|
20976
|
+
|
|
20977
|
+
.v-expansion-panel {
|
|
20978
|
+
flex: 1 0 100%;
|
|
20979
|
+
max-width: 100%;
|
|
20980
|
+
position: relative;
|
|
20981
|
+
transition: 0.3s all cubic-bezier(0.4, 0, 0.2, 1);
|
|
20982
|
+
transition-property: margin-top, border-radius, border, max-width;
|
|
20983
|
+
border-radius: 4px;
|
|
20984
|
+
}
|
|
20985
|
+
.v-expansion-panel:not(:first-child)::after {
|
|
20986
|
+
border-top-style: solid;
|
|
20987
|
+
border-top-width: thin;
|
|
20988
|
+
content: "";
|
|
20989
|
+
left: 0;
|
|
20990
|
+
position: absolute;
|
|
20991
|
+
right: 0;
|
|
20992
|
+
top: 0;
|
|
20993
|
+
transition: 0.3s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
|
20994
|
+
}
|
|
20995
|
+
.v-expansion-panel--disabled .v-expansion-panel-title {
|
|
20996
|
+
pointer-events: none;
|
|
20997
|
+
}
|
|
20998
|
+
.v-expansion-panel--active:not(:first-child),
|
|
20999
|
+
.v-expansion-panel--active + .v-expansion-panel {
|
|
21000
|
+
margin-top: 16px;
|
|
21001
|
+
}
|
|
21002
|
+
.v-expansion-panel--active:not(:first-child)::after,
|
|
21003
|
+
.v-expansion-panel--active + .v-expansion-panel::after {
|
|
21004
|
+
opacity: 0;
|
|
21005
|
+
}
|
|
21006
|
+
.v-expansion-panel--active > .v-expansion-panel-title {
|
|
21007
|
+
border-bottom-left-radius: 0;
|
|
21008
|
+
border-bottom-right-radius: 0;
|
|
21009
|
+
}
|
|
21010
|
+
.v-expansion-panel--active > .v-expansion-panel-title:not(.v-expansion-panel-title--static) {
|
|
21011
|
+
min-height: 64px;
|
|
21012
|
+
}
|
|
21013
|
+
|
|
21014
|
+
.v-expansion-panel__shadow {
|
|
21015
|
+
position: absolute;
|
|
21016
|
+
top: 0;
|
|
21017
|
+
left: 0;
|
|
21018
|
+
width: 100%;
|
|
21019
|
+
height: 100%;
|
|
21020
|
+
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-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
21021
|
+
border-radius: inherit;
|
|
21022
|
+
z-index: -1;
|
|
21023
|
+
}
|
|
21024
|
+
|
|
21025
|
+
.v-expansion-panel-title {
|
|
21026
|
+
align-items: center;
|
|
21027
|
+
text-align: start;
|
|
21028
|
+
border-radius: inherit;
|
|
21029
|
+
display: flex;
|
|
21030
|
+
font-size: 0.9375rem;
|
|
21031
|
+
line-height: 1;
|
|
21032
|
+
min-height: 48px;
|
|
21033
|
+
outline: none;
|
|
21034
|
+
padding: 16px 24px;
|
|
21035
|
+
position: relative;
|
|
21036
|
+
transition: 0.3s min-height cubic-bezier(0.4, 0, 0.2, 1);
|
|
21037
|
+
width: 100%;
|
|
21038
|
+
justify-content: space-between;
|
|
21039
|
+
}
|
|
21040
|
+
.v-expansion-panel-title:hover > .v-expansion-panel-title__overlay {
|
|
21041
|
+
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
|
21042
|
+
}
|
|
21043
|
+
.v-expansion-panel-title:focus-visible > .v-expansion-panel-title__overlay {
|
|
21044
|
+
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
|
21045
|
+
}
|
|
21046
|
+
@supports not selector(:focus-visible) {
|
|
21047
|
+
.v-expansion-panel-title:focus > .v-expansion-panel-title__overlay {
|
|
21048
|
+
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
|
21049
|
+
}
|
|
21050
|
+
}
|
|
21051
|
+
.v-expansion-panel-title--focusable.v-expansion-panel-title--active .v-expansion-panel-title__overlay {
|
|
21052
|
+
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
|
21053
|
+
}
|
|
21054
|
+
.v-expansion-panel-title--focusable.v-expansion-panel-title--active:hover .v-expansion-panel-title__overlay {
|
|
21055
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
|
21056
|
+
}
|
|
21057
|
+
.v-expansion-panel-title--focusable.v-expansion-panel-title--active:focus-visible .v-expansion-panel-title__overlay {
|
|
21058
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
21059
|
+
}
|
|
21060
|
+
@supports not selector(:focus-visible) {
|
|
21061
|
+
.v-expansion-panel-title--focusable.v-expansion-panel-title--active:focus .v-expansion-panel-title__overlay {
|
|
21062
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
21063
|
+
}
|
|
21064
|
+
}
|
|
21065
|
+
|
|
21066
|
+
.v-expansion-panel-title__overlay {
|
|
21067
|
+
position: absolute;
|
|
21068
|
+
top: 0;
|
|
21069
|
+
left: 0;
|
|
21070
|
+
width: 100%;
|
|
21071
|
+
height: 100%;
|
|
21072
|
+
background-color: currentColor;
|
|
21073
|
+
border-radius: inherit;
|
|
21074
|
+
opacity: 0;
|
|
21075
|
+
}
|
|
21076
|
+
|
|
21077
|
+
.v-expansion-panel-title__icon {
|
|
21078
|
+
display: inline-flex;
|
|
21079
|
+
margin-bottom: -4px;
|
|
21080
|
+
margin-top: -4px;
|
|
21081
|
+
-webkit-user-select: none;
|
|
21082
|
+
user-select: none;
|
|
21083
|
+
margin-inline-start: auto;
|
|
21084
|
+
}
|
|
21085
|
+
|
|
21086
|
+
.v-expansion-panel-text {
|
|
21087
|
+
display: flex;
|
|
21088
|
+
}
|
|
21089
|
+
.v-expansion-panel-text__wrapper {
|
|
21090
|
+
padding: 8px 24px 16px;
|
|
21091
|
+
flex: 1 1 auto;
|
|
21092
|
+
max-width: 100%;
|
|
21093
|
+
}
|
|
21094
|
+
|
|
21095
|
+
.v-expansion-panels--variant-accordion > .v-expansion-panel {
|
|
21096
|
+
margin-top: 0;
|
|
21097
|
+
}
|
|
21098
|
+
.v-expansion-panels--variant-accordion > .v-expansion-panel::after {
|
|
21099
|
+
opacity: 1;
|
|
21100
|
+
}
|
|
21101
|
+
|
|
21102
|
+
.v-expansion-panels--variant-popout > .v-expansion-panel {
|
|
21103
|
+
max-width: calc(100% - 32px);
|
|
21104
|
+
}
|
|
21105
|
+
.v-expansion-panels--variant-popout > .v-expansion-panel--active {
|
|
21106
|
+
max-width: calc(100% + 16px);
|
|
21107
|
+
}
|
|
21108
|
+
|
|
21109
|
+
.v-expansion-panels--variant-inset > .v-expansion-panel {
|
|
21110
|
+
max-width: 100%;
|
|
21111
|
+
}
|
|
21112
|
+
.v-expansion-panels--variant-inset > .v-expansion-panel--active {
|
|
21113
|
+
max-width: calc(100% - 32px);
|
|
21114
|
+
}
|
|
21115
|
+
|
|
21116
|
+
.v-expansion-panels--flat > .v-expansion-panel::after {
|
|
21117
|
+
border-top: none;
|
|
21090
21118
|
}
|
|
21091
|
-
.v-
|
|
21092
|
-
|
|
21093
|
-
display: flex;
|
|
21094
|
-
flex: 1 1 100%;
|
|
21095
|
-
flex-direction: column;
|
|
21096
|
-
max-height: 100%;
|
|
21097
|
-
max-width: 100%;
|
|
21119
|
+
.v-expansion-panels--flat > .v-expansion-panel .v-expansion-panel__shadow {
|
|
21120
|
+
display: none;
|
|
21098
21121
|
}
|
|
21099
|
-
|
|
21100
|
-
.v-
|
|
21101
|
-
-
|
|
21102
|
-
|
|
21103
|
-
|
|
21122
|
+
|
|
21123
|
+
.v-expansion-panels--tile {
|
|
21124
|
+
border-radius: 0;
|
|
21125
|
+
}
|
|
21126
|
+
.v-expansion-panels--tile > .v-expansion-panel {
|
|
21127
|
+
border-radius: 0;
|
|
21104
21128
|
}/* region INPUT */
|
|
21105
21129
|
.v-field {
|
|
21106
21130
|
display: grid;
|
|
@@ -21669,27 +21693,7 @@ textarea.v-field__input::placeholder {
|
|
|
21669
21693
|
opacity: 0;
|
|
21670
21694
|
}
|
|
21671
21695
|
|
|
21672
|
-
/* endregion */.v-
|
|
21673
|
-
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
|
21674
|
-
.v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
|
21675
|
-
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
21676
|
-
top: 0px;
|
|
21677
|
-
}
|
|
21678
|
-
.v-file-input input[type=file] {
|
|
21679
|
-
height: 100%;
|
|
21680
|
-
left: 0;
|
|
21681
|
-
opacity: 0;
|
|
21682
|
-
position: absolute;
|
|
21683
|
-
top: 0;
|
|
21684
|
-
width: 100%;
|
|
21685
|
-
z-index: 1;
|
|
21686
|
-
}
|
|
21687
|
-
.v-file-input .v-input__details {
|
|
21688
|
-
padding-inline: 16px;
|
|
21689
|
-
}
|
|
21690
|
-
.v-input--plain-underlined.v-file-input .v-input__details {
|
|
21691
|
-
padding-inline: 0;
|
|
21692
|
-
}.v-footer {
|
|
21696
|
+
/* endregion */.v-footer {
|
|
21693
21697
|
align-items: center;
|
|
21694
21698
|
display: flex;
|
|
21695
21699
|
flex: 1 1 auto;
|
|
@@ -21717,6 +21721,26 @@ textarea.v-field__input::placeholder {
|
|
|
21717
21721
|
}
|
|
21718
21722
|
.v-footer--rounded {
|
|
21719
21723
|
border-radius: 4px;
|
|
21724
|
+
}.v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
|
21725
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
|
21726
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
|
21727
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
21728
|
+
top: 0px;
|
|
21729
|
+
}
|
|
21730
|
+
.v-file-input input[type=file] {
|
|
21731
|
+
height: 100%;
|
|
21732
|
+
left: 0;
|
|
21733
|
+
opacity: 0;
|
|
21734
|
+
position: absolute;
|
|
21735
|
+
top: 0;
|
|
21736
|
+
width: 100%;
|
|
21737
|
+
z-index: 1;
|
|
21738
|
+
}
|
|
21739
|
+
.v-file-input .v-input__details {
|
|
21740
|
+
padding-inline: 16px;
|
|
21741
|
+
}
|
|
21742
|
+
.v-input--plain-underlined.v-file-input .v-input__details {
|
|
21743
|
+
padding-inline: 0;
|
|
21720
21744
|
}.v-input {
|
|
21721
21745
|
display: grid;
|
|
21722
21746
|
flex: 1 1 auto;
|
|
@@ -21859,6 +21883,55 @@ textarea.v-field__input::placeholder {
|
|
|
21859
21883
|
|
|
21860
21884
|
.v-input--density-compact.v-input--plain-underlined .v-input__prepend, .v-input--density-compact.v-input--plain-underlined .v-input__append {
|
|
21861
21885
|
padding-top: calc(var(--v-input-padding-top) + 0px);
|
|
21886
|
+
}.v-icon {
|
|
21887
|
+
--v-icon-size-multiplier: 1;
|
|
21888
|
+
align-items: center;
|
|
21889
|
+
display: inline-flex;
|
|
21890
|
+
font-feature-settings: "liga";
|
|
21891
|
+
height: 1em;
|
|
21892
|
+
justify-content: center;
|
|
21893
|
+
letter-spacing: normal;
|
|
21894
|
+
line-height: 1;
|
|
21895
|
+
position: relative;
|
|
21896
|
+
text-indent: 0;
|
|
21897
|
+
text-align: center;
|
|
21898
|
+
-webkit-user-select: none;
|
|
21899
|
+
user-select: none;
|
|
21900
|
+
vertical-align: middle;
|
|
21901
|
+
width: 1em;
|
|
21902
|
+
min-width: 1em;
|
|
21903
|
+
}
|
|
21904
|
+
.v-icon--clickable {
|
|
21905
|
+
cursor: pointer;
|
|
21906
|
+
}
|
|
21907
|
+
.v-icon--size-x-small {
|
|
21908
|
+
font-size: calc(var(--v-icon-size-multiplier) * 1em);
|
|
21909
|
+
}
|
|
21910
|
+
.v-icon--size-small {
|
|
21911
|
+
font-size: calc(var(--v-icon-size-multiplier) * 1.25em);
|
|
21912
|
+
}
|
|
21913
|
+
.v-icon--size-default {
|
|
21914
|
+
font-size: calc(var(--v-icon-size-multiplier) * 1.5em);
|
|
21915
|
+
}
|
|
21916
|
+
.v-icon--size-large {
|
|
21917
|
+
font-size: calc(var(--v-icon-size-multiplier) * 1.75em);
|
|
21918
|
+
}
|
|
21919
|
+
.v-icon--size-x-large {
|
|
21920
|
+
font-size: calc(var(--v-icon-size-multiplier) * 2em);
|
|
21921
|
+
}
|
|
21922
|
+
|
|
21923
|
+
.v-icon__svg {
|
|
21924
|
+
fill: currentColor;
|
|
21925
|
+
width: 100%;
|
|
21926
|
+
height: 100%;
|
|
21927
|
+
}
|
|
21928
|
+
|
|
21929
|
+
.v-icon--start {
|
|
21930
|
+
margin-inline-end: 8px;
|
|
21931
|
+
}
|
|
21932
|
+
|
|
21933
|
+
.v-icon--end {
|
|
21934
|
+
margin-inline-start: 8px;
|
|
21862
21935
|
}.v-infinite-scroll--horizontal {
|
|
21863
21936
|
display: flex;
|
|
21864
21937
|
flex-direction: row;
|
|
@@ -21884,11 +21957,21 @@ textarea.v-field__input::placeholder {
|
|
|
21884
21957
|
display: flex;
|
|
21885
21958
|
justify-content: center;
|
|
21886
21959
|
padding: 8px;
|
|
21887
|
-
}.v-
|
|
21888
|
-
|
|
21889
|
-
|
|
21890
|
-
|
|
21891
|
-
|
|
21960
|
+
}.v-label {
|
|
21961
|
+
align-items: center;
|
|
21962
|
+
color: inherit;
|
|
21963
|
+
display: inline-flex;
|
|
21964
|
+
font-size: 1rem;
|
|
21965
|
+
letter-spacing: 0.009375em;
|
|
21966
|
+
min-width: 0;
|
|
21967
|
+
opacity: var(--v-medium-emphasis-opacity);
|
|
21968
|
+
overflow: hidden;
|
|
21969
|
+
text-overflow: ellipsis;
|
|
21970
|
+
white-space: nowrap;
|
|
21971
|
+
}
|
|
21972
|
+
|
|
21973
|
+
.v-label--clickable {
|
|
21974
|
+
cursor: pointer;
|
|
21892
21975
|
}.v-img {
|
|
21893
21976
|
--v-theme-overlay-multiplier: 3;
|
|
21894
21977
|
z-index: 0;
|
|
@@ -21925,72 +22008,129 @@ textarea.v-field__input::placeholder {
|
|
|
21925
22008
|
|
|
21926
22009
|
.v-img__gradient {
|
|
21927
22010
|
background-repeat: no-repeat;
|
|
21928
|
-
}.v-
|
|
21929
|
-
|
|
21930
|
-
|
|
21931
|
-
display: inline-flex;
|
|
21932
|
-
font-feature-settings: "liga";
|
|
21933
|
-
height: 1em;
|
|
21934
|
-
justify-content: center;
|
|
21935
|
-
letter-spacing: normal;
|
|
21936
|
-
line-height: 1;
|
|
22011
|
+
}.v-item-group {
|
|
22012
|
+
flex: 0 1 auto;
|
|
22013
|
+
max-width: 100%;
|
|
21937
22014
|
position: relative;
|
|
21938
|
-
|
|
21939
|
-
|
|
21940
|
-
|
|
21941
|
-
|
|
21942
|
-
|
|
21943
|
-
|
|
21944
|
-
|
|
22015
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
22016
|
+
}.v-locale-provider {
|
|
22017
|
+
display: contents;
|
|
22018
|
+
}.v-layout {
|
|
22019
|
+
--v-scrollbar-offset: 0px;
|
|
22020
|
+
display: flex;
|
|
22021
|
+
flex: 1 1 auto;
|
|
21945
22022
|
}
|
|
21946
|
-
.v-
|
|
21947
|
-
|
|
22023
|
+
.v-layout--full-height {
|
|
22024
|
+
--v-scrollbar-offset: inherit;
|
|
22025
|
+
height: 100%;
|
|
22026
|
+
}.v-layout-item {
|
|
22027
|
+
position: absolute;
|
|
22028
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
21948
22029
|
}
|
|
21949
|
-
|
|
21950
|
-
|
|
22030
|
+
|
|
22031
|
+
.v-layout-item--absolute {
|
|
22032
|
+
position: absolute;
|
|
22033
|
+
}.v-list {
|
|
22034
|
+
overflow: auto;
|
|
22035
|
+
padding: 8px 0;
|
|
22036
|
+
position: relative;
|
|
22037
|
+
outline: none;
|
|
22038
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
22039
|
+
border-style: solid;
|
|
22040
|
+
border-width: 0;
|
|
22041
|
+
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-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
22042
|
+
border-radius: 0;
|
|
22043
|
+
background: rgba(var(--v-theme-surface));
|
|
22044
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
21951
22045
|
}
|
|
21952
|
-
.v-
|
|
21953
|
-
|
|
22046
|
+
.v-list--border {
|
|
22047
|
+
border-width: thin;
|
|
22048
|
+
box-shadow: none;
|
|
21954
22049
|
}
|
|
21955
|
-
.v-
|
|
21956
|
-
|
|
22050
|
+
.v-list--disabled {
|
|
22051
|
+
pointer-events: none;
|
|
22052
|
+
-webkit-user-select: none;
|
|
22053
|
+
user-select: none;
|
|
21957
22054
|
}
|
|
21958
|
-
.v-
|
|
21959
|
-
|
|
22055
|
+
.v-list--nav {
|
|
22056
|
+
padding-inline: 8px;
|
|
21960
22057
|
}
|
|
21961
|
-
.v-
|
|
21962
|
-
|
|
22058
|
+
.v-list--rounded {
|
|
22059
|
+
border-radius: 4px;
|
|
22060
|
+
}
|
|
22061
|
+
.v-list--subheader {
|
|
22062
|
+
padding-top: 0;
|
|
21963
22063
|
}
|
|
21964
22064
|
|
|
21965
|
-
.v-
|
|
21966
|
-
|
|
21967
|
-
|
|
22065
|
+
.v-list-img {
|
|
22066
|
+
border-radius: inherit;
|
|
22067
|
+
display: flex;
|
|
21968
22068
|
height: 100%;
|
|
22069
|
+
left: 0;
|
|
22070
|
+
overflow: hidden;
|
|
22071
|
+
position: absolute;
|
|
22072
|
+
top: 0;
|
|
22073
|
+
width: 100%;
|
|
22074
|
+
z-index: -1;
|
|
21969
22075
|
}
|
|
21970
22076
|
|
|
21971
|
-
.v-
|
|
21972
|
-
|
|
22077
|
+
.v-list-subheader {
|
|
22078
|
+
align-items: center;
|
|
22079
|
+
background: inherit;
|
|
22080
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
|
22081
|
+
display: flex;
|
|
22082
|
+
font-size: 0.875rem;
|
|
22083
|
+
font-weight: 400;
|
|
22084
|
+
line-height: 1.375rem;
|
|
22085
|
+
padding-inline-end: 16px;
|
|
22086
|
+
min-height: 40px;
|
|
22087
|
+
transition: 0.2s min-height cubic-bezier(0.4, 0, 0.2, 1);
|
|
22088
|
+
}
|
|
22089
|
+
.v-list-subheader__text {
|
|
22090
|
+
overflow: hidden;
|
|
22091
|
+
text-overflow: ellipsis;
|
|
22092
|
+
white-space: nowrap;
|
|
22093
|
+
}
|
|
22094
|
+
.v-list--density-default .v-list-subheader {
|
|
22095
|
+
min-height: 40px;
|
|
22096
|
+
padding-inline-start: calc(16px + var(--indent-padding)) !important;
|
|
21973
22097
|
}
|
|
21974
22098
|
|
|
21975
|
-
.v-
|
|
21976
|
-
|
|
21977
|
-
|
|
21978
|
-
|
|
21979
|
-
|
|
21980
|
-
|
|
22099
|
+
.v-list--density-comfortable .v-list-subheader {
|
|
22100
|
+
min-height: 36px;
|
|
22101
|
+
padding-inline-start: calc(16px + var(--indent-padding)) !important;
|
|
22102
|
+
}
|
|
22103
|
+
|
|
22104
|
+
.v-list--density-compact .v-list-subheader {
|
|
22105
|
+
min-height: 32px;
|
|
22106
|
+
padding-inline-start: calc(16px + var(--indent-padding)) !important;
|
|
21981
22107
|
}
|
|
21982
|
-
|
|
21983
|
-
|
|
21984
|
-
|
|
21985
|
-
}
|
|
21986
|
-
|
|
21987
|
-
|
|
22108
|
+
|
|
22109
|
+
.v-list-subheader--inset {
|
|
22110
|
+
--indent-padding: 56px;
|
|
22111
|
+
}
|
|
22112
|
+
.v-list--nav .v-list-subheader {
|
|
22113
|
+
font-size: 0.75rem;
|
|
22114
|
+
}
|
|
22115
|
+
.v-list-subheader--sticky {
|
|
22116
|
+
background: inherit;
|
|
22117
|
+
left: 0;
|
|
22118
|
+
position: sticky;
|
|
22119
|
+
top: 0;
|
|
22120
|
+
z-index: 1;
|
|
21988
22121
|
}
|
|
21989
22122
|
|
|
21990
|
-
.v-
|
|
22123
|
+
.v-list__overlay {
|
|
22124
|
+
background-color: currentColor;
|
|
22125
|
+
border-radius: inherit;
|
|
22126
|
+
bottom: 0;
|
|
22127
|
+
left: 0;
|
|
22128
|
+
opacity: 0;
|
|
22129
|
+
pointer-events: none;
|
|
21991
22130
|
position: absolute;
|
|
21992
|
-
|
|
21993
|
-
|
|
22131
|
+
right: 0;
|
|
22132
|
+
top: 0;
|
|
22133
|
+
transition: opacity 0.2s ease-in-out;
|
|
21994
22134
|
}.v-list-item {
|
|
21995
22135
|
align-items: center;
|
|
21996
22136
|
display: grid;
|
|
@@ -22442,122 +22582,6 @@ textarea.v-field__input::placeholder {
|
|
|
22442
22582
|
}
|
|
22443
22583
|
.v-list-group__header.v-list-item--active:hover .v-list-item__overlay {
|
|
22444
22584
|
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
|
22445
|
-
}.v-list {
|
|
22446
|
-
overflow: auto;
|
|
22447
|
-
padding: 8px 0;
|
|
22448
|
-
position: relative;
|
|
22449
|
-
outline: none;
|
|
22450
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
22451
|
-
border-style: solid;
|
|
22452
|
-
border-width: 0;
|
|
22453
|
-
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-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
22454
|
-
border-radius: 0;
|
|
22455
|
-
background: rgba(var(--v-theme-surface));
|
|
22456
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
22457
|
-
}
|
|
22458
|
-
.v-list--border {
|
|
22459
|
-
border-width: thin;
|
|
22460
|
-
box-shadow: none;
|
|
22461
|
-
}
|
|
22462
|
-
.v-list--disabled {
|
|
22463
|
-
pointer-events: none;
|
|
22464
|
-
-webkit-user-select: none;
|
|
22465
|
-
user-select: none;
|
|
22466
|
-
}
|
|
22467
|
-
.v-list--nav {
|
|
22468
|
-
padding-inline: 8px;
|
|
22469
|
-
}
|
|
22470
|
-
.v-list--rounded {
|
|
22471
|
-
border-radius: 4px;
|
|
22472
|
-
}
|
|
22473
|
-
.v-list--subheader {
|
|
22474
|
-
padding-top: 0;
|
|
22475
|
-
}
|
|
22476
|
-
|
|
22477
|
-
.v-list-img {
|
|
22478
|
-
border-radius: inherit;
|
|
22479
|
-
display: flex;
|
|
22480
|
-
height: 100%;
|
|
22481
|
-
left: 0;
|
|
22482
|
-
overflow: hidden;
|
|
22483
|
-
position: absolute;
|
|
22484
|
-
top: 0;
|
|
22485
|
-
width: 100%;
|
|
22486
|
-
z-index: -1;
|
|
22487
|
-
}
|
|
22488
|
-
|
|
22489
|
-
.v-list-subheader {
|
|
22490
|
-
align-items: center;
|
|
22491
|
-
background: inherit;
|
|
22492
|
-
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
|
22493
|
-
display: flex;
|
|
22494
|
-
font-size: 0.875rem;
|
|
22495
|
-
font-weight: 400;
|
|
22496
|
-
line-height: 1.375rem;
|
|
22497
|
-
padding-inline-end: 16px;
|
|
22498
|
-
min-height: 40px;
|
|
22499
|
-
transition: 0.2s min-height cubic-bezier(0.4, 0, 0.2, 1);
|
|
22500
|
-
}
|
|
22501
|
-
.v-list-subheader__text {
|
|
22502
|
-
overflow: hidden;
|
|
22503
|
-
text-overflow: ellipsis;
|
|
22504
|
-
white-space: nowrap;
|
|
22505
|
-
}
|
|
22506
|
-
.v-list--density-default .v-list-subheader {
|
|
22507
|
-
min-height: 40px;
|
|
22508
|
-
padding-inline-start: calc(16px + var(--indent-padding)) !important;
|
|
22509
|
-
}
|
|
22510
|
-
|
|
22511
|
-
.v-list--density-comfortable .v-list-subheader {
|
|
22512
|
-
min-height: 36px;
|
|
22513
|
-
padding-inline-start: calc(16px + var(--indent-padding)) !important;
|
|
22514
|
-
}
|
|
22515
|
-
|
|
22516
|
-
.v-list--density-compact .v-list-subheader {
|
|
22517
|
-
min-height: 32px;
|
|
22518
|
-
padding-inline-start: calc(16px + var(--indent-padding)) !important;
|
|
22519
|
-
}
|
|
22520
|
-
|
|
22521
|
-
.v-list-subheader--inset {
|
|
22522
|
-
--indent-padding: 56px;
|
|
22523
|
-
}
|
|
22524
|
-
.v-list--nav .v-list-subheader {
|
|
22525
|
-
font-size: 0.75rem;
|
|
22526
|
-
}
|
|
22527
|
-
.v-list-subheader--sticky {
|
|
22528
|
-
background: inherit;
|
|
22529
|
-
left: 0;
|
|
22530
|
-
position: sticky;
|
|
22531
|
-
top: 0;
|
|
22532
|
-
z-index: 1;
|
|
22533
|
-
}
|
|
22534
|
-
|
|
22535
|
-
.v-list__overlay {
|
|
22536
|
-
background-color: currentColor;
|
|
22537
|
-
border-radius: inherit;
|
|
22538
|
-
bottom: 0;
|
|
22539
|
-
left: 0;
|
|
22540
|
-
opacity: 0;
|
|
22541
|
-
pointer-events: none;
|
|
22542
|
-
position: absolute;
|
|
22543
|
-
right: 0;
|
|
22544
|
-
top: 0;
|
|
22545
|
-
transition: opacity 0.2s ease-in-out;
|
|
22546
|
-
}.v-label {
|
|
22547
|
-
align-items: center;
|
|
22548
|
-
color: inherit;
|
|
22549
|
-
display: inline-flex;
|
|
22550
|
-
font-size: 1rem;
|
|
22551
|
-
letter-spacing: 0.009375em;
|
|
22552
|
-
min-width: 0;
|
|
22553
|
-
opacity: var(--v-medium-emphasis-opacity);
|
|
22554
|
-
overflow: hidden;
|
|
22555
|
-
text-overflow: ellipsis;
|
|
22556
|
-
white-space: nowrap;
|
|
22557
|
-
}
|
|
22558
|
-
|
|
22559
|
-
.v-label--clickable {
|
|
22560
|
-
cursor: pointer;
|
|
22561
22585
|
}.v-main {
|
|
22562
22586
|
flex: 1 0 auto;
|
|
22563
22587
|
max-width: 100%;
|
|
@@ -22586,6 +22610,19 @@ textarea.v-field__input::placeholder {
|
|
|
22586
22610
|
--v-layout-right: 0px;
|
|
22587
22611
|
--v-layout-top: 0px;
|
|
22588
22612
|
--v-layout-bottom: 0px;
|
|
22613
|
+
}.v-menu > .v-overlay__content {
|
|
22614
|
+
display: flex;
|
|
22615
|
+
flex-direction: column;
|
|
22616
|
+
border-radius: 4px;
|
|
22617
|
+
}
|
|
22618
|
+
.v-menu > .v-overlay__content > .v-card,
|
|
22619
|
+
.v-menu > .v-overlay__content > .v-sheet,
|
|
22620
|
+
.v-menu > .v-overlay__content > .v-list {
|
|
22621
|
+
background: rgb(var(--v-theme-surface));
|
|
22622
|
+
border-radius: inherit;
|
|
22623
|
+
overflow: auto;
|
|
22624
|
+
height: 100%;
|
|
22625
|
+
box-shadow: 0px 5px 5px -3px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 8px 10px 1px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 3px 14px 2px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
22589
22626
|
}.v-navigation-drawer {
|
|
22590
22627
|
-webkit-overflow-scrolling: touch;
|
|
22591
22628
|
background: rgb(var(--v-theme-surface));
|
|
@@ -22656,125 +22693,50 @@ textarea.v-field__input::placeholder {
|
|
|
22656
22693
|
|
|
22657
22694
|
.v-navigation-drawer__img {
|
|
22658
22695
|
height: 100%;
|
|
22659
|
-
left: 0;
|
|
22660
|
-
position: absolute;
|
|
22661
|
-
top: 0;
|
|
22662
|
-
width: 100%;
|
|
22663
|
-
z-index: -1;
|
|
22664
|
-
}
|
|
22665
|
-
.v-navigation-drawer__img img {
|
|
22666
|
-
height: inherit;
|
|
22667
|
-
object-fit: cover;
|
|
22668
|
-
width: inherit;
|
|
22669
|
-
}
|
|
22670
|
-
|
|
22671
|
-
.v-navigation-drawer__scrim {
|
|
22672
|
-
position: absolute;
|
|
22673
|
-
top: 0;
|
|
22674
|
-
left: 0;
|
|
22675
|
-
width: 100%;
|
|
22676
|
-
height: 100%;
|
|
22677
|
-
background: black;
|
|
22678
|
-
opacity: 0.2;
|
|
22679
|
-
transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
22680
|
-
z-index: 1;
|
|
22681
|
-
}
|
|
22682
|
-
|
|
22683
|
-
.v-navigation-drawer__prepend,
|
|
22684
|
-
.v-navigation-drawer__append {
|
|
22685
|
-
flex: none;
|
|
22686
|
-
overflow: hidden;
|
|
22687
|
-
}.v-messages {
|
|
22688
|
-
flex: 1 1 auto;
|
|
22689
|
-
font-size: 12px;
|
|
22690
|
-
min-height: 14px;
|
|
22691
|
-
min-width: 1px;
|
|
22692
|
-
opacity: var(--v-medium-emphasis-opacity);
|
|
22693
|
-
position: relative;
|
|
22694
|
-
}
|
|
22695
|
-
.v-messages__message {
|
|
22696
|
-
line-height: 12px;
|
|
22697
|
-
word-break: break-word;
|
|
22698
|
-
overflow-wrap: break-word;
|
|
22699
|
-
word-wrap: break-word;
|
|
22700
|
-
-webkit-hyphens: auto;
|
|
22701
|
-
hyphens: auto;
|
|
22702
|
-
transition-duration: 150ms;
|
|
22703
|
-
}.v-otp-input {
|
|
22704
|
-
border-radius: 4px;
|
|
22705
|
-
align-items: center;
|
|
22706
|
-
display: flex;
|
|
22707
|
-
justify-content: center;
|
|
22708
|
-
padding: 0.5rem 0;
|
|
22709
|
-
position: relative;
|
|
22710
|
-
}
|
|
22711
|
-
.v-otp-input .v-field {
|
|
22712
|
-
height: 100%;
|
|
22713
|
-
}
|
|
22714
|
-
|
|
22715
|
-
.v-otp-input__divider {
|
|
22716
|
-
margin: 0 8px;
|
|
22717
|
-
}
|
|
22718
|
-
|
|
22719
|
-
.v-otp-input__content {
|
|
22720
|
-
align-items: center;
|
|
22721
|
-
display: flex;
|
|
22722
|
-
gap: 0.5rem;
|
|
22723
|
-
height: 64px;
|
|
22724
|
-
padding: 0.5rem;
|
|
22725
|
-
justify-content: center;
|
|
22726
|
-
max-width: 320px;
|
|
22727
|
-
position: relative;
|
|
22728
|
-
border-radius: inherit;
|
|
22729
|
-
}
|
|
22730
|
-
.v-otp-input--divided .v-otp-input__content {
|
|
22731
|
-
max-width: 360px;
|
|
22732
|
-
}
|
|
22733
|
-
|
|
22734
|
-
.v-otp-input__field {
|
|
22735
|
-
color: inherit;
|
|
22736
|
-
font-size: 1.25rem;
|
|
22737
|
-
height: 100%;
|
|
22738
|
-
outline: none;
|
|
22739
|
-
text-align: center;
|
|
22740
|
-
width: 100%;
|
|
22741
|
-
}
|
|
22742
|
-
.v-otp-input__field[type=number]::-webkit-outer-spin-button, .v-otp-input__field[type=number]::-webkit-inner-spin-button {
|
|
22743
|
-
-webkit-appearance: none;
|
|
22744
|
-
margin: 0;
|
|
22745
|
-
}
|
|
22746
|
-
.v-otp-input__field[type=number] {
|
|
22747
|
-
-moz-appearance: textfield;
|
|
22748
|
-
}
|
|
22749
|
-
|
|
22750
|
-
.v-otp-input__loader {
|
|
22751
|
-
align-items: center;
|
|
22752
|
-
display: flex;
|
|
22753
|
-
height: 100%;
|
|
22754
|
-
justify-content: center;
|
|
22696
|
+
left: 0;
|
|
22697
|
+
position: absolute;
|
|
22698
|
+
top: 0;
|
|
22755
22699
|
width: 100%;
|
|
22700
|
+
z-index: -1;
|
|
22756
22701
|
}
|
|
22757
|
-
.v-
|
|
22758
|
-
|
|
22759
|
-
|
|
22760
|
-
|
|
22761
|
-
flex-direction: column;
|
|
22762
|
-
border-radius: 4px;
|
|
22702
|
+
.v-navigation-drawer__img img {
|
|
22703
|
+
height: inherit;
|
|
22704
|
+
object-fit: cover;
|
|
22705
|
+
width: inherit;
|
|
22763
22706
|
}
|
|
22764
|
-
|
|
22765
|
-
.v-
|
|
22766
|
-
|
|
22767
|
-
|
|
22768
|
-
|
|
22769
|
-
|
|
22707
|
+
|
|
22708
|
+
.v-navigation-drawer__scrim {
|
|
22709
|
+
position: absolute;
|
|
22710
|
+
top: 0;
|
|
22711
|
+
left: 0;
|
|
22712
|
+
width: 100%;
|
|
22770
22713
|
height: 100%;
|
|
22771
|
-
|
|
22772
|
-
|
|
22773
|
-
|
|
22714
|
+
background: black;
|
|
22715
|
+
opacity: 0.2;
|
|
22716
|
+
transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
22717
|
+
z-index: 1;
|
|
22718
|
+
}
|
|
22719
|
+
|
|
22720
|
+
.v-navigation-drawer__prepend,
|
|
22721
|
+
.v-navigation-drawer__append {
|
|
22722
|
+
flex: none;
|
|
22774
22723
|
overflow: hidden;
|
|
22724
|
+
}.v-messages {
|
|
22725
|
+
flex: 1 1 auto;
|
|
22726
|
+
font-size: 12px;
|
|
22727
|
+
min-height: 14px;
|
|
22728
|
+
min-width: 1px;
|
|
22729
|
+
opacity: var(--v-medium-emphasis-opacity);
|
|
22730
|
+
position: relative;
|
|
22775
22731
|
}
|
|
22776
|
-
.v-
|
|
22777
|
-
|
|
22732
|
+
.v-messages__message {
|
|
22733
|
+
line-height: 12px;
|
|
22734
|
+
word-break: break-word;
|
|
22735
|
+
overflow-wrap: break-word;
|
|
22736
|
+
word-wrap: break-word;
|
|
22737
|
+
-webkit-hyphens: auto;
|
|
22738
|
+
hyphens: auto;
|
|
22739
|
+
transition-duration: 150ms;
|
|
22778
22740
|
}.v-overlay-container {
|
|
22779
22741
|
contain: layout;
|
|
22780
22742
|
left: 0;
|
|
@@ -22838,116 +22800,68 @@ html.v-overlay-scroll-blocked {
|
|
|
22838
22800
|
|
|
22839
22801
|
.v-overlay--scroll-blocked {
|
|
22840
22802
|
padding-inline-end: var(--v-scrollbar-offset);
|
|
22841
|
-
}.v-
|
|
22842
|
-
|
|
22843
|
-
list-style-type: none;
|
|
22844
|
-
justify-content: center;
|
|
22845
|
-
width: 100%;
|
|
22846
|
-
}
|
|
22847
|
-
.v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
|
|
22848
|
-
margin: 0.3rem;
|
|
22849
|
-
}.v-progress-circular {
|
|
22803
|
+
}.v-otp-input {
|
|
22804
|
+
border-radius: 4px;
|
|
22850
22805
|
align-items: center;
|
|
22851
|
-
display:
|
|
22806
|
+
display: flex;
|
|
22852
22807
|
justify-content: center;
|
|
22808
|
+
padding: 0.5rem 0;
|
|
22853
22809
|
position: relative;
|
|
22854
|
-
vertical-align: middle;
|
|
22855
22810
|
}
|
|
22856
|
-
.v-
|
|
22857
|
-
width: 100%;
|
|
22811
|
+
.v-otp-input .v-field {
|
|
22858
22812
|
height: 100%;
|
|
22859
|
-
margin: auto;
|
|
22860
|
-
position: absolute;
|
|
22861
|
-
top: 0;
|
|
22862
|
-
bottom: 0;
|
|
22863
|
-
left: 0;
|
|
22864
|
-
right: 0;
|
|
22865
|
-
z-index: 0;
|
|
22866
22813
|
}
|
|
22867
22814
|
|
|
22868
|
-
.v-
|
|
22815
|
+
.v-otp-input__divider {
|
|
22816
|
+
margin: 0 8px;
|
|
22817
|
+
}
|
|
22818
|
+
|
|
22819
|
+
.v-otp-input__content {
|
|
22869
22820
|
align-items: center;
|
|
22870
22821
|
display: flex;
|
|
22822
|
+
gap: 0.5rem;
|
|
22823
|
+
height: 64px;
|
|
22824
|
+
padding: 0.5rem;
|
|
22871
22825
|
justify-content: center;
|
|
22826
|
+
max-width: 320px;
|
|
22827
|
+
position: relative;
|
|
22828
|
+
border-radius: inherit;
|
|
22872
22829
|
}
|
|
22873
|
-
|
|
22874
|
-
|
|
22875
|
-
color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
22876
|
-
stroke: currentColor;
|
|
22877
|
-
z-index: 1;
|
|
22878
|
-
}
|
|
22879
|
-
|
|
22880
|
-
.v-progress-circular__overlay {
|
|
22881
|
-
stroke: currentColor;
|
|
22882
|
-
transition: all 0.2s ease-in-out, stroke-width 0s;
|
|
22883
|
-
z-index: 2;
|
|
22884
|
-
}
|
|
22885
|
-
|
|
22886
|
-
.v-progress-circular--size-x-small {
|
|
22887
|
-
height: 16px;
|
|
22888
|
-
width: 16px;
|
|
22889
|
-
}
|
|
22890
|
-
.v-progress-circular--size-small {
|
|
22891
|
-
height: 24px;
|
|
22892
|
-
width: 24px;
|
|
22893
|
-
}
|
|
22894
|
-
.v-progress-circular--size-default {
|
|
22895
|
-
height: 32px;
|
|
22896
|
-
width: 32px;
|
|
22897
|
-
}
|
|
22898
|
-
.v-progress-circular--size-large {
|
|
22899
|
-
height: 48px;
|
|
22900
|
-
width: 48px;
|
|
22901
|
-
}
|
|
22902
|
-
.v-progress-circular--size-x-large {
|
|
22903
|
-
height: 64px;
|
|
22904
|
-
width: 64px;
|
|
22830
|
+
.v-otp-input--divided .v-otp-input__content {
|
|
22831
|
+
max-width: 360px;
|
|
22905
22832
|
}
|
|
22906
22833
|
|
|
22907
|
-
.v-
|
|
22908
|
-
|
|
22909
|
-
|
|
22910
|
-
|
|
22911
|
-
|
|
22912
|
-
|
|
22913
|
-
|
|
22914
|
-
stroke-dasharray: 25, 200;
|
|
22915
|
-
stroke-dashoffset: 0;
|
|
22916
|
-
stroke-linecap: round;
|
|
22917
|
-
transform-origin: center center;
|
|
22918
|
-
transform: rotate(-90deg);
|
|
22834
|
+
.v-otp-input__field {
|
|
22835
|
+
color: inherit;
|
|
22836
|
+
font-size: 1.25rem;
|
|
22837
|
+
height: 100%;
|
|
22838
|
+
outline: none;
|
|
22839
|
+
text-align: center;
|
|
22840
|
+
width: 100%;
|
|
22919
22841
|
}
|
|
22920
|
-
|
|
22921
|
-
|
|
22922
|
-
|
|
22842
|
+
.v-otp-input__field[type=number]::-webkit-outer-spin-button, .v-otp-input__field[type=number]::-webkit-inner-spin-button {
|
|
22843
|
+
-webkit-appearance: none;
|
|
22844
|
+
margin: 0;
|
|
22923
22845
|
}
|
|
22924
|
-
.v-
|
|
22925
|
-
|
|
22846
|
+
.v-otp-input__field[type=number] {
|
|
22847
|
+
-moz-appearance: textfield;
|
|
22926
22848
|
}
|
|
22927
22849
|
|
|
22928
|
-
.v-
|
|
22929
|
-
|
|
22930
|
-
|
|
22850
|
+
.v-otp-input__loader {
|
|
22851
|
+
align-items: center;
|
|
22852
|
+
display: flex;
|
|
22853
|
+
height: 100%;
|
|
22854
|
+
justify-content: center;
|
|
22855
|
+
width: 100%;
|
|
22931
22856
|
}
|
|
22932
|
-
|
|
22933
|
-
|
|
22934
|
-
|
|
22935
|
-
|
|
22936
|
-
|
|
22937
|
-
}
|
|
22938
|
-
50% {
|
|
22939
|
-
stroke-dasharray: 100, 200;
|
|
22940
|
-
stroke-dashoffset: -15px;
|
|
22941
|
-
}
|
|
22942
|
-
100% {
|
|
22943
|
-
stroke-dasharray: 100, 200;
|
|
22944
|
-
stroke-dashoffset: -124px;
|
|
22945
|
-
}
|
|
22857
|
+
.v-otp-input__loader .v-progress-linear {
|
|
22858
|
+
position: absolute;
|
|
22859
|
+
}.v-parallax {
|
|
22860
|
+
position: relative;
|
|
22861
|
+
overflow: hidden;
|
|
22946
22862
|
}
|
|
22947
|
-
|
|
22948
|
-
|
|
22949
|
-
transform: rotate(270deg);
|
|
22950
|
-
}
|
|
22863
|
+
.v-parallax--active > .v-img__img {
|
|
22864
|
+
will-change: transform;
|
|
22951
22865
|
}.v-progress-linear {
|
|
22952
22866
|
background: transparent;
|
|
22953
22867
|
overflow: hidden;
|
|
@@ -23158,18 +23072,14 @@ html.v-overlay-scroll-blocked {
|
|
|
23158
23072
|
0% {
|
|
23159
23073
|
background-position-x: var(--v-progress-linear-height);
|
|
23160
23074
|
}
|
|
23161
|
-
}.v-
|
|
23162
|
-
|
|
23163
|
-
|
|
23164
|
-
|
|
23165
|
-
|
|
23166
|
-
}
|
|
23167
|
-
.v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
|
|
23168
|
-
padding-inline-start: 6px;
|
|
23169
|
-
margin-top: 8px;
|
|
23075
|
+
}.v-pagination__list {
|
|
23076
|
+
display: inline-flex;
|
|
23077
|
+
list-style-type: none;
|
|
23078
|
+
justify-content: center;
|
|
23079
|
+
width: 100%;
|
|
23170
23080
|
}
|
|
23171
|
-
.v-
|
|
23172
|
-
|
|
23081
|
+
.v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
|
|
23082
|
+
margin: 0.3rem;
|
|
23173
23083
|
}.v-slider .v-slider__container input {
|
|
23174
23084
|
cursor: default;
|
|
23175
23085
|
padding: 0;
|
|
@@ -23267,68 +23177,32 @@ html.v-overlay-scroll-blocked {
|
|
|
23267
23177
|
}
|
|
23268
23178
|
.v-rating__item--half {
|
|
23269
23179
|
overflow: hidden;
|
|
23270
|
-
position: absolute;
|
|
23271
|
-
-webkit-clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
|
|
23272
|
-
clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
|
|
23273
|
-
z-index: 1;
|
|
23274
|
-
}
|
|
23275
|
-
.v-rating__item--half .v-btn__overlay, .v-rating__item--half:hover .v-btn__overlay {
|
|
23276
|
-
opacity: 0;
|
|
23277
|
-
}
|
|
23278
|
-
|
|
23279
|
-
.v-rating__hidden {
|
|
23280
|
-
height: 0;
|
|
23281
|
-
opacity: 0;
|
|
23282
|
-
position: absolute;
|
|
23283
|
-
width: 0;
|
|
23284
|
-
}.v-select .v-field .v-text-field__prefix,
|
|
23285
|
-
.v-select .v-field .v-text-field__suffix,
|
|
23286
|
-
.v-select .v-field .v-field__input, .v-select .v-field.v-field {
|
|
23287
|
-
cursor: pointer;
|
|
23288
|
-
}
|
|
23289
|
-
.v-select .v-field .v-field__input > input {
|
|
23290
|
-
align-self: flex-start;
|
|
23291
|
-
opacity: 1;
|
|
23292
|
-
flex: 0 0;
|
|
23293
|
-
position: absolute;
|
|
23294
|
-
width: 100%;
|
|
23295
|
-
transition: none;
|
|
23296
|
-
pointer-events: none;
|
|
23297
|
-
caret-color: transparent;
|
|
23298
|
-
}
|
|
23299
|
-
.v-select .v-field--dirty .v-select__selection {
|
|
23300
|
-
margin-inline-end: 2px;
|
|
23301
|
-
}
|
|
23302
|
-
.v-select .v-select__selection-text {
|
|
23303
|
-
overflow: hidden;
|
|
23304
|
-
text-overflow: ellipsis;
|
|
23305
|
-
white-space: nowrap;
|
|
23306
|
-
}
|
|
23307
|
-
.v-select__content {
|
|
23308
|
-
overflow: hidden;
|
|
23309
|
-
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-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
23310
|
-
border-radius: 4px;
|
|
23311
|
-
}
|
|
23312
|
-
.v-select__selection {
|
|
23313
|
-
display: inline-flex;
|
|
23314
|
-
align-items: center;
|
|
23315
|
-
letter-spacing: inherit;
|
|
23316
|
-
line-height: inherit;
|
|
23317
|
-
max-width: 100%;
|
|
23180
|
+
position: absolute;
|
|
23181
|
+
-webkit-clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
|
|
23182
|
+
clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
|
|
23183
|
+
z-index: 1;
|
|
23318
23184
|
}
|
|
23319
|
-
.v-
|
|
23320
|
-
|
|
23185
|
+
.v-rating__item--half .v-btn__overlay, .v-rating__item--half:hover .v-btn__overlay {
|
|
23186
|
+
opacity: 0;
|
|
23321
23187
|
}
|
|
23322
|
-
|
|
23188
|
+
|
|
23189
|
+
.v-rating__hidden {
|
|
23190
|
+
height: 0;
|
|
23323
23191
|
opacity: 0;
|
|
23192
|
+
position: absolute;
|
|
23193
|
+
width: 0;
|
|
23194
|
+
}.v-radio-group > .v-input__control {
|
|
23195
|
+
flex-direction: column;
|
|
23324
23196
|
}
|
|
23325
|
-
.v-
|
|
23326
|
-
margin-inline-start:
|
|
23327
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
23197
|
+
.v-radio-group > .v-input__control > .v-label {
|
|
23198
|
+
margin-inline-start: 16px;
|
|
23328
23199
|
}
|
|
23329
|
-
.v-
|
|
23330
|
-
|
|
23331
|
-
|
|
23200
|
+
.v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
|
|
23201
|
+
padding-inline-start: 6px;
|
|
23202
|
+
margin-top: 8px;
|
|
23203
|
+
}
|
|
23204
|
+
.v-radio-group .v-input__details {
|
|
23205
|
+
padding-inline: 16px;
|
|
23332
23206
|
}.v-selection-control {
|
|
23333
23207
|
align-items: center;
|
|
23334
23208
|
contain: layout;
|
|
@@ -23430,6 +23304,14 @@ html.v-overlay-scroll-blocked {
|
|
|
23430
23304
|
}
|
|
23431
23305
|
.v-selection-control--focus-visible .v-selection-control__input::before {
|
|
23432
23306
|
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
|
23307
|
+
}.v-selection-control-group {
|
|
23308
|
+
grid-area: control;
|
|
23309
|
+
display: flex;
|
|
23310
|
+
flex-direction: column;
|
|
23311
|
+
}
|
|
23312
|
+
.v-selection-control-group--inline {
|
|
23313
|
+
flex-direction: row;
|
|
23314
|
+
flex-wrap: wrap;
|
|
23433
23315
|
}.v-responsive {
|
|
23434
23316
|
display: flex;
|
|
23435
23317
|
flex: 1 0 auto;
|
|
@@ -23456,42 +23338,54 @@ html.v-overlay-scroll-blocked {
|
|
|
23456
23338
|
flex: 1 0 0px;
|
|
23457
23339
|
transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
23458
23340
|
pointer-events: none;
|
|
23459
|
-
}.v-
|
|
23460
|
-
|
|
23461
|
-
|
|
23462
|
-
|
|
23341
|
+
}.v-select .v-field .v-text-field__prefix,
|
|
23342
|
+
.v-select .v-field .v-text-field__suffix,
|
|
23343
|
+
.v-select .v-field .v-field__input, .v-select .v-field.v-field {
|
|
23344
|
+
cursor: pointer;
|
|
23463
23345
|
}
|
|
23464
|
-
.v-
|
|
23465
|
-
|
|
23466
|
-
|
|
23467
|
-
|
|
23468
|
-
|
|
23469
|
-
|
|
23470
|
-
|
|
23471
|
-
|
|
23472
|
-
|
|
23473
|
-
border-radius: 0;
|
|
23474
|
-
background: rgb(var(--v-theme-surface));
|
|
23475
|
-
color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
|
|
23346
|
+
.v-select .v-field .v-field__input > input {
|
|
23347
|
+
align-self: flex-start;
|
|
23348
|
+
opacity: 1;
|
|
23349
|
+
flex: 0 0;
|
|
23350
|
+
position: absolute;
|
|
23351
|
+
width: 100%;
|
|
23352
|
+
transition: none;
|
|
23353
|
+
pointer-events: none;
|
|
23354
|
+
caret-color: transparent;
|
|
23476
23355
|
}
|
|
23477
|
-
.v-
|
|
23478
|
-
|
|
23479
|
-
box-shadow: none;
|
|
23356
|
+
.v-select .v-field--dirty .v-select__selection {
|
|
23357
|
+
margin-inline-end: 2px;
|
|
23480
23358
|
}
|
|
23481
|
-
.v-
|
|
23482
|
-
|
|
23359
|
+
.v-select .v-select__selection-text {
|
|
23360
|
+
overflow: hidden;
|
|
23361
|
+
text-overflow: ellipsis;
|
|
23362
|
+
white-space: nowrap;
|
|
23483
23363
|
}
|
|
23484
|
-
.v-
|
|
23485
|
-
|
|
23364
|
+
.v-select__content {
|
|
23365
|
+
overflow: hidden;
|
|
23366
|
+
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-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
23367
|
+
border-radius: 4px;
|
|
23486
23368
|
}
|
|
23487
|
-
.v-
|
|
23488
|
-
|
|
23369
|
+
.v-select__selection {
|
|
23370
|
+
display: inline-flex;
|
|
23371
|
+
align-items: center;
|
|
23372
|
+
letter-spacing: inherit;
|
|
23373
|
+
line-height: inherit;
|
|
23374
|
+
max-width: 100%;
|
|
23489
23375
|
}
|
|
23490
|
-
.v-
|
|
23491
|
-
|
|
23376
|
+
.v-select .v-select__selection:first-child {
|
|
23377
|
+
margin-inline-start: 0;
|
|
23492
23378
|
}
|
|
23493
|
-
.v-
|
|
23494
|
-
|
|
23379
|
+
.v-select--selected .v-field .v-field__input > input {
|
|
23380
|
+
opacity: 0;
|
|
23381
|
+
}
|
|
23382
|
+
.v-select__menu-icon {
|
|
23383
|
+
margin-inline-start: 4px;
|
|
23384
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
23385
|
+
}
|
|
23386
|
+
.v-select--active-menu .v-select__menu-icon {
|
|
23387
|
+
opacity: var(--v-high-emphasis-opacity);
|
|
23388
|
+
transform: rotate(180deg);
|
|
23495
23389
|
}.v-skeleton-loader {
|
|
23496
23390
|
align-items: center;
|
|
23497
23391
|
background: rgb(var(--v-theme-surface));
|
|
@@ -23704,17 +23598,164 @@ html.v-overlay-scroll-blocked {
|
|
|
23704
23598
|
.v-skeleton-loader--is-loading {
|
|
23705
23599
|
overflow: hidden;
|
|
23706
23600
|
}
|
|
23707
|
-
.v-skeleton-loader--tile {
|
|
23708
|
-
border-radius: 0;
|
|
23601
|
+
.v-skeleton-loader--tile {
|
|
23602
|
+
border-radius: 0;
|
|
23603
|
+
}
|
|
23604
|
+
.v-skeleton-loader--tile .v-skeleton-loader__bone {
|
|
23605
|
+
border-radius: 0;
|
|
23606
|
+
}
|
|
23607
|
+
|
|
23608
|
+
@keyframes loading {
|
|
23609
|
+
100% {
|
|
23610
|
+
transform: translateX(100%);
|
|
23611
|
+
}
|
|
23612
|
+
}.v-sheet {
|
|
23613
|
+
display: block;
|
|
23614
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
23615
|
+
border-style: solid;
|
|
23616
|
+
border-width: 0;
|
|
23617
|
+
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-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
23618
|
+
border-radius: 0;
|
|
23619
|
+
background: rgb(var(--v-theme-surface));
|
|
23620
|
+
color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
|
|
23621
|
+
}
|
|
23622
|
+
.v-sheet--border {
|
|
23623
|
+
border-width: thin;
|
|
23624
|
+
box-shadow: none;
|
|
23625
|
+
}
|
|
23626
|
+
.v-sheet--absolute {
|
|
23627
|
+
position: absolute;
|
|
23628
|
+
}
|
|
23629
|
+
.v-sheet--fixed {
|
|
23630
|
+
position: fixed;
|
|
23631
|
+
}
|
|
23632
|
+
.v-sheet--relative {
|
|
23633
|
+
position: relative;
|
|
23634
|
+
}
|
|
23635
|
+
.v-sheet--sticky {
|
|
23636
|
+
position: sticky;
|
|
23637
|
+
}
|
|
23638
|
+
.v-sheet--rounded {
|
|
23639
|
+
border-radius: 4px;
|
|
23640
|
+
}.v-snackbar {
|
|
23641
|
+
justify-content: center;
|
|
23642
|
+
z-index: 10000;
|
|
23643
|
+
margin: 8px;
|
|
23644
|
+
margin-inline-end: calc(8px + var(--v-scrollbar-offset));
|
|
23645
|
+
}
|
|
23646
|
+
.v-snackbar:not(.v-snackbar--centered):not(.v-snackbar--top) {
|
|
23647
|
+
align-items: flex-end;
|
|
23648
|
+
}
|
|
23649
|
+
.v-snackbar__wrapper {
|
|
23650
|
+
align-items: center;
|
|
23651
|
+
display: flex;
|
|
23652
|
+
max-width: 672px;
|
|
23653
|
+
min-height: 48px;
|
|
23654
|
+
min-width: 344px;
|
|
23655
|
+
overflow: hidden;
|
|
23656
|
+
padding: 0;
|
|
23657
|
+
border-radius: 4px;
|
|
23658
|
+
}
|
|
23659
|
+
.v-snackbar--variant-plain, .v-snackbar--variant-outlined, .v-snackbar--variant-text, .v-snackbar--variant-tonal {
|
|
23660
|
+
background: transparent;
|
|
23661
|
+
color: inherit;
|
|
23662
|
+
}
|
|
23663
|
+
.v-snackbar--variant-plain {
|
|
23664
|
+
opacity: 0.62;
|
|
23665
|
+
}
|
|
23666
|
+
.v-snackbar--variant-plain:focus, .v-snackbar--variant-plain:hover {
|
|
23667
|
+
opacity: 1;
|
|
23668
|
+
}
|
|
23669
|
+
.v-snackbar--variant-plain .v-snackbar__overlay {
|
|
23670
|
+
display: none;
|
|
23671
|
+
}
|
|
23672
|
+
.v-snackbar--variant-elevated, .v-snackbar--variant-flat {
|
|
23673
|
+
background: rgb(var(--v-theme-surface-variant));
|
|
23674
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
|
23675
|
+
}
|
|
23676
|
+
.v-snackbar--variant-elevated {
|
|
23677
|
+
box-shadow: 0px 3px 5px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 6px 10px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 18px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
23678
|
+
}
|
|
23679
|
+
.v-snackbar--variant-flat {
|
|
23680
|
+
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-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
23681
|
+
}
|
|
23682
|
+
.v-snackbar--variant-outlined {
|
|
23683
|
+
border: thin solid currentColor;
|
|
23684
|
+
}
|
|
23685
|
+
.v-snackbar--variant-text .v-snackbar__overlay {
|
|
23686
|
+
background: currentColor;
|
|
23687
|
+
}
|
|
23688
|
+
.v-snackbar--variant-tonal .v-snackbar__underlay {
|
|
23689
|
+
background: currentColor;
|
|
23690
|
+
opacity: var(--v-activated-opacity);
|
|
23691
|
+
border-radius: inherit;
|
|
23692
|
+
position: absolute;
|
|
23693
|
+
top: 0;
|
|
23694
|
+
right: 0;
|
|
23695
|
+
bottom: 0;
|
|
23696
|
+
left: 0;
|
|
23697
|
+
pointer-events: none;
|
|
23698
|
+
}
|
|
23699
|
+
|
|
23700
|
+
.v-snackbar__content {
|
|
23701
|
+
flex-grow: 1;
|
|
23702
|
+
font-size: 0.875rem;
|
|
23703
|
+
font-weight: 400;
|
|
23704
|
+
letter-spacing: 0.0178571429em;
|
|
23705
|
+
line-height: 1.25rem;
|
|
23706
|
+
margin-right: auto;
|
|
23707
|
+
padding: 14px 16px;
|
|
23708
|
+
text-align: initial;
|
|
23709
|
+
}
|
|
23710
|
+
.v-snackbar__actions {
|
|
23711
|
+
align-items: center;
|
|
23712
|
+
align-self: center;
|
|
23713
|
+
display: flex;
|
|
23714
|
+
margin-inline-end: 8px;
|
|
23715
|
+
}
|
|
23716
|
+
.v-snackbar__actions > .v-btn {
|
|
23717
|
+
padding: 0 8px;
|
|
23718
|
+
min-width: auto;
|
|
23719
|
+
}
|
|
23720
|
+
.v-snackbar__timer {
|
|
23721
|
+
width: 100%;
|
|
23722
|
+
position: absolute;
|
|
23723
|
+
top: 0;
|
|
23724
|
+
}
|
|
23725
|
+
.v-snackbar__timer .v-progress-linear {
|
|
23726
|
+
transition: 0.2s linear;
|
|
23727
|
+
}
|
|
23728
|
+
.v-snackbar--absolute {
|
|
23729
|
+
position: absolute;
|
|
23730
|
+
z-index: 1;
|
|
23731
|
+
}
|
|
23732
|
+
.v-snackbar--multi-line .v-snackbar__wrapper {
|
|
23733
|
+
min-height: 68px;
|
|
23734
|
+
}
|
|
23735
|
+
.v-snackbar--vertical .v-snackbar__wrapper {
|
|
23736
|
+
flex-direction: column;
|
|
23737
|
+
}
|
|
23738
|
+
.v-snackbar--vertical .v-snackbar__wrapper .v-snackbar__actions {
|
|
23739
|
+
align-self: flex-end;
|
|
23740
|
+
margin-bottom: 8px;
|
|
23741
|
+
}
|
|
23742
|
+
|
|
23743
|
+
.v-snackbar-transition-enter-active, .v-snackbar-transition-leave-active {
|
|
23744
|
+
transition-duration: 0.15s;
|
|
23745
|
+
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
23746
|
+
}
|
|
23747
|
+
.v-snackbar-transition-enter-active {
|
|
23748
|
+
transition-property: opacity, transform;
|
|
23749
|
+
}
|
|
23750
|
+
.v-snackbar-transition-enter-from {
|
|
23751
|
+
opacity: 0;
|
|
23752
|
+
transform: scale(0.8);
|
|
23709
23753
|
}
|
|
23710
|
-
.v-
|
|
23711
|
-
|
|
23754
|
+
.v-snackbar-transition-leave-active {
|
|
23755
|
+
transition-property: opacity;
|
|
23712
23756
|
}
|
|
23713
|
-
|
|
23714
|
-
|
|
23715
|
-
100% {
|
|
23716
|
-
transform: translateX(100%);
|
|
23717
|
-
}
|
|
23757
|
+
.v-snackbar-transition-leave-to {
|
|
23758
|
+
opacity: 0;
|
|
23718
23759
|
}.v-slide-group {
|
|
23719
23760
|
display: flex;
|
|
23720
23761
|
overflow: hidden;
|
|
@@ -23757,120 +23798,6 @@ html.v-overlay-scroll-blocked {
|
|
|
23757
23798
|
.v-slide-group--vertical .v-slide-group__container,
|
|
23758
23799
|
.v-slide-group--vertical .v-slide-group__content {
|
|
23759
23800
|
flex-direction: column;
|
|
23760
|
-
}.v-switch .v-label {
|
|
23761
|
-
padding-inline-start: 10px;
|
|
23762
|
-
}
|
|
23763
|
-
.v-switch .v-switch__thumb {
|
|
23764
|
-
background-color: rgb(var(--v-theme-surface-bright));
|
|
23765
|
-
color: rgb(var(--v-theme-on-surface-bright));
|
|
23766
|
-
}
|
|
23767
|
-
|
|
23768
|
-
.v-switch__loader {
|
|
23769
|
-
display: flex;
|
|
23770
|
-
}
|
|
23771
|
-
.v-switch__loader .v-progress-circular {
|
|
23772
|
-
color: rgb(var(--v-theme-surface));
|
|
23773
|
-
}
|
|
23774
|
-
|
|
23775
|
-
.v-switch__track,
|
|
23776
|
-
.v-switch__thumb {
|
|
23777
|
-
transition: none;
|
|
23778
|
-
}
|
|
23779
|
-
.v-selection-control--error:not(.v-selection-control--disabled) .v-switch__track,
|
|
23780
|
-
.v-selection-control--error:not(.v-selection-control--disabled) .v-switch__thumb {
|
|
23781
|
-
background-color: rgb(var(--v-theme-error));
|
|
23782
|
-
color: rgb(var(--v-theme-on-error));
|
|
23783
|
-
}
|
|
23784
|
-
|
|
23785
|
-
.v-switch__track-true {
|
|
23786
|
-
margin-inline-end: auto;
|
|
23787
|
-
}
|
|
23788
|
-
.v-selection-control:not(.v-selection-control--dirty) .v-switch__track-true {
|
|
23789
|
-
opacity: 0;
|
|
23790
|
-
}
|
|
23791
|
-
|
|
23792
|
-
.v-switch__track-false {
|
|
23793
|
-
margin-inline-start: auto;
|
|
23794
|
-
}
|
|
23795
|
-
.v-selection-control--dirty .v-switch__track-false {
|
|
23796
|
-
opacity: 0;
|
|
23797
|
-
}
|
|
23798
|
-
|
|
23799
|
-
.v-switch__track {
|
|
23800
|
-
display: inline-flex;
|
|
23801
|
-
align-items: center;
|
|
23802
|
-
font-size: 0.5rem;
|
|
23803
|
-
padding: 0 5px;
|
|
23804
|
-
background-color: rgb(var(--v-theme-surface-variant));
|
|
23805
|
-
border-radius: 9999px;
|
|
23806
|
-
height: 14px;
|
|
23807
|
-
opacity: 0.6;
|
|
23808
|
-
min-width: 36px;
|
|
23809
|
-
cursor: pointer;
|
|
23810
|
-
transition: 0.2s background-color cubic-bezier(0.4, 0, 0.2, 1);
|
|
23811
|
-
}
|
|
23812
|
-
.v-switch--inset .v-switch__track {
|
|
23813
|
-
border-radius: 9999px;
|
|
23814
|
-
font-size: 0.75rem;
|
|
23815
|
-
height: 32px;
|
|
23816
|
-
min-width: 52px;
|
|
23817
|
-
}
|
|
23818
|
-
|
|
23819
|
-
.v-switch__thumb {
|
|
23820
|
-
align-items: center;
|
|
23821
|
-
border-radius: 50%;
|
|
23822
|
-
display: flex;
|
|
23823
|
-
font-size: 0.75rem;
|
|
23824
|
-
height: 20px;
|
|
23825
|
-
justify-content: center;
|
|
23826
|
-
width: 20px;
|
|
23827
|
-
pointer-events: none;
|
|
23828
|
-
transition: 0.15s 0.05s transform cubic-bezier(0, 0, 0.2, 1), 0.2s color cubic-bezier(0.4, 0, 0.2, 1), 0.2s background-color cubic-bezier(0.4, 0, 0.2, 1);
|
|
23829
|
-
position: relative;
|
|
23830
|
-
overflow: hidden;
|
|
23831
|
-
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-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
23832
|
-
}
|
|
23833
|
-
.v-switch--inset .v-switch__thumb {
|
|
23834
|
-
height: 24px;
|
|
23835
|
-
width: 24px;
|
|
23836
|
-
transform: scale(0.6666666667);
|
|
23837
|
-
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-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
23838
|
-
}
|
|
23839
|
-
.v-switch--inset .v-switch__thumb--filled {
|
|
23840
|
-
transform: none;
|
|
23841
|
-
}
|
|
23842
|
-
.v-switch--inset .v-selection-control--dirty .v-switch__thumb {
|
|
23843
|
-
transform: none;
|
|
23844
|
-
transition: 0.15s 0.05s transform cubic-bezier(0, 0, 0.2, 1);
|
|
23845
|
-
}
|
|
23846
|
-
|
|
23847
|
-
.v-switch.v-input {
|
|
23848
|
-
flex: 0 1 auto;
|
|
23849
|
-
}
|
|
23850
|
-
.v-switch .v-selection-control {
|
|
23851
|
-
min-height: var(--v-input-control-height);
|
|
23852
|
-
}
|
|
23853
|
-
.v-switch .v-selection-control__input {
|
|
23854
|
-
border-radius: 50%;
|
|
23855
|
-
transition: 0.2s transform cubic-bezier(0.4, 0, 0.2, 1);
|
|
23856
|
-
transform: translateX(-10px);
|
|
23857
|
-
position: absolute;
|
|
23858
|
-
}
|
|
23859
|
-
.v-switch .v-selection-control__input .v-icon {
|
|
23860
|
-
position: absolute;
|
|
23861
|
-
}
|
|
23862
|
-
.v-switch .v-selection-control--dirty .v-selection-control__input {
|
|
23863
|
-
transform: translateX(10px);
|
|
23864
|
-
}
|
|
23865
|
-
.v-switch.v-switch--indeterminate .v-selection-control__input {
|
|
23866
|
-
transform: scale(0.8);
|
|
23867
|
-
}
|
|
23868
|
-
.v-switch.v-switch--indeterminate .v-switch__thumb {
|
|
23869
|
-
transform: scale(0.75);
|
|
23870
|
-
box-shadow: none;
|
|
23871
|
-
}
|
|
23872
|
-
.v-switch.v-switch--inset .v-selection-control__wrapper {
|
|
23873
|
-
width: auto;
|
|
23874
23801
|
}.v-stepper.v-sheet {
|
|
23875
23802
|
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-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
23876
23803
|
border-radius: 4px;
|
|
@@ -23945,167 +23872,48 @@ html.v-overlay-scroll-blocked {
|
|
|
23945
23872
|
.v-stepper--alt-labels .v-stepper-item {
|
|
23946
23873
|
flex-direction: column;
|
|
23947
23874
|
justify-content: flex-start;
|
|
23948
|
-
align-items: center;
|
|
23949
|
-
flex-basis: 175px;
|
|
23950
|
-
}
|
|
23951
|
-
|
|
23952
|
-
.v-stepper-item__avatar.v-avatar {
|
|
23953
|
-
background: rgba(var(--v-theme-surface-variant), var(--v-medium-emphasis-opacity));
|
|
23954
|
-
color: rgb(var(--v-theme-on-surface-variant));
|
|
23955
|
-
font-size: 0.75rem;
|
|
23956
|
-
margin-inline-end: 8px;
|
|
23957
|
-
}
|
|
23958
|
-
.v-stepper-item__avatar.v-avatar .v-icon {
|
|
23959
|
-
font-size: 0.875rem;
|
|
23960
|
-
}
|
|
23961
|
-
.v-stepper-item--selected .v-stepper-item__avatar.v-avatar, .v-stepper-item--complete .v-stepper-item__avatar.v-avatar {
|
|
23962
|
-
background: rgb(var(--v-theme-surface-variant));
|
|
23963
|
-
}
|
|
23964
|
-
.v-stepper-item--error .v-stepper-item__avatar.v-avatar {
|
|
23965
|
-
background: rgb(var(--v-theme-error));
|
|
23966
|
-
}
|
|
23967
|
-
.v-stepper--alt-labels .v-stepper-item__avatar.v-avatar {
|
|
23968
|
-
margin-bottom: 16px;
|
|
23969
|
-
margin-inline-end: 0;
|
|
23970
|
-
}
|
|
23971
|
-
|
|
23972
|
-
.v-stepper-item__title {
|
|
23973
|
-
line-height: 1;
|
|
23974
|
-
}
|
|
23975
|
-
.v-stepper--mobile .v-stepper-item__title {
|
|
23976
|
-
display: none;
|
|
23977
|
-
}
|
|
23978
|
-
|
|
23979
|
-
.v-stepper-item__subtitle {
|
|
23980
|
-
font-size: 0.75rem;
|
|
23981
|
-
text-align: left;
|
|
23982
|
-
line-height: 1;
|
|
23983
|
-
opacity: var(--v-medium-emphasis-opacity);
|
|
23984
|
-
}
|
|
23985
|
-
.v-stepper--alt-labels .v-stepper-item__subtitle {
|
|
23986
|
-
text-align: center;
|
|
23987
|
-
}
|
|
23988
|
-
.v-stepper--mobile .v-stepper-item__subtitle {
|
|
23989
|
-
display: none;
|
|
23990
|
-
}.v-snackbar {
|
|
23991
|
-
justify-content: center;
|
|
23992
|
-
z-index: 10000;
|
|
23993
|
-
margin: 8px;
|
|
23994
|
-
margin-inline-end: calc(8px + var(--v-scrollbar-offset));
|
|
23995
|
-
}
|
|
23996
|
-
.v-snackbar:not(.v-snackbar--centered):not(.v-snackbar--top) {
|
|
23997
|
-
align-items: flex-end;
|
|
23998
|
-
}
|
|
23999
|
-
.v-snackbar__wrapper {
|
|
24000
|
-
align-items: center;
|
|
24001
|
-
display: flex;
|
|
24002
|
-
max-width: 672px;
|
|
24003
|
-
min-height: 48px;
|
|
24004
|
-
min-width: 344px;
|
|
24005
|
-
overflow: hidden;
|
|
24006
|
-
padding: 0;
|
|
24007
|
-
border-radius: 4px;
|
|
24008
|
-
}
|
|
24009
|
-
.v-snackbar--variant-plain, .v-snackbar--variant-outlined, .v-snackbar--variant-text, .v-snackbar--variant-tonal {
|
|
24010
|
-
background: transparent;
|
|
24011
|
-
color: inherit;
|
|
24012
|
-
}
|
|
24013
|
-
.v-snackbar--variant-plain {
|
|
24014
|
-
opacity: 0.62;
|
|
24015
|
-
}
|
|
24016
|
-
.v-snackbar--variant-plain:focus, .v-snackbar--variant-plain:hover {
|
|
24017
|
-
opacity: 1;
|
|
24018
|
-
}
|
|
24019
|
-
.v-snackbar--variant-plain .v-snackbar__overlay {
|
|
24020
|
-
display: none;
|
|
24021
|
-
}
|
|
24022
|
-
.v-snackbar--variant-elevated, .v-snackbar--variant-flat {
|
|
24023
|
-
background: rgb(var(--v-theme-surface-variant));
|
|
24024
|
-
color: rgb(var(--v-theme-on-surface-variant));
|
|
24025
|
-
}
|
|
24026
|
-
.v-snackbar--variant-elevated {
|
|
24027
|
-
box-shadow: 0px 3px 5px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 6px 10px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 18px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
24028
|
-
}
|
|
24029
|
-
.v-snackbar--variant-flat {
|
|
24030
|
-
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-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
24031
|
-
}
|
|
24032
|
-
.v-snackbar--variant-outlined {
|
|
24033
|
-
border: thin solid currentColor;
|
|
24034
|
-
}
|
|
24035
|
-
.v-snackbar--variant-text .v-snackbar__overlay {
|
|
24036
|
-
background: currentColor;
|
|
24037
|
-
}
|
|
24038
|
-
.v-snackbar--variant-tonal .v-snackbar__underlay {
|
|
24039
|
-
background: currentColor;
|
|
24040
|
-
opacity: var(--v-activated-opacity);
|
|
24041
|
-
border-radius: inherit;
|
|
24042
|
-
position: absolute;
|
|
24043
|
-
top: 0;
|
|
24044
|
-
right: 0;
|
|
24045
|
-
bottom: 0;
|
|
24046
|
-
left: 0;
|
|
24047
|
-
pointer-events: none;
|
|
24048
|
-
}
|
|
24049
|
-
|
|
24050
|
-
.v-snackbar__content {
|
|
24051
|
-
flex-grow: 1;
|
|
24052
|
-
font-size: 0.875rem;
|
|
24053
|
-
font-weight: 400;
|
|
24054
|
-
letter-spacing: 0.0178571429em;
|
|
24055
|
-
line-height: 1.25rem;
|
|
24056
|
-
margin-right: auto;
|
|
24057
|
-
padding: 14px 16px;
|
|
24058
|
-
text-align: initial;
|
|
24059
|
-
}
|
|
24060
|
-
.v-snackbar__actions {
|
|
24061
|
-
align-items: center;
|
|
24062
|
-
align-self: center;
|
|
24063
|
-
display: flex;
|
|
24064
|
-
margin-inline-end: 8px;
|
|
24065
|
-
}
|
|
24066
|
-
.v-snackbar__actions > .v-btn {
|
|
24067
|
-
padding: 0 8px;
|
|
24068
|
-
min-width: auto;
|
|
24069
|
-
}
|
|
24070
|
-
.v-snackbar__timer {
|
|
24071
|
-
width: 100%;
|
|
24072
|
-
position: absolute;
|
|
24073
|
-
top: 0;
|
|
23875
|
+
align-items: center;
|
|
23876
|
+
flex-basis: 175px;
|
|
24074
23877
|
}
|
|
24075
|
-
|
|
24076
|
-
|
|
23878
|
+
|
|
23879
|
+
.v-stepper-item__avatar.v-avatar {
|
|
23880
|
+
background: rgba(var(--v-theme-surface-variant), var(--v-medium-emphasis-opacity));
|
|
23881
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
|
23882
|
+
font-size: 0.75rem;
|
|
23883
|
+
margin-inline-end: 8px;
|
|
24077
23884
|
}
|
|
24078
|
-
.v-
|
|
24079
|
-
|
|
24080
|
-
z-index: 1;
|
|
23885
|
+
.v-stepper-item__avatar.v-avatar .v-icon {
|
|
23886
|
+
font-size: 0.875rem;
|
|
24081
23887
|
}
|
|
24082
|
-
.v-
|
|
24083
|
-
|
|
23888
|
+
.v-stepper-item--selected .v-stepper-item__avatar.v-avatar, .v-stepper-item--complete .v-stepper-item__avatar.v-avatar {
|
|
23889
|
+
background: rgb(var(--v-theme-surface-variant));
|
|
24084
23890
|
}
|
|
24085
|
-
.v-
|
|
24086
|
-
|
|
23891
|
+
.v-stepper-item--error .v-stepper-item__avatar.v-avatar {
|
|
23892
|
+
background: rgb(var(--v-theme-error));
|
|
24087
23893
|
}
|
|
24088
|
-
.v-
|
|
24089
|
-
|
|
24090
|
-
margin-
|
|
23894
|
+
.v-stepper--alt-labels .v-stepper-item__avatar.v-avatar {
|
|
23895
|
+
margin-bottom: 16px;
|
|
23896
|
+
margin-inline-end: 0;
|
|
24091
23897
|
}
|
|
24092
23898
|
|
|
24093
|
-
.v-
|
|
24094
|
-
|
|
24095
|
-
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
23899
|
+
.v-stepper-item__title {
|
|
23900
|
+
line-height: 1;
|
|
24096
23901
|
}
|
|
24097
|
-
.v-
|
|
24098
|
-
|
|
23902
|
+
.v-stepper--mobile .v-stepper-item__title {
|
|
23903
|
+
display: none;
|
|
24099
23904
|
}
|
|
24100
|
-
|
|
24101
|
-
|
|
24102
|
-
|
|
23905
|
+
|
|
23906
|
+
.v-stepper-item__subtitle {
|
|
23907
|
+
font-size: 0.75rem;
|
|
23908
|
+
text-align: left;
|
|
23909
|
+
line-height: 1;
|
|
23910
|
+
opacity: var(--v-medium-emphasis-opacity);
|
|
24103
23911
|
}
|
|
24104
|
-
.v-
|
|
24105
|
-
|
|
23912
|
+
.v-stepper--alt-labels .v-stepper-item__subtitle {
|
|
23913
|
+
text-align: center;
|
|
24106
23914
|
}
|
|
24107
|
-
.v-
|
|
24108
|
-
|
|
23915
|
+
.v-stepper--mobile .v-stepper-item__subtitle {
|
|
23916
|
+
display: none;
|
|
24109
23917
|
}.v-system-bar {
|
|
24110
23918
|
align-items: center;
|
|
24111
23919
|
display: flex;
|
|
@@ -24143,35 +23951,124 @@ html.v-overlay-scroll-blocked {
|
|
|
24143
23951
|
}
|
|
24144
23952
|
.v-system-bar:not(.v-system-bar--absolute) {
|
|
24145
23953
|
padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
|
|
24146
|
-
}.v-
|
|
24147
|
-
|
|
24148
|
-
border-radius: 0;
|
|
24149
|
-
min-width: 90px;
|
|
23954
|
+
}.v-switch .v-label {
|
|
23955
|
+
padding-inline-start: 10px;
|
|
24150
23956
|
}
|
|
24151
|
-
|
|
24152
|
-
|
|
23957
|
+
|
|
23958
|
+
.v-switch__loader {
|
|
23959
|
+
display: flex;
|
|
24153
23960
|
}
|
|
24154
|
-
.v-
|
|
24155
|
-
|
|
23961
|
+
.v-switch__loader .v-progress-circular {
|
|
23962
|
+
color: rgb(var(--v-theme-surface));
|
|
24156
23963
|
}
|
|
24157
23964
|
|
|
24158
|
-
.v-
|
|
24159
|
-
|
|
24160
|
-
|
|
24161
|
-
|
|
24162
|
-
|
|
24163
|
-
|
|
24164
|
-
background:
|
|
24165
|
-
|
|
23965
|
+
.v-switch__track,
|
|
23966
|
+
.v-switch__thumb {
|
|
23967
|
+
transition: none;
|
|
23968
|
+
}
|
|
23969
|
+
.v-selection-control--error:not(.v-selection-control--disabled) .v-switch__track,
|
|
23970
|
+
.v-selection-control--error:not(.v-selection-control--disabled) .v-switch__thumb {
|
|
23971
|
+
background-color: rgb(var(--v-theme-error));
|
|
23972
|
+
color: rgb(var(--v-theme-on-error));
|
|
23973
|
+
}
|
|
23974
|
+
|
|
23975
|
+
.v-switch__track-true {
|
|
23976
|
+
margin-inline-end: auto;
|
|
23977
|
+
}
|
|
23978
|
+
.v-selection-control:not(.v-selection-control--dirty) .v-switch__track-true {
|
|
24166
23979
|
opacity: 0;
|
|
24167
23980
|
}
|
|
24168
|
-
|
|
24169
|
-
|
|
23981
|
+
|
|
23982
|
+
.v-switch__track-false {
|
|
23983
|
+
margin-inline-start: auto;
|
|
24170
23984
|
}
|
|
24171
|
-
.v-
|
|
24172
|
-
|
|
24173
|
-
|
|
24174
|
-
|
|
23985
|
+
.v-selection-control--dirty .v-switch__track-false {
|
|
23986
|
+
opacity: 0;
|
|
23987
|
+
}
|
|
23988
|
+
|
|
23989
|
+
.v-switch__track {
|
|
23990
|
+
display: inline-flex;
|
|
23991
|
+
align-items: center;
|
|
23992
|
+
font-size: 0.5rem;
|
|
23993
|
+
padding: 0 5px;
|
|
23994
|
+
background-color: rgb(var(--v-theme-surface-variant));
|
|
23995
|
+
border-radius: 9999px;
|
|
23996
|
+
height: 14px;
|
|
23997
|
+
opacity: 0.6;
|
|
23998
|
+
min-width: 36px;
|
|
23999
|
+
cursor: pointer;
|
|
24000
|
+
transition: 0.2s background-color cubic-bezier(0.4, 0, 0.2, 1);
|
|
24001
|
+
}
|
|
24002
|
+
.v-switch--inset .v-switch__track {
|
|
24003
|
+
border-radius: 9999px;
|
|
24004
|
+
font-size: 0.75rem;
|
|
24005
|
+
height: 32px;
|
|
24006
|
+
min-width: 52px;
|
|
24007
|
+
}
|
|
24008
|
+
|
|
24009
|
+
.v-switch__thumb {
|
|
24010
|
+
align-items: center;
|
|
24011
|
+
background-color: rgb(var(--v-theme-surface-bright));
|
|
24012
|
+
color: rgb(var(--v-theme-on-surface-bright));
|
|
24013
|
+
border-radius: 50%;
|
|
24014
|
+
display: flex;
|
|
24015
|
+
font-size: 0.75rem;
|
|
24016
|
+
height: 20px;
|
|
24017
|
+
justify-content: center;
|
|
24018
|
+
width: 20px;
|
|
24019
|
+
pointer-events: none;
|
|
24020
|
+
transition: 0.15s 0.05s transform cubic-bezier(0, 0, 0.2, 1), 0.2s color cubic-bezier(0.4, 0, 0.2, 1), 0.2s background-color cubic-bezier(0.4, 0, 0.2, 1);
|
|
24021
|
+
position: relative;
|
|
24022
|
+
overflow: hidden;
|
|
24023
|
+
}
|
|
24024
|
+
.v-switch:not(.v-switch--inset) .v-switch__thumb {
|
|
24025
|
+
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-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
24026
|
+
}
|
|
24027
|
+
.v-switch.v-switch--flat:not(.v-switch--inset) .v-switch__thumb {
|
|
24028
|
+
background: rgb(var(--v-theme-surface-variant));
|
|
24029
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
|
24030
|
+
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-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
24031
|
+
}
|
|
24032
|
+
.v-switch--inset .v-switch__thumb {
|
|
24033
|
+
height: 24px;
|
|
24034
|
+
width: 24px;
|
|
24035
|
+
transform: scale(0.6666666667);
|
|
24036
|
+
}
|
|
24037
|
+
.v-switch--inset .v-switch__thumb--filled {
|
|
24038
|
+
transform: none;
|
|
24039
|
+
}
|
|
24040
|
+
.v-switch--inset .v-selection-control--dirty .v-switch__thumb {
|
|
24041
|
+
transform: none;
|
|
24042
|
+
transition: 0.15s 0.05s transform cubic-bezier(0, 0, 0.2, 1);
|
|
24043
|
+
}
|
|
24044
|
+
|
|
24045
|
+
.v-switch.v-input {
|
|
24046
|
+
flex: 0 1 auto;
|
|
24047
|
+
}
|
|
24048
|
+
.v-switch .v-selection-control {
|
|
24049
|
+
min-height: var(--v-input-control-height);
|
|
24050
|
+
}
|
|
24051
|
+
.v-switch .v-selection-control__input {
|
|
24052
|
+
border-radius: 50%;
|
|
24053
|
+
transition: 0.2s transform cubic-bezier(0.4, 0, 0.2, 1);
|
|
24054
|
+
transform: translateX(-10px);
|
|
24055
|
+
position: absolute;
|
|
24056
|
+
}
|
|
24057
|
+
.v-switch .v-selection-control__input .v-icon {
|
|
24058
|
+
position: absolute;
|
|
24059
|
+
}
|
|
24060
|
+
.v-switch .v-selection-control--dirty .v-selection-control__input {
|
|
24061
|
+
transform: translateX(10px);
|
|
24062
|
+
}
|
|
24063
|
+
.v-switch.v-switch--indeterminate .v-selection-control__input {
|
|
24064
|
+
transform: scale(0.8);
|
|
24065
|
+
}
|
|
24066
|
+
.v-switch.v-switch--indeterminate .v-switch__thumb {
|
|
24067
|
+
transform: scale(0.75);
|
|
24068
|
+
box-shadow: none;
|
|
24069
|
+
}
|
|
24070
|
+
.v-switch.v-switch--inset .v-selection-control__wrapper {
|
|
24071
|
+
width: auto;
|
|
24175
24072
|
}.v-tabs {
|
|
24176
24073
|
display: flex;
|
|
24177
24074
|
height: var(--v-tabs-height);
|
|
@@ -24227,17 +24124,85 @@ html.v-overlay-scroll-blocked {
|
|
|
24227
24124
|
.v-tabs--align-tabs-end .v-tab:first-child {
|
|
24228
24125
|
margin-inline-start: auto;
|
|
24229
24126
|
}
|
|
24230
|
-
.v-tabs--align-tabs-end .v-tab:last-child {
|
|
24231
|
-
margin-inline-end: 0;
|
|
24127
|
+
.v-tabs--align-tabs-end .v-tab:last-child {
|
|
24128
|
+
margin-inline-end: 0;
|
|
24129
|
+
}
|
|
24130
|
+
|
|
24131
|
+
@media (max-width: 1279.98px) {
|
|
24132
|
+
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
|
|
24133
|
+
margin-inline-start: 52px;
|
|
24134
|
+
}
|
|
24135
|
+
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
|
|
24136
|
+
margin-inline-end: 52px;
|
|
24137
|
+
}
|
|
24138
|
+
}.v-tab.v-tab.v-btn {
|
|
24139
|
+
height: var(--v-tabs-height);
|
|
24140
|
+
border-radius: 0;
|
|
24141
|
+
min-width: 90px;
|
|
24142
|
+
}
|
|
24143
|
+
.v-slide-group--horizontal .v-tab {
|
|
24144
|
+
max-width: 360px;
|
|
24145
|
+
}
|
|
24146
|
+
.v-slide-group--vertical .v-tab {
|
|
24147
|
+
justify-content: start;
|
|
24148
|
+
}
|
|
24149
|
+
|
|
24150
|
+
.v-tab__slider {
|
|
24151
|
+
position: absolute;
|
|
24152
|
+
bottom: 0;
|
|
24153
|
+
left: 0;
|
|
24154
|
+
height: 2px;
|
|
24155
|
+
width: 100%;
|
|
24156
|
+
background: currentColor;
|
|
24157
|
+
pointer-events: none;
|
|
24158
|
+
opacity: 0;
|
|
24159
|
+
}
|
|
24160
|
+
.v-tab--selected .v-tab__slider {
|
|
24161
|
+
opacity: 1;
|
|
24162
|
+
}
|
|
24163
|
+
.v-slide-group--vertical .v-tab__slider {
|
|
24164
|
+
top: 0;
|
|
24165
|
+
height: 100%;
|
|
24166
|
+
width: 2px;
|
|
24167
|
+
}.v-textarea .v-field {
|
|
24168
|
+
--v-textarea-control-height: var(--v-input-control-height);
|
|
24169
|
+
}
|
|
24170
|
+
.v-textarea .v-field__field {
|
|
24171
|
+
--v-input-control-height: var(--v-textarea-control-height);
|
|
24172
|
+
}
|
|
24173
|
+
.v-textarea .v-field__input {
|
|
24174
|
+
flex: 1 1 auto;
|
|
24175
|
+
outline: none;
|
|
24176
|
+
-webkit-mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
|
|
24177
|
+
mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
|
|
24178
|
+
}
|
|
24179
|
+
.v-textarea .v-field__input.v-textarea__sizer {
|
|
24180
|
+
visibility: hidden;
|
|
24181
|
+
position: absolute;
|
|
24182
|
+
top: 0;
|
|
24183
|
+
left: 0;
|
|
24184
|
+
height: 0 !important;
|
|
24185
|
+
min-height: 0 !important;
|
|
24186
|
+
pointer-events: none;
|
|
24187
|
+
}
|
|
24188
|
+
.v-textarea--no-resize .v-field__input {
|
|
24189
|
+
resize: none;
|
|
24190
|
+
}
|
|
24191
|
+
.v-textarea .v-field--no-label textarea,
|
|
24192
|
+
.v-textarea .v-field--active textarea {
|
|
24193
|
+
opacity: 1;
|
|
24194
|
+
}
|
|
24195
|
+
.v-textarea textarea {
|
|
24196
|
+
opacity: 0;
|
|
24197
|
+
flex: 1;
|
|
24198
|
+
min-width: 0;
|
|
24199
|
+
transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
|
24200
|
+
}
|
|
24201
|
+
.v-textarea textarea:focus, .v-textarea textarea:active {
|
|
24202
|
+
outline: none;
|
|
24232
24203
|
}
|
|
24233
|
-
|
|
24234
|
-
|
|
24235
|
-
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
|
|
24236
|
-
margin-inline-start: 52px;
|
|
24237
|
-
}
|
|
24238
|
-
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
|
|
24239
|
-
margin-inline-end: 52px;
|
|
24240
|
-
}
|
|
24204
|
+
.v-textarea textarea:invalid {
|
|
24205
|
+
box-shadow: none;
|
|
24241
24206
|
}/* region BLOCK */
|
|
24242
24207
|
.v-text-field input {
|
|
24243
24208
|
color: inherit;
|
|
@@ -24305,46 +24270,7 @@ html.v-overlay-scroll-blocked {
|
|
|
24305
24270
|
padding-inline-end: var(--v-field-padding-end);
|
|
24306
24271
|
}
|
|
24307
24272
|
|
|
24308
|
-
/* endregion */.v-
|
|
24309
|
-
--v-textarea-control-height: var(--v-input-control-height);
|
|
24310
|
-
}
|
|
24311
|
-
.v-textarea .v-field__field {
|
|
24312
|
-
--v-input-control-height: var(--v-textarea-control-height);
|
|
24313
|
-
}
|
|
24314
|
-
.v-textarea .v-field__input {
|
|
24315
|
-
flex: 1 1 auto;
|
|
24316
|
-
outline: none;
|
|
24317
|
-
-webkit-mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
|
|
24318
|
-
mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
|
|
24319
|
-
}
|
|
24320
|
-
.v-textarea .v-field__input.v-textarea__sizer {
|
|
24321
|
-
visibility: hidden;
|
|
24322
|
-
position: absolute;
|
|
24323
|
-
top: 0;
|
|
24324
|
-
left: 0;
|
|
24325
|
-
height: 0 !important;
|
|
24326
|
-
min-height: 0 !important;
|
|
24327
|
-
pointer-events: none;
|
|
24328
|
-
}
|
|
24329
|
-
.v-textarea--no-resize .v-field__input {
|
|
24330
|
-
resize: none;
|
|
24331
|
-
}
|
|
24332
|
-
.v-textarea .v-field--no-label textarea,
|
|
24333
|
-
.v-textarea .v-field--active textarea {
|
|
24334
|
-
opacity: 1;
|
|
24335
|
-
}
|
|
24336
|
-
.v-textarea textarea {
|
|
24337
|
-
opacity: 0;
|
|
24338
|
-
flex: 1;
|
|
24339
|
-
min-width: 0;
|
|
24340
|
-
transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
|
24341
|
-
}
|
|
24342
|
-
.v-textarea textarea:focus, .v-textarea textarea:active {
|
|
24343
|
-
outline: none;
|
|
24344
|
-
}
|
|
24345
|
-
.v-textarea textarea:invalid {
|
|
24346
|
-
box-shadow: none;
|
|
24347
|
-
}.v-table {
|
|
24273
|
+
/* endregion */.v-table {
|
|
24348
24274
|
background: rgb(var(--v-theme-surface));
|
|
24349
24275
|
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
24350
24276
|
font-size: 0.875rem;
|
|
@@ -24482,9 +24408,6 @@ html.v-overlay-scroll-blocked {
|
|
|
24482
24408
|
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
|
|
24483
24409
|
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
|
|
24484
24410
|
border-top: 0px !important;
|
|
24485
|
-
}.v-theme-provider {
|
|
24486
|
-
background: rgb(var(--v-theme-background));
|
|
24487
|
-
color: rgb(var(--v-theme-on-background));
|
|
24488
24411
|
}.v-timeline .v-timeline-divider__dot {
|
|
24489
24412
|
background: rgb(var(--v-theme-surface-light));
|
|
24490
24413
|
}
|
|
@@ -24901,6 +24824,9 @@ html.v-overlay-scroll-blocked {
|
|
|
24901
24824
|
|
|
24902
24825
|
.v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider, .v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__body, .v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__opposite {
|
|
24903
24826
|
padding-inline-end: 0;
|
|
24827
|
+
}.v-theme-provider {
|
|
24828
|
+
background: rgb(var(--v-theme-background));
|
|
24829
|
+
color: rgb(var(--v-theme-on-background));
|
|
24904
24830
|
}.v-tooltip > .v-overlay__content {
|
|
24905
24831
|
background: rgb(var(--v-theme-surface-variant));
|
|
24906
24832
|
color: rgb(var(--v-theme-on-surface-variant));
|
|
@@ -25130,28 +25056,108 @@ html.v-overlay-scroll-blocked {
|
|
|
25130
25056
|
}
|
|
25131
25057
|
.v-window-y-reverse-transition-leave-to {
|
|
25132
25058
|
transform: translateY(100%);
|
|
25133
|
-
}.v-
|
|
25134
|
-
|
|
25059
|
+
}.v-progress-circular {
|
|
25060
|
+
align-items: center;
|
|
25061
|
+
display: inline-flex;
|
|
25062
|
+
justify-content: center;
|
|
25135
25063
|
position: relative;
|
|
25136
|
-
|
|
25137
|
-
contain: content;
|
|
25138
|
-
touch-action: none;
|
|
25064
|
+
vertical-align: middle;
|
|
25139
25065
|
}
|
|
25140
|
-
.v-
|
|
25066
|
+
.v-progress-circular > svg {
|
|
25067
|
+
width: 100%;
|
|
25068
|
+
height: 100%;
|
|
25069
|
+
margin: auto;
|
|
25141
25070
|
position: absolute;
|
|
25142
25071
|
top: 0;
|
|
25072
|
+
bottom: 0;
|
|
25143
25073
|
left: 0;
|
|
25144
|
-
|
|
25145
|
-
|
|
25146
|
-
background: transparent;
|
|
25147
|
-
border-radius: 50%;
|
|
25148
|
-
box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
|
|
25074
|
+
right: 0;
|
|
25075
|
+
z-index: 0;
|
|
25149
25076
|
}
|
|
25150
|
-
|
|
25151
|
-
|
|
25077
|
+
|
|
25078
|
+
.v-progress-circular__content {
|
|
25079
|
+
align-items: center;
|
|
25080
|
+
display: flex;
|
|
25081
|
+
justify-content: center;
|
|
25152
25082
|
}
|
|
25153
|
-
|
|
25154
|
-
|
|
25083
|
+
|
|
25084
|
+
.v-progress-circular__underlay {
|
|
25085
|
+
color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
25086
|
+
stroke: currentColor;
|
|
25087
|
+
z-index: 1;
|
|
25088
|
+
}
|
|
25089
|
+
|
|
25090
|
+
.v-progress-circular__overlay {
|
|
25091
|
+
stroke: currentColor;
|
|
25092
|
+
transition: all 0.2s ease-in-out, stroke-width 0s;
|
|
25093
|
+
z-index: 2;
|
|
25094
|
+
}
|
|
25095
|
+
|
|
25096
|
+
.v-progress-circular--size-x-small {
|
|
25097
|
+
height: 16px;
|
|
25098
|
+
width: 16px;
|
|
25099
|
+
}
|
|
25100
|
+
.v-progress-circular--size-small {
|
|
25101
|
+
height: 24px;
|
|
25102
|
+
width: 24px;
|
|
25103
|
+
}
|
|
25104
|
+
.v-progress-circular--size-default {
|
|
25105
|
+
height: 32px;
|
|
25106
|
+
width: 32px;
|
|
25107
|
+
}
|
|
25108
|
+
.v-progress-circular--size-large {
|
|
25109
|
+
height: 48px;
|
|
25110
|
+
width: 48px;
|
|
25111
|
+
}
|
|
25112
|
+
.v-progress-circular--size-x-large {
|
|
25113
|
+
height: 64px;
|
|
25114
|
+
width: 64px;
|
|
25115
|
+
}
|
|
25116
|
+
|
|
25117
|
+
.v-progress-circular--indeterminate > svg {
|
|
25118
|
+
animation: progress-circular-rotate 1.4s linear infinite;
|
|
25119
|
+
transform-origin: center center;
|
|
25120
|
+
transition: all 0.2s ease-in-out;
|
|
25121
|
+
}
|
|
25122
|
+
.v-progress-circular--indeterminate .v-progress-circular__overlay {
|
|
25123
|
+
animation: progress-circular-dash 1.4s ease-in-out infinite, progress-circular-rotate 1.4s linear infinite;
|
|
25124
|
+
stroke-dasharray: 25, 200;
|
|
25125
|
+
stroke-dashoffset: 0;
|
|
25126
|
+
stroke-linecap: round;
|
|
25127
|
+
transform-origin: center center;
|
|
25128
|
+
transform: rotate(-90deg);
|
|
25129
|
+
}
|
|
25130
|
+
|
|
25131
|
+
.v-progress-circular--disable-shrink > svg {
|
|
25132
|
+
animation-duration: 0.7s;
|
|
25133
|
+
}
|
|
25134
|
+
.v-progress-circular--disable-shrink .v-progress-circular__overlay {
|
|
25135
|
+
animation: none;
|
|
25136
|
+
}
|
|
25137
|
+
|
|
25138
|
+
.v-progress-circular--indeterminate:not(.v-progress-circular--visible) > svg,
|
|
25139
|
+
.v-progress-circular--indeterminate:not(.v-progress-circular--visible) .v-progress-circular__overlay {
|
|
25140
|
+
animation-play-state: paused !important;
|
|
25141
|
+
}
|
|
25142
|
+
|
|
25143
|
+
@keyframes progress-circular-dash {
|
|
25144
|
+
0% {
|
|
25145
|
+
stroke-dasharray: 1, 200;
|
|
25146
|
+
stroke-dashoffset: 0px;
|
|
25147
|
+
}
|
|
25148
|
+
50% {
|
|
25149
|
+
stroke-dasharray: 100, 200;
|
|
25150
|
+
stroke-dashoffset: -15px;
|
|
25151
|
+
}
|
|
25152
|
+
100% {
|
|
25153
|
+
stroke-dasharray: 100, 200;
|
|
25154
|
+
stroke-dashoffset: -124px;
|
|
25155
|
+
}
|
|
25156
|
+
}
|
|
25157
|
+
@keyframes progress-circular-rotate {
|
|
25158
|
+
100% {
|
|
25159
|
+
transform: rotate(270deg);
|
|
25160
|
+
}
|
|
25155
25161
|
}.v-color-picker-edit {
|
|
25156
25162
|
display: flex;
|
|
25157
25163
|
margin-top: 24px;
|
|
@@ -25180,41 +25186,28 @@ html.v-overlay-scroll-blocked {
|
|
|
25180
25186
|
}
|
|
25181
25187
|
.v-color-picker-edit__input span {
|
|
25182
25188
|
font-size: 0.75rem;
|
|
25183
|
-
}.v-color-picker-
|
|
25184
|
-
overflow-y: auto;
|
|
25185
|
-
}
|
|
25186
|
-
.v-color-picker-swatches > div {
|
|
25187
|
-
display: flex;
|
|
25188
|
-
flex-wrap: wrap;
|
|
25189
|
-
justify-content: center;
|
|
25190
|
-
padding: 8px;
|
|
25191
|
-
}
|
|
25192
|
-
|
|
25193
|
-
.v-color-picker-swatches__swatch {
|
|
25189
|
+
}.v-color-picker-canvas {
|
|
25194
25190
|
display: flex;
|
|
25195
|
-
flex-direction: column;
|
|
25196
|
-
margin-bottom: 10px;
|
|
25197
|
-
}
|
|
25198
|
-
|
|
25199
|
-
.v-color-picker-swatches__color {
|
|
25200
25191
|
position: relative;
|
|
25201
|
-
height: 18px;
|
|
25202
|
-
max-height: 18px;
|
|
25203
|
-
width: 45px;
|
|
25204
|
-
margin: 2px 4px;
|
|
25205
|
-
border-radius: 2px;
|
|
25206
|
-
-webkit-user-select: none;
|
|
25207
|
-
user-select: none;
|
|
25208
25192
|
overflow: hidden;
|
|
25209
|
-
|
|
25210
|
-
|
|
25193
|
+
contain: content;
|
|
25194
|
+
touch-action: none;
|
|
25211
25195
|
}
|
|
25212
|
-
.v-color-picker-
|
|
25213
|
-
|
|
25214
|
-
|
|
25215
|
-
|
|
25216
|
-
width:
|
|
25217
|
-
height:
|
|
25196
|
+
.v-color-picker-canvas__dot {
|
|
25197
|
+
position: absolute;
|
|
25198
|
+
top: 0;
|
|
25199
|
+
left: 0;
|
|
25200
|
+
width: 15px;
|
|
25201
|
+
height: 15px;
|
|
25202
|
+
background: transparent;
|
|
25203
|
+
border-radius: 50%;
|
|
25204
|
+
box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
|
|
25205
|
+
}
|
|
25206
|
+
.v-color-picker-canvas__dot--disabled {
|
|
25207
|
+
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);
|
|
25208
|
+
}
|
|
25209
|
+
.v-color-picker-canvas:hover .v-color-picker-canvas__dot {
|
|
25210
|
+
will-change: transform;
|
|
25218
25211
|
}.v-color-picker-preview__alpha .v-slider-track__background {
|
|
25219
25212
|
background-color: transparent !important;
|
|
25220
25213
|
}
|
|
@@ -25242,6 +25235,7 @@ html.v-overlay-scroll-blocked {
|
|
|
25242
25235
|
display: flex;
|
|
25243
25236
|
flex: 1 0 auto;
|
|
25244
25237
|
flex-direction: column;
|
|
25238
|
+
padding-inline-end: 16px;
|
|
25245
25239
|
}
|
|
25246
25240
|
|
|
25247
25241
|
.v-color-picker-preview__dot {
|
|
@@ -25284,6 +25278,41 @@ html.v-overlay-scroll-blocked {
|
|
|
25284
25278
|
.v-color-picker-preview__eye-dropper {
|
|
25285
25279
|
position: relative;
|
|
25286
25280
|
margin-right: 12px;
|
|
25281
|
+
}.v-color-picker-swatches {
|
|
25282
|
+
overflow-y: auto;
|
|
25283
|
+
}
|
|
25284
|
+
.v-color-picker-swatches > div {
|
|
25285
|
+
display: flex;
|
|
25286
|
+
flex-wrap: wrap;
|
|
25287
|
+
justify-content: center;
|
|
25288
|
+
padding: 8px;
|
|
25289
|
+
}
|
|
25290
|
+
|
|
25291
|
+
.v-color-picker-swatches__swatch {
|
|
25292
|
+
display: flex;
|
|
25293
|
+
flex-direction: column;
|
|
25294
|
+
margin-bottom: 10px;
|
|
25295
|
+
}
|
|
25296
|
+
|
|
25297
|
+
.v-color-picker-swatches__color {
|
|
25298
|
+
position: relative;
|
|
25299
|
+
height: 18px;
|
|
25300
|
+
max-height: 18px;
|
|
25301
|
+
width: 45px;
|
|
25302
|
+
margin: 2px 4px;
|
|
25303
|
+
border-radius: 2px;
|
|
25304
|
+
-webkit-user-select: none;
|
|
25305
|
+
user-select: none;
|
|
25306
|
+
overflow: hidden;
|
|
25307
|
+
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
|
|
25308
|
+
cursor: pointer;
|
|
25309
|
+
}
|
|
25310
|
+
.v-color-picker-swatches__color > div {
|
|
25311
|
+
display: flex;
|
|
25312
|
+
align-items: center;
|
|
25313
|
+
justify-content: center;
|
|
25314
|
+
width: 100%;
|
|
25315
|
+
height: 100%;
|
|
25287
25316
|
}.v-slider-thumb {
|
|
25288
25317
|
touch-action: none;
|
|
25289
25318
|
color: rgb(var(--v-theme-surface-variant));
|