@vuetify/nightly 3.6.8-master.2024-06-11 → 3.6.9-master.2024-06-12
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/CHANGELOG.md +2 -10
- package/dist/json/attributes.json +4 -4
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +132 -132
- package/dist/json/web-types.json +12 -13
- package/dist/vuetify-labs.css +2088 -2088
- package/dist/vuetify-labs.d.ts +44 -45
- package/dist/vuetify-labs.esm.js +32 -19
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +32 -19
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +489 -489
- package/dist/vuetify.d.ts +84 -91
- package/dist/vuetify.esm.js +20 -13
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +20 -13
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +31 -28
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VFab/VFab.mjs +4 -7
- package/lib/components/VFab/VFab.mjs.map +1 -1
- package/lib/components/VFab/index.d.mts +46 -49
- package/lib/components/VList/VList.mjs +1 -0
- package/lib/components/VList/VList.mjs.map +1 -1
- package/lib/components/VList/index.d.mts +2 -0
- package/lib/components/VMenu/VMenu.mjs +1 -1
- package/lib/components/VMenu/VMenu.mjs.map +1 -1
- package/lib/components/VOverlay/VOverlay.mjs +4 -3
- package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
- package/lib/components/index.d.mts +38 -45
- package/lib/composables/scroll.mjs +6 -0
- package/lib/composables/scroll.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +46 -46
- package/lib/labs/VTimePicker/VTimePickerClock.mjs +3 -1
- package/lib/labs/VTimePicker/VTimePickerClock.mjs.map +1 -1
- package/lib/labs/VTimePicker/VTimePickerControls.mjs +7 -2
- package/lib/labs/VTimePicker/VTimePickerControls.mjs.map +1 -1
- package/lib/labs/VTreeview/VTreeview.mjs +3 -4
- package/lib/labs/VTreeview/VTreeview.mjs.map +1 -1
- package/lib/labs/VTreeview/index.d.mts +6 -0
- package/lib/labs/components.d.mts +6 -0
- package/package.json +1 -1
package/dist/vuetify-labs.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.6.
|
2
|
+
* Vuetify v3.6.9-master.2024-06-12
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -17456,6 +17456,38 @@ html.overflow-y-hidden {
|
|
17456
17456
|
font-weight: normal;
|
17457
17457
|
padding: 0.2em 0.4rem;
|
17458
17458
|
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));
|
17459
|
+
}.v-calendar-day {
|
17460
|
+
position: relative;
|
17461
|
+
display: flex;
|
17462
|
+
flex-direction: column;
|
17463
|
+
}
|
17464
|
+
|
17465
|
+
.v-calendar-weekly .v-calendar__container {
|
17466
|
+
display: grid;
|
17467
|
+
}
|
17468
|
+
.v-calendar-weekly .v-calendar__container.days__7 {
|
17469
|
+
grid-template-columns: repeat(7, 1fr);
|
17470
|
+
}
|
17471
|
+
.v-calendar-weekly .v-calendar__container.days__6 {
|
17472
|
+
grid-template-columns: repeat(6, 1fr);
|
17473
|
+
}
|
17474
|
+
.v-calendar-weekly .v-calendar__container.days__5 {
|
17475
|
+
grid-template-columns: repeat(5, 1fr);
|
17476
|
+
}
|
17477
|
+
.v-calendar-weekly .v-calendar__container.days__4 {
|
17478
|
+
grid-template-columns: repeat(4, 1fr);
|
17479
|
+
}
|
17480
|
+
.v-calendar-weekly .v-calendar__container.days__3 {
|
17481
|
+
grid-template-columns: repeat(3, 1fr);
|
17482
|
+
}
|
17483
|
+
.v-calendar-weekly .v-calendar__container.days__2 {
|
17484
|
+
grid-template-columns: repeat(2, 1fr);
|
17485
|
+
}
|
17486
|
+
.v-calendar-weekly .v-calendar__container.days__1 {
|
17487
|
+
grid-template-columns: repeat(1, 1fr);
|
17488
|
+
}
|
17489
|
+
.v-calendar-weekly .v-calendar__container.days__0 {
|
17490
|
+
grid-template-columns: repeat(1, 1fr);
|
17459
17491
|
}.v-number-input input[type=number] {
|
17460
17492
|
-moz-appearance: textfield;
|
17461
17493
|
}
|
@@ -17494,38 +17526,6 @@ html.overflow-y-hidden {
|
|
17494
17526
|
.v-number-input__control .v-btn {
|
17495
17527
|
background-color: transparent;
|
17496
17528
|
border-radius: 0;
|
17497
|
-
}.v-calendar-day {
|
17498
|
-
position: relative;
|
17499
|
-
display: flex;
|
17500
|
-
flex-direction: column;
|
17501
|
-
}
|
17502
|
-
|
17503
|
-
.v-calendar-weekly .v-calendar__container {
|
17504
|
-
display: grid;
|
17505
|
-
}
|
17506
|
-
.v-calendar-weekly .v-calendar__container.days__7 {
|
17507
|
-
grid-template-columns: repeat(7, 1fr);
|
17508
|
-
}
|
17509
|
-
.v-calendar-weekly .v-calendar__container.days__6 {
|
17510
|
-
grid-template-columns: repeat(6, 1fr);
|
17511
|
-
}
|
17512
|
-
.v-calendar-weekly .v-calendar__container.days__5 {
|
17513
|
-
grid-template-columns: repeat(5, 1fr);
|
17514
|
-
}
|
17515
|
-
.v-calendar-weekly .v-calendar__container.days__4 {
|
17516
|
-
grid-template-columns: repeat(4, 1fr);
|
17517
|
-
}
|
17518
|
-
.v-calendar-weekly .v-calendar__container.days__3 {
|
17519
|
-
grid-template-columns: repeat(3, 1fr);
|
17520
|
-
}
|
17521
|
-
.v-calendar-weekly .v-calendar__container.days__2 {
|
17522
|
-
grid-template-columns: repeat(2, 1fr);
|
17523
|
-
}
|
17524
|
-
.v-calendar-weekly .v-calendar__container.days__1 {
|
17525
|
-
grid-template-columns: repeat(1, 1fr);
|
17526
|
-
}
|
17527
|
-
.v-calendar-weekly .v-calendar__container.days__0 {
|
17528
|
-
grid-template-columns: repeat(1, 1fr);
|
17529
17529
|
}.v-calendar {
|
17530
17530
|
background: rgb(var(--v-theme-background));
|
17531
17531
|
color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
|
@@ -17753,19 +17753,11 @@ html.overflow-y-hidden {
|
|
17753
17753
|
}
|
17754
17754
|
.v-calendar-month__days.days-with-weeknumbers__7 > .v-calendar-month__day:nth-child(8n) {
|
17755
17755
|
border-right: none;
|
17756
|
-
}.v-calendar-
|
17757
|
-
|
17758
|
-
|
17759
|
-
|
17760
|
-
|
17761
|
-
|
17762
|
-
.v-calendar-header__today {
|
17763
|
-
margin-inline-end: 24px;
|
17764
|
-
}
|
17765
|
-
|
17766
|
-
.v-calendar-header__title {
|
17767
|
-
font-size: 1.5rem;
|
17768
|
-
margin-inline-start: 24px;
|
17756
|
+
}.v-calendar-internal-event {
|
17757
|
+
overflow: hidden;
|
17758
|
+
padding: 4px;
|
17759
|
+
text-overflow: ellipsis;
|
17760
|
+
white-space: nowrap;
|
17769
17761
|
}.v-calendar-day__row-with-label {
|
17770
17762
|
display: grid;
|
17771
17763
|
grid-template-columns: 48px 8px 1fr;
|
@@ -17808,11 +17800,19 @@ html.overflow-y-hidden {
|
|
17808
17800
|
}
|
17809
17801
|
.v-calendar-day__row-without-label .v-calendar-day__row-content.v-calendar-day__row-content-through {
|
17810
17802
|
border-bottom: none;
|
17811
|
-
}.v-calendar-
|
17812
|
-
|
17813
|
-
|
17814
|
-
|
17815
|
-
|
17803
|
+
}.v-calendar-header {
|
17804
|
+
align-items: center;
|
17805
|
+
display: flex;
|
17806
|
+
min-height: 64px;
|
17807
|
+
}
|
17808
|
+
|
17809
|
+
.v-calendar-header__today {
|
17810
|
+
margin-inline-end: 24px;
|
17811
|
+
}
|
17812
|
+
|
17813
|
+
.v-calendar-header__title {
|
17814
|
+
font-size: 1.5rem;
|
17815
|
+
margin-inline-start: 24px;
|
17816
17816
|
}.v-calendar-month__day {
|
17817
17817
|
position: relative;
|
17818
17818
|
display: flex;
|
@@ -17876,6 +17876,59 @@ html.overflow-y-hidden {
|
|
17876
17876
|
|
17877
17877
|
.v-calendar-weekly__day-alldayevents-container {
|
17878
17878
|
min-height: 24px;
|
17879
|
+
}.v-picker.v-sheet {
|
17880
|
+
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));
|
17881
|
+
border-radius: 4px;
|
17882
|
+
display: grid;
|
17883
|
+
grid-auto-rows: min-content;
|
17884
|
+
grid-template-areas: "title" "header" "body";
|
17885
|
+
overflow: hidden;
|
17886
|
+
}
|
17887
|
+
.v-picker.v-sheet.v-picker--with-actions {
|
17888
|
+
grid-template-areas: "title" "header" "body" "actions";
|
17889
|
+
}
|
17890
|
+
|
17891
|
+
.v-picker__body {
|
17892
|
+
grid-area: body;
|
17893
|
+
overflow: hidden;
|
17894
|
+
position: relative;
|
17895
|
+
}
|
17896
|
+
|
17897
|
+
.v-picker__header {
|
17898
|
+
grid-area: header;
|
17899
|
+
}
|
17900
|
+
|
17901
|
+
.v-picker__actions {
|
17902
|
+
grid-area: actions;
|
17903
|
+
padding: 0 12px 12px;
|
17904
|
+
display: flex;
|
17905
|
+
align-items: center;
|
17906
|
+
justify-content: flex-end;
|
17907
|
+
}
|
17908
|
+
.v-picker__actions .v-btn {
|
17909
|
+
min-width: 48px;
|
17910
|
+
}
|
17911
|
+
.v-picker__actions .v-btn:not(:last-child) {
|
17912
|
+
margin-inline-end: 8px;
|
17913
|
+
}
|
17914
|
+
|
17915
|
+
.v-picker--landscape {
|
17916
|
+
grid-template-areas: "title" "header body" "header body";
|
17917
|
+
}
|
17918
|
+
|
17919
|
+
.v-picker--landscape.v-picker--with-actions {
|
17920
|
+
grid-template-areas: "title" "header body" "header actions";
|
17921
|
+
}
|
17922
|
+
|
17923
|
+
.v-picker-title {
|
17924
|
+
text-transform: uppercase;
|
17925
|
+
font-size: 0.75rem;
|
17926
|
+
grid-area: title;
|
17927
|
+
padding-inline: 24px 12px;
|
17928
|
+
padding-top: 16px;
|
17929
|
+
padding-bottom: 16px;
|
17930
|
+
font-weight: 400;
|
17931
|
+
letter-spacing: 0.1666666667em;
|
17879
17932
|
}.v-stepper-vertical-item {
|
17880
17933
|
position: relative;
|
17881
17934
|
transition-duration: 0.2s;
|
@@ -17970,6 +18023,13 @@ html.overflow-y-hidden {
|
|
17970
18023
|
}
|
17971
18024
|
.v-pull-to-refresh__scroll-container--touching {
|
17972
18025
|
transition: none;
|
18026
|
+
}.v-time-picker.v-picker {
|
18027
|
+
padding: 24px;
|
18028
|
+
width: 328px;
|
18029
|
+
}
|
18030
|
+
.v-time-picker.v-picker .v-picker-title {
|
18031
|
+
padding: 0;
|
18032
|
+
margin-bottom: 20px;
|
17973
18033
|
}.v-time-picker-clock {
|
17974
18034
|
background: rgb(var(--v-theme-background));
|
17975
18035
|
color: rgb(var(--v-theme-on-background));
|
@@ -18101,13 +18161,6 @@ html.overflow-y-hidden {
|
|
18101
18161
|
|
18102
18162
|
.v-picker--landscape .v-time-picker-clock__container {
|
18103
18163
|
flex-direction: row;
|
18104
|
-
}.v-time-picker.v-picker {
|
18105
|
-
padding: 24px;
|
18106
|
-
width: 328px;
|
18107
|
-
}
|
18108
|
-
.v-time-picker.v-picker .v-picker-title {
|
18109
|
-
padding: 0;
|
18110
|
-
margin-bottom: 20px;
|
18111
18164
|
}.v-time-picker-controls {
|
18112
18165
|
display: flex;
|
18113
18166
|
align-items: center;
|
@@ -18211,59 +18264,6 @@ html.overflow-y-hidden {
|
|
18211
18264
|
}
|
18212
18265
|
.v-picker--time .v-picker__title--landscape .v-time-picker-controls__time {
|
18213
18266
|
text-align: center;
|
18214
|
-
}.v-picker.v-sheet {
|
18215
|
-
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));
|
18216
|
-
border-radius: 4px;
|
18217
|
-
display: grid;
|
18218
|
-
grid-auto-rows: min-content;
|
18219
|
-
grid-template-areas: "title" "header" "body";
|
18220
|
-
overflow: hidden;
|
18221
|
-
}
|
18222
|
-
.v-picker.v-sheet.v-picker--with-actions {
|
18223
|
-
grid-template-areas: "title" "header" "body" "actions";
|
18224
|
-
}
|
18225
|
-
|
18226
|
-
.v-picker__body {
|
18227
|
-
grid-area: body;
|
18228
|
-
overflow: hidden;
|
18229
|
-
position: relative;
|
18230
|
-
}
|
18231
|
-
|
18232
|
-
.v-picker__header {
|
18233
|
-
grid-area: header;
|
18234
|
-
}
|
18235
|
-
|
18236
|
-
.v-picker__actions {
|
18237
|
-
grid-area: actions;
|
18238
|
-
padding: 0 12px 12px;
|
18239
|
-
display: flex;
|
18240
|
-
align-items: center;
|
18241
|
-
justify-content: flex-end;
|
18242
|
-
}
|
18243
|
-
.v-picker__actions .v-btn {
|
18244
|
-
min-width: 48px;
|
18245
|
-
}
|
18246
|
-
.v-picker__actions .v-btn:not(:last-child) {
|
18247
|
-
margin-inline-end: 8px;
|
18248
|
-
}
|
18249
|
-
|
18250
|
-
.v-picker--landscape {
|
18251
|
-
grid-template-areas: "title" "header body" "header body";
|
18252
|
-
}
|
18253
|
-
|
18254
|
-
.v-picker--landscape.v-picker--with-actions {
|
18255
|
-
grid-template-areas: "title" "header body" "header actions";
|
18256
|
-
}
|
18257
|
-
|
18258
|
-
.v-picker-title {
|
18259
|
-
text-transform: uppercase;
|
18260
|
-
font-size: 0.75rem;
|
18261
|
-
grid-area: title;
|
18262
|
-
padding-inline: 24px 12px;
|
18263
|
-
padding-top: 16px;
|
18264
|
-
padding-bottom: 16px;
|
18265
|
-
font-weight: 400;
|
18266
|
-
letter-spacing: 0.1666666667em;
|
18267
18267
|
}.v-treeview-item--filtered {
|
18268
18268
|
display: none;
|
18269
18269
|
}
|
@@ -18280,18 +18280,6 @@ html.overflow-y-hidden {
|
|
18280
18280
|
}
|
18281
18281
|
.v-treeview-group.v-list-group .v-list-group__items .v-list-item {
|
18282
18282
|
padding-inline-start: calc(12px + var(--indent-padding)) !important;
|
18283
|
-
}.v-app-bar {
|
18284
|
-
display: flex;
|
18285
|
-
}
|
18286
|
-
.v-app-bar.v-toolbar {
|
18287
|
-
background: rgb(var(--v-theme-surface));
|
18288
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
18289
|
-
}
|
18290
|
-
.v-app-bar.v-toolbar:not(.v-toolbar--flat) {
|
18291
|
-
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));
|
18292
|
-
}
|
18293
|
-
.v-app-bar:not(.v-toolbar--absolute) {
|
18294
|
-
padding-inline-end: var(--v-scrollbar-offset);
|
18295
18283
|
}.v-application {
|
18296
18284
|
display: flex;
|
18297
18285
|
background: rgb(var(--v-theme-background));
|
@@ -18308,6 +18296,18 @@ html.overflow-y-hidden {
|
|
18308
18296
|
min-height: 100vh;
|
18309
18297
|
min-height: 100dvh;
|
18310
18298
|
position: relative;
|
18299
|
+
}.v-app-bar {
|
18300
|
+
display: flex;
|
18301
|
+
}
|
18302
|
+
.v-app-bar.v-toolbar {
|
18303
|
+
background: rgb(var(--v-theme-surface));
|
18304
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
18305
|
+
}
|
18306
|
+
.v-app-bar.v-toolbar:not(.v-toolbar--flat) {
|
18307
|
+
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));
|
18308
|
+
}
|
18309
|
+
.v-app-bar:not(.v-toolbar--absolute) {
|
18310
|
+
padding-inline-end: var(--v-scrollbar-offset);
|
18311
18311
|
}.v-alert {
|
18312
18312
|
display: grid;
|
18313
18313
|
flex: 1 1;
|
@@ -18615,170 +18615,12 @@ html.overflow-y-hidden {
|
|
18615
18615
|
.v-avatar .v-img {
|
18616
18616
|
height: 100%;
|
18617
18617
|
width: 100%;
|
18618
|
-
}.v-
|
18619
|
-
|
18620
|
-
|
18621
|
-
|
18622
|
-
|
18623
|
-
|
18624
|
-
grid-template-rows: max-content max-content;
|
18625
|
-
line-height: 1.6;
|
18626
|
-
overflow: hidden;
|
18627
|
-
padding-inline: 16px 8px;
|
18628
|
-
padding-top: 16px;
|
18629
|
-
padding-bottom: 16px;
|
18630
|
-
position: relative;
|
18631
|
-
width: 100%;
|
18632
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
18633
|
-
border-style: solid;
|
18634
|
-
border-width: 0 0 thin 0;
|
18635
|
-
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));
|
18636
|
-
border-radius: 0;
|
18637
|
-
background: rgb(var(--v-theme-surface));
|
18638
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
18639
|
-
}
|
18640
|
-
.v-banner--border {
|
18641
|
-
border-width: thin;
|
18642
|
-
box-shadow: none;
|
18643
|
-
}
|
18644
|
-
.v-banner--absolute {
|
18645
|
-
position: absolute;
|
18646
|
-
}
|
18647
|
-
.v-banner--fixed {
|
18648
|
-
position: fixed;
|
18649
|
-
}
|
18650
|
-
.v-banner--sticky {
|
18651
|
-
position: sticky;
|
18652
|
-
}
|
18653
|
-
.v-banner--rounded {
|
18654
|
-
border-radius: 4px;
|
18655
|
-
}
|
18656
|
-
.v-banner--stacked:not(.v-banner--one-line) {
|
18657
|
-
grid-template-areas: "prepend content" ". actions";
|
18658
|
-
}
|
18659
|
-
.v-banner--stacked .v-banner-text {
|
18660
|
-
padding-inline-end: 36px;
|
18661
|
-
}
|
18662
|
-
.v-banner--density-default .v-banner-actions {
|
18663
|
-
margin-bottom: -8px;
|
18664
|
-
}
|
18665
|
-
.v-banner--density-default.v-banner--one-line {
|
18666
|
-
padding-top: 8px;
|
18667
|
-
padding-bottom: 8px;
|
18668
|
-
}
|
18669
|
-
.v-banner--density-default.v-banner--one-line .v-banner-actions {
|
18670
|
-
margin-bottom: 0;
|
18671
|
-
}
|
18672
|
-
.v-banner--density-default.v-banner--one-line {
|
18673
|
-
padding-top: 10px;
|
18674
|
-
}
|
18675
|
-
.v-banner--density-default.v-banner--two-line {
|
18676
|
-
padding-top: 16px;
|
18677
|
-
padding-bottom: 16px;
|
18678
|
-
}
|
18679
|
-
.v-banner--density-default.v-banner--three-line {
|
18680
|
-
padding-top: 24px;
|
18681
|
-
padding-bottom: 16px;
|
18682
|
-
}
|
18683
|
-
.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 {
|
18684
|
-
margin-top: 20px;
|
18685
|
-
}
|
18686
|
-
|
18687
|
-
.v-banner--density-comfortable .v-banner-actions {
|
18688
|
-
margin-bottom: -4px;
|
18689
|
-
}
|
18690
|
-
.v-banner--density-comfortable.v-banner--one-line {
|
18691
|
-
padding-top: 4px;
|
18692
|
-
padding-bottom: 4px;
|
18693
|
-
}
|
18694
|
-
.v-banner--density-comfortable.v-banner--one-line .v-banner-actions {
|
18695
|
-
margin-bottom: 0;
|
18696
|
-
}
|
18697
|
-
.v-banner--density-comfortable.v-banner--two-line {
|
18698
|
-
padding-top: 12px;
|
18699
|
-
padding-bottom: 12px;
|
18700
|
-
}
|
18701
|
-
.v-banner--density-comfortable.v-banner--three-line {
|
18702
|
-
padding-top: 20px;
|
18703
|
-
padding-bottom: 12px;
|
18704
|
-
}
|
18705
|
-
.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 {
|
18706
|
-
margin-top: 16px;
|
18707
|
-
}
|
18708
|
-
|
18709
|
-
.v-banner--density-compact .v-banner-actions {
|
18710
|
-
margin-bottom: 0px;
|
18711
|
-
}
|
18712
|
-
.v-banner--density-compact.v-banner--one-line {
|
18713
|
-
padding-top: 0px;
|
18714
|
-
padding-bottom: 0px;
|
18715
|
-
}
|
18716
|
-
.v-banner--density-compact.v-banner--one-line .v-banner-actions {
|
18717
|
-
margin-bottom: 0;
|
18718
|
-
}
|
18719
|
-
.v-banner--density-compact.v-banner--two-line {
|
18720
|
-
padding-top: 8px;
|
18721
|
-
padding-bottom: 8px;
|
18722
|
-
}
|
18723
|
-
.v-banner--density-compact.v-banner--three-line {
|
18724
|
-
padding-top: 16px;
|
18725
|
-
padding-bottom: 8px;
|
18726
|
-
}
|
18727
|
-
.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 {
|
18728
|
-
margin-top: 12px;
|
18729
|
-
}
|
18730
|
-
|
18731
|
-
.v-banner--sticky {
|
18732
|
-
top: 0;
|
18733
|
-
z-index: 1;
|
18734
|
-
}
|
18735
|
-
|
18736
|
-
.v-banner__content {
|
18737
|
-
align-items: center;
|
18738
|
-
display: flex;
|
18739
|
-
grid-area: content;
|
18740
|
-
}
|
18741
|
-
|
18742
|
-
.v-banner__prepend {
|
18743
|
-
align-self: flex-start;
|
18744
|
-
grid-area: prepend;
|
18745
|
-
margin-inline-end: 24px;
|
18746
|
-
}
|
18747
|
-
|
18748
|
-
.v-banner-actions {
|
18749
|
-
align-self: flex-end;
|
18750
|
-
display: flex;
|
18751
|
-
flex: 0 1;
|
18752
|
-
grid-area: actions;
|
18753
|
-
justify-content: flex-end;
|
18754
|
-
}
|
18755
|
-
.v-banner--two-line .v-banner-actions, .v-banner--three-line .v-banner-actions {
|
18756
|
-
margin-top: 20px;
|
18757
|
-
}
|
18758
|
-
|
18759
|
-
.v-banner-text {
|
18760
|
-
-webkit-box-orient: vertical;
|
18761
|
-
display: -webkit-box;
|
18762
|
-
padding-inline-end: 90px;
|
18763
|
-
overflow: hidden;
|
18764
|
-
}
|
18765
|
-
.v-banner--one-line .v-banner-text {
|
18766
|
-
-webkit-line-clamp: 1;
|
18767
|
-
}
|
18768
|
-
.v-banner--two-line .v-banner-text {
|
18769
|
-
-webkit-line-clamp: 2;
|
18770
|
-
}
|
18771
|
-
.v-banner--three-line .v-banner-text {
|
18772
|
-
-webkit-line-clamp: 3;
|
18773
|
-
}
|
18774
|
-
.v-banner--two-line .v-banner-text, .v-banner--three-line .v-banner-text {
|
18775
|
-
align-self: flex-start;
|
18776
|
-
}.v-autocomplete .v-field .v-text-field__prefix,
|
18777
|
-
.v-autocomplete .v-field .v-text-field__suffix,
|
18778
|
-
.v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
|
18779
|
-
cursor: text;
|
18780
|
-
}
|
18781
|
-
.v-autocomplete .v-field .v-field__input > input {
|
18618
|
+
}.v-autocomplete .v-field .v-text-field__prefix,
|
18619
|
+
.v-autocomplete .v-field .v-text-field__suffix,
|
18620
|
+
.v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
|
18621
|
+
cursor: text;
|
18622
|
+
}
|
18623
|
+
.v-autocomplete .v-field .v-field__input > input {
|
18782
18624
|
flex: 1 1;
|
18783
18625
|
}
|
18784
18626
|
.v-autocomplete .v-field input {
|
@@ -18854,38 +18696,6 @@ html.overflow-y-hidden {
|
|
18854
18696
|
.v-autocomplete--active-menu .v-autocomplete__menu-icon {
|
18855
18697
|
opacity: var(--v-high-emphasis-opacity);
|
18856
18698
|
transform: rotate(180deg);
|
18857
|
-
}.bottom-sheet-transition-enter-from {
|
18858
|
-
transform: translateY(100%);
|
18859
|
-
}
|
18860
|
-
.bottom-sheet-transition-leave-to {
|
18861
|
-
transform: translateY(100%);
|
18862
|
-
}
|
18863
|
-
|
18864
|
-
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
|
18865
|
-
align-self: flex-end;
|
18866
|
-
border-radius: 0;
|
18867
|
-
flex: 0 1 auto;
|
18868
|
-
left: 0;
|
18869
|
-
right: 0;
|
18870
|
-
margin-inline: 0;
|
18871
|
-
margin-bottom: 0;
|
18872
|
-
transition-duration: 0.2s;
|
18873
|
-
width: 100%;
|
18874
|
-
max-width: 100%;
|
18875
|
-
overflow: visible;
|
18876
|
-
box-shadow: 0px 7px 8px -4px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 12px 17px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 5px 22px 4px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
18877
|
-
}
|
18878
|
-
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
|
18879
|
-
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
|
18880
|
-
border-radius: 0;
|
18881
|
-
}
|
18882
|
-
.v-bottom-sheet.v-bottom-sheet--inset {
|
18883
|
-
max-width: none;
|
18884
|
-
}
|
18885
|
-
@media (min-width: 600px) {
|
18886
|
-
.v-bottom-sheet.v-bottom-sheet--inset {
|
18887
|
-
max-width: 70%;
|
18888
|
-
}
|
18889
18699
|
}.v-badge {
|
18890
18700
|
display: inline-block;
|
18891
18701
|
line-height: 1;
|
@@ -18957,63 +18767,6 @@ html.overflow-y-hidden {
|
|
18957
18767
|
display: inline-flex;
|
18958
18768
|
justify-content: center;
|
18959
18769
|
margin: 0 4px;
|
18960
|
-
}.v-breadcrumbs {
|
18961
|
-
display: flex;
|
18962
|
-
align-items: center;
|
18963
|
-
line-height: 1.6;
|
18964
|
-
padding: 16px 12px;
|
18965
|
-
}
|
18966
|
-
.v-breadcrumbs--rounded {
|
18967
|
-
border-radius: 4px;
|
18968
|
-
}
|
18969
|
-
.v-breadcrumbs--density-default {
|
18970
|
-
padding-top: 16px;
|
18971
|
-
padding-bottom: 16px;
|
18972
|
-
}
|
18973
|
-
|
18974
|
-
.v-breadcrumbs--density-comfortable {
|
18975
|
-
padding-top: 12px;
|
18976
|
-
padding-bottom: 12px;
|
18977
|
-
}
|
18978
|
-
|
18979
|
-
.v-breadcrumbs--density-compact {
|
18980
|
-
padding-top: 8px;
|
18981
|
-
padding-bottom: 8px;
|
18982
|
-
}
|
18983
|
-
|
18984
|
-
.v-breadcrumbs__prepend {
|
18985
|
-
align-items: center;
|
18986
|
-
display: inline-flex;
|
18987
|
-
}
|
18988
|
-
|
18989
|
-
.v-breadcrumbs-item {
|
18990
|
-
align-items: center;
|
18991
|
-
color: inherit;
|
18992
|
-
display: inline-flex;
|
18993
|
-
padding: 0 4px;
|
18994
|
-
text-decoration: none;
|
18995
|
-
vertical-align: middle;
|
18996
|
-
}
|
18997
|
-
.v-breadcrumbs-item--disabled {
|
18998
|
-
opacity: var(--v-disabled-opacity);
|
18999
|
-
pointer-events: none;
|
19000
|
-
}
|
19001
|
-
.v-breadcrumbs-item--link {
|
19002
|
-
color: inherit;
|
19003
|
-
text-decoration: none;
|
19004
|
-
}
|
19005
|
-
.v-breadcrumbs-item--link:hover {
|
19006
|
-
text-decoration: underline;
|
19007
|
-
}
|
19008
|
-
.v-breadcrumbs-item .v-icon {
|
19009
|
-
font-size: 1rem;
|
19010
|
-
margin-inline: -4px 2px;
|
19011
|
-
}
|
19012
|
-
|
19013
|
-
.v-breadcrumbs-divider {
|
19014
|
-
display: inline-block;
|
19015
|
-
padding: 0 8px;
|
19016
|
-
vertical-align: middle;
|
19017
18770
|
}.v-bottom-navigation {
|
19018
18771
|
display: flex;
|
19019
18772
|
max-width: 100%;
|
@@ -19069,19 +18822,196 @@ html.overflow-y-hidden {
|
|
19069
18822
|
}
|
19070
18823
|
.v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
|
19071
18824
|
transform: translateY(0.5rem);
|
19072
|
-
}.
|
19073
|
-
|
18825
|
+
}.bottom-sheet-transition-enter-from {
|
18826
|
+
transform: translateY(100%);
|
19074
18827
|
}
|
19075
|
-
.
|
19076
|
-
|
18828
|
+
.bottom-sheet-transition-leave-to {
|
18829
|
+
transform: translateY(100%);
|
19077
18830
|
}
|
19078
|
-
|
19079
|
-
|
18831
|
+
|
18832
|
+
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
|
18833
|
+
align-self: flex-end;
|
18834
|
+
border-radius: 0;
|
18835
|
+
flex: 0 1 auto;
|
18836
|
+
left: 0;
|
18837
|
+
right: 0;
|
18838
|
+
margin-inline: 0;
|
18839
|
+
margin-bottom: 0;
|
18840
|
+
transition-duration: 0.2s;
|
18841
|
+
width: 100%;
|
18842
|
+
max-width: 100%;
|
18843
|
+
overflow: visible;
|
18844
|
+
box-shadow: 0px 7px 8px -4px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 12px 17px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 5px 22px 4px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
19080
18845
|
}
|
19081
|
-
|
19082
|
-
|
19083
|
-
|
18846
|
+
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
|
18847
|
+
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
|
18848
|
+
border-radius: 0;
|
18849
|
+
}
|
18850
|
+
.v-bottom-sheet.v-bottom-sheet--inset {
|
18851
|
+
max-width: none;
|
18852
|
+
}
|
18853
|
+
@media (min-width: 600px) {
|
18854
|
+
.v-bottom-sheet.v-bottom-sheet--inset {
|
18855
|
+
max-width: 70%;
|
19084
18856
|
}
|
18857
|
+
}.v-banner {
|
18858
|
+
display: grid;
|
18859
|
+
flex: 1 1;
|
18860
|
+
font-size: 0.875rem;
|
18861
|
+
grid-template-areas: "prepend content actions";
|
18862
|
+
grid-template-columns: max-content auto max-content;
|
18863
|
+
grid-template-rows: max-content max-content;
|
18864
|
+
line-height: 1.6;
|
18865
|
+
overflow: hidden;
|
18866
|
+
padding-inline: 16px 8px;
|
18867
|
+
padding-top: 16px;
|
18868
|
+
padding-bottom: 16px;
|
18869
|
+
position: relative;
|
18870
|
+
width: 100%;
|
18871
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
18872
|
+
border-style: solid;
|
18873
|
+
border-width: 0 0 thin 0;
|
18874
|
+
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));
|
18875
|
+
border-radius: 0;
|
18876
|
+
background: rgb(var(--v-theme-surface));
|
18877
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
18878
|
+
}
|
18879
|
+
.v-banner--border {
|
18880
|
+
border-width: thin;
|
18881
|
+
box-shadow: none;
|
18882
|
+
}
|
18883
|
+
.v-banner--absolute {
|
18884
|
+
position: absolute;
|
18885
|
+
}
|
18886
|
+
.v-banner--fixed {
|
18887
|
+
position: fixed;
|
18888
|
+
}
|
18889
|
+
.v-banner--sticky {
|
18890
|
+
position: sticky;
|
18891
|
+
}
|
18892
|
+
.v-banner--rounded {
|
18893
|
+
border-radius: 4px;
|
18894
|
+
}
|
18895
|
+
.v-banner--stacked:not(.v-banner--one-line) {
|
18896
|
+
grid-template-areas: "prepend content" ". actions";
|
18897
|
+
}
|
18898
|
+
.v-banner--stacked .v-banner-text {
|
18899
|
+
padding-inline-end: 36px;
|
18900
|
+
}
|
18901
|
+
.v-banner--density-default .v-banner-actions {
|
18902
|
+
margin-bottom: -8px;
|
18903
|
+
}
|
18904
|
+
.v-banner--density-default.v-banner--one-line {
|
18905
|
+
padding-top: 8px;
|
18906
|
+
padding-bottom: 8px;
|
18907
|
+
}
|
18908
|
+
.v-banner--density-default.v-banner--one-line .v-banner-actions {
|
18909
|
+
margin-bottom: 0;
|
18910
|
+
}
|
18911
|
+
.v-banner--density-default.v-banner--one-line {
|
18912
|
+
padding-top: 10px;
|
18913
|
+
}
|
18914
|
+
.v-banner--density-default.v-banner--two-line {
|
18915
|
+
padding-top: 16px;
|
18916
|
+
padding-bottom: 16px;
|
18917
|
+
}
|
18918
|
+
.v-banner--density-default.v-banner--three-line {
|
18919
|
+
padding-top: 24px;
|
18920
|
+
padding-bottom: 16px;
|
18921
|
+
}
|
18922
|
+
.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 {
|
18923
|
+
margin-top: 20px;
|
18924
|
+
}
|
18925
|
+
|
18926
|
+
.v-banner--density-comfortable .v-banner-actions {
|
18927
|
+
margin-bottom: -4px;
|
18928
|
+
}
|
18929
|
+
.v-banner--density-comfortable.v-banner--one-line {
|
18930
|
+
padding-top: 4px;
|
18931
|
+
padding-bottom: 4px;
|
18932
|
+
}
|
18933
|
+
.v-banner--density-comfortable.v-banner--one-line .v-banner-actions {
|
18934
|
+
margin-bottom: 0;
|
18935
|
+
}
|
18936
|
+
.v-banner--density-comfortable.v-banner--two-line {
|
18937
|
+
padding-top: 12px;
|
18938
|
+
padding-bottom: 12px;
|
18939
|
+
}
|
18940
|
+
.v-banner--density-comfortable.v-banner--three-line {
|
18941
|
+
padding-top: 20px;
|
18942
|
+
padding-bottom: 12px;
|
18943
|
+
}
|
18944
|
+
.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 {
|
18945
|
+
margin-top: 16px;
|
18946
|
+
}
|
18947
|
+
|
18948
|
+
.v-banner--density-compact .v-banner-actions {
|
18949
|
+
margin-bottom: 0px;
|
18950
|
+
}
|
18951
|
+
.v-banner--density-compact.v-banner--one-line {
|
18952
|
+
padding-top: 0px;
|
18953
|
+
padding-bottom: 0px;
|
18954
|
+
}
|
18955
|
+
.v-banner--density-compact.v-banner--one-line .v-banner-actions {
|
18956
|
+
margin-bottom: 0;
|
18957
|
+
}
|
18958
|
+
.v-banner--density-compact.v-banner--two-line {
|
18959
|
+
padding-top: 8px;
|
18960
|
+
padding-bottom: 8px;
|
18961
|
+
}
|
18962
|
+
.v-banner--density-compact.v-banner--three-line {
|
18963
|
+
padding-top: 16px;
|
18964
|
+
padding-bottom: 8px;
|
18965
|
+
}
|
18966
|
+
.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 {
|
18967
|
+
margin-top: 12px;
|
18968
|
+
}
|
18969
|
+
|
18970
|
+
.v-banner--sticky {
|
18971
|
+
top: 0;
|
18972
|
+
z-index: 1;
|
18973
|
+
}
|
18974
|
+
|
18975
|
+
.v-banner__content {
|
18976
|
+
align-items: center;
|
18977
|
+
display: flex;
|
18978
|
+
grid-area: content;
|
18979
|
+
}
|
18980
|
+
|
18981
|
+
.v-banner__prepend {
|
18982
|
+
align-self: flex-start;
|
18983
|
+
grid-area: prepend;
|
18984
|
+
margin-inline-end: 24px;
|
18985
|
+
}
|
18986
|
+
|
18987
|
+
.v-banner-actions {
|
18988
|
+
align-self: flex-end;
|
18989
|
+
display: flex;
|
18990
|
+
flex: 0 1;
|
18991
|
+
grid-area: actions;
|
18992
|
+
justify-content: flex-end;
|
18993
|
+
}
|
18994
|
+
.v-banner--two-line .v-banner-actions, .v-banner--three-line .v-banner-actions {
|
18995
|
+
margin-top: 20px;
|
18996
|
+
}
|
18997
|
+
|
18998
|
+
.v-banner-text {
|
18999
|
+
-webkit-box-orient: vertical;
|
19000
|
+
display: -webkit-box;
|
19001
|
+
padding-inline-end: 90px;
|
19002
|
+
overflow: hidden;
|
19003
|
+
}
|
19004
|
+
.v-banner--one-line .v-banner-text {
|
19005
|
+
-webkit-line-clamp: 1;
|
19006
|
+
}
|
19007
|
+
.v-banner--two-line .v-banner-text {
|
19008
|
+
-webkit-line-clamp: 2;
|
19009
|
+
}
|
19010
|
+
.v-banner--three-line .v-banner-text {
|
19011
|
+
-webkit-line-clamp: 3;
|
19012
|
+
}
|
19013
|
+
.v-banner--two-line .v-banner-text, .v-banner--three-line .v-banner-text {
|
19014
|
+
align-self: flex-start;
|
19085
19015
|
}.v-btn {
|
19086
19016
|
align-items: center;
|
19087
19017
|
border-radius: 4px;
|
@@ -19563,48 +19493,166 @@ html.overflow-y-hidden {
|
|
19563
19493
|
flex-direction: column;
|
19564
19494
|
height: 100% !important;
|
19565
19495
|
width: 50px;
|
19566
|
-
}.v-
|
19567
|
-
display:
|
19568
|
-
|
19569
|
-
|
19570
|
-
|
19571
|
-
padding: 0;
|
19572
|
-
text-decoration: none;
|
19573
|
-
transition-duration: 0.28s;
|
19574
|
-
transition-property: box-shadow, opacity, background;
|
19575
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
19576
|
-
z-index: 0;
|
19577
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
19578
|
-
border-style: solid;
|
19579
|
-
border-width: 0;
|
19580
|
-
border-radius: 4px;
|
19496
|
+
}.v-breadcrumbs {
|
19497
|
+
display: flex;
|
19498
|
+
align-items: center;
|
19499
|
+
line-height: 1.6;
|
19500
|
+
padding: 16px 12px;
|
19581
19501
|
}
|
19582
|
-
.v-
|
19583
|
-
border-
|
19584
|
-
box-shadow: none;
|
19502
|
+
.v-breadcrumbs--rounded {
|
19503
|
+
border-radius: 4px;
|
19585
19504
|
}
|
19586
|
-
.v-
|
19587
|
-
|
19505
|
+
.v-breadcrumbs--density-default {
|
19506
|
+
padding-top: 16px;
|
19507
|
+
padding-bottom: 16px;
|
19588
19508
|
}
|
19589
|
-
|
19590
|
-
|
19509
|
+
|
19510
|
+
.v-breadcrumbs--density-comfortable {
|
19511
|
+
padding-top: 12px;
|
19512
|
+
padding-bottom: 12px;
|
19591
19513
|
}
|
19592
|
-
|
19593
|
-
|
19514
|
+
|
19515
|
+
.v-breadcrumbs--density-compact {
|
19516
|
+
padding-top: 8px;
|
19517
|
+
padding-bottom: 8px;
|
19594
19518
|
}
|
19595
|
-
|
19596
|
-
|
19519
|
+
|
19520
|
+
.v-breadcrumbs__prepend {
|
19521
|
+
align-items: center;
|
19522
|
+
display: inline-flex;
|
19597
19523
|
}
|
19598
|
-
|
19599
|
-
|
19600
|
-
|
19601
|
-
|
19524
|
+
|
19525
|
+
.v-breadcrumbs-item {
|
19526
|
+
align-items: center;
|
19527
|
+
color: inherit;
|
19528
|
+
display: inline-flex;
|
19529
|
+
padding: 0 4px;
|
19530
|
+
text-decoration: none;
|
19531
|
+
vertical-align: middle;
|
19602
19532
|
}
|
19603
|
-
.v-
|
19604
|
-
opacity:
|
19533
|
+
.v-breadcrumbs-item--disabled {
|
19534
|
+
opacity: var(--v-disabled-opacity);
|
19535
|
+
pointer-events: none;
|
19605
19536
|
}
|
19606
|
-
.v-
|
19607
|
-
|
19537
|
+
.v-breadcrumbs-item--link {
|
19538
|
+
color: inherit;
|
19539
|
+
text-decoration: none;
|
19540
|
+
}
|
19541
|
+
.v-breadcrumbs-item--link:hover {
|
19542
|
+
text-decoration: underline;
|
19543
|
+
}
|
19544
|
+
.v-breadcrumbs-item .v-icon {
|
19545
|
+
font-size: 1rem;
|
19546
|
+
margin-inline: -4px 2px;
|
19547
|
+
}
|
19548
|
+
|
19549
|
+
.v-breadcrumbs-divider {
|
19550
|
+
display: inline-block;
|
19551
|
+
padding: 0 8px;
|
19552
|
+
vertical-align: middle;
|
19553
|
+
}.v-checkbox.v-input {
|
19554
|
+
flex: 0 1 auto;
|
19555
|
+
}
|
19556
|
+
.v-checkbox .v-selection-control {
|
19557
|
+
min-height: var(--v-input-control-height);
|
19558
|
+
}.v-btn-group {
|
19559
|
+
display: inline-flex;
|
19560
|
+
flex-wrap: nowrap;
|
19561
|
+
max-width: 100%;
|
19562
|
+
min-width: 0;
|
19563
|
+
overflow: hidden;
|
19564
|
+
vertical-align: middle;
|
19565
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
19566
|
+
border-style: solid;
|
19567
|
+
border-width: 0;
|
19568
|
+
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));
|
19569
|
+
border-radius: 4px;
|
19570
|
+
background: transparent;
|
19571
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
19572
|
+
}
|
19573
|
+
.v-btn-group--border {
|
19574
|
+
border-width: thin;
|
19575
|
+
box-shadow: none;
|
19576
|
+
}
|
19577
|
+
.v-btn-group--density-default.v-btn-group {
|
19578
|
+
height: 48px;
|
19579
|
+
}
|
19580
|
+
|
19581
|
+
.v-btn-group--density-comfortable.v-btn-group {
|
19582
|
+
height: 40px;
|
19583
|
+
}
|
19584
|
+
|
19585
|
+
.v-btn-group--density-compact.v-btn-group {
|
19586
|
+
height: 36px;
|
19587
|
+
}
|
19588
|
+
|
19589
|
+
.v-btn-group .v-btn {
|
19590
|
+
border-radius: 0;
|
19591
|
+
border-color: inherit;
|
19592
|
+
}
|
19593
|
+
.v-btn-group .v-btn:not(:last-child) {
|
19594
|
+
border-inline-end: none;
|
19595
|
+
}
|
19596
|
+
.v-btn-group .v-btn:not(:first-child) {
|
19597
|
+
border-inline-start: none;
|
19598
|
+
}
|
19599
|
+
.v-btn-group .v-btn:first-child {
|
19600
|
+
border-start-start-radius: inherit;
|
19601
|
+
border-end-start-radius: inherit;
|
19602
|
+
}
|
19603
|
+
.v-btn-group .v-btn:last-child {
|
19604
|
+
border-start-end-radius: inherit;
|
19605
|
+
border-end-end-radius: inherit;
|
19606
|
+
}
|
19607
|
+
.v-btn-group--divided .v-btn:not(:last-child) {
|
19608
|
+
border-inline-end-width: thin;
|
19609
|
+
border-inline-end-style: solid;
|
19610
|
+
border-inline-end-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
19611
|
+
}
|
19612
|
+
.v-btn-group--tile {
|
19613
|
+
border-radius: 0;
|
19614
|
+
}.v-card {
|
19615
|
+
display: block;
|
19616
|
+
overflow: hidden;
|
19617
|
+
overflow-wrap: break-word;
|
19618
|
+
position: relative;
|
19619
|
+
padding: 0;
|
19620
|
+
text-decoration: none;
|
19621
|
+
transition-duration: 0.28s;
|
19622
|
+
transition-property: box-shadow, opacity, background;
|
19623
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
19624
|
+
z-index: 0;
|
19625
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
19626
|
+
border-style: solid;
|
19627
|
+
border-width: 0;
|
19628
|
+
border-radius: 4px;
|
19629
|
+
}
|
19630
|
+
.v-card--border {
|
19631
|
+
border-width: thin;
|
19632
|
+
box-shadow: none;
|
19633
|
+
}
|
19634
|
+
.v-card--absolute {
|
19635
|
+
position: absolute;
|
19636
|
+
}
|
19637
|
+
.v-card--fixed {
|
19638
|
+
position: fixed;
|
19639
|
+
}
|
19640
|
+
.v-card:hover > .v-card__overlay {
|
19641
|
+
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
19642
|
+
}
|
19643
|
+
.v-card:focus-visible > .v-card__overlay {
|
19644
|
+
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
19645
|
+
}
|
19646
|
+
@supports not selector(:focus-visible) {
|
19647
|
+
.v-card:focus > .v-card__overlay {
|
19648
|
+
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
19649
|
+
}
|
19650
|
+
}
|
19651
|
+
.v-card--active > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true] > .v-card__overlay {
|
19652
|
+
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
19653
|
+
}
|
19654
|
+
.v-card--active:hover > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true]:hover > .v-card__overlay {
|
19655
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
19608
19656
|
}
|
19609
19657
|
.v-card--active:focus-visible > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true]:focus-visible > .v-card__overlay {
|
19610
19658
|
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
@@ -19862,62 +19910,24 @@ html.overflow-y-hidden {
|
|
19862
19910
|
pointer-events: none;
|
19863
19911
|
opacity: 0;
|
19864
19912
|
transition: opacity 0.2s ease-in-out;
|
19865
|
-
}.v-
|
19866
|
-
display:
|
19867
|
-
flex-wrap: nowrap;
|
19913
|
+
}.v-chip-group {
|
19914
|
+
display: flex;
|
19868
19915
|
max-width: 100%;
|
19869
19916
|
min-width: 0;
|
19870
|
-
overflow:
|
19871
|
-
|
19872
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
19873
|
-
border-style: solid;
|
19874
|
-
border-width: 0;
|
19875
|
-
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));
|
19876
|
-
border-radius: 4px;
|
19877
|
-
background: transparent;
|
19878
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
19879
|
-
}
|
19880
|
-
.v-btn-group--border {
|
19881
|
-
border-width: thin;
|
19882
|
-
box-shadow: none;
|
19883
|
-
}
|
19884
|
-
.v-btn-group--density-default.v-btn-group {
|
19885
|
-
height: 48px;
|
19917
|
+
overflow-x: auto;
|
19918
|
+
padding: 4px 0;
|
19886
19919
|
}
|
19887
|
-
|
19888
|
-
|
19889
|
-
height: 40px;
|
19920
|
+
.v-chip-group .v-chip {
|
19921
|
+
margin: 4px 8px 4px 0;
|
19890
19922
|
}
|
19891
|
-
|
19892
|
-
|
19893
|
-
height: 36px;
|
19923
|
+
.v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
|
19924
|
+
opacity: var(--v-activated-opacity);
|
19894
19925
|
}
|
19895
19926
|
|
19896
|
-
.v-
|
19897
|
-
|
19898
|
-
|
19899
|
-
|
19900
|
-
.v-btn-group .v-btn:not(:last-child) {
|
19901
|
-
border-inline-end: none;
|
19902
|
-
}
|
19903
|
-
.v-btn-group .v-btn:not(:first-child) {
|
19904
|
-
border-inline-start: none;
|
19905
|
-
}
|
19906
|
-
.v-btn-group .v-btn:first-child {
|
19907
|
-
border-start-start-radius: inherit;
|
19908
|
-
border-end-start-radius: inherit;
|
19909
|
-
}
|
19910
|
-
.v-btn-group .v-btn:last-child {
|
19911
|
-
border-start-end-radius: inherit;
|
19912
|
-
border-end-end-radius: inherit;
|
19913
|
-
}
|
19914
|
-
.v-btn-group--divided .v-btn:not(:last-child) {
|
19915
|
-
border-inline-end-width: thin;
|
19916
|
-
border-inline-end-style: solid;
|
19917
|
-
border-inline-end-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
19918
|
-
}
|
19919
|
-
.v-btn-group--tile {
|
19920
|
-
border-radius: 0;
|
19927
|
+
.v-chip-group--column .v-slide-group__content {
|
19928
|
+
white-space: normal;
|
19929
|
+
flex-wrap: wrap;
|
19930
|
+
max-width: 100%;
|
19921
19931
|
}.v-chip {
|
19922
19932
|
align-items: center;
|
19923
19933
|
display: inline-flex;
|
@@ -20330,29 +20340,6 @@ html.overflow-y-hidden {
|
|
20330
20340
|
|
20331
20341
|
.v-chip--label {
|
20332
20342
|
border-radius: 4px;
|
20333
|
-
}.v-checkbox.v-input {
|
20334
|
-
flex: 0 1 auto;
|
20335
|
-
}
|
20336
|
-
.v-checkbox .v-selection-control {
|
20337
|
-
min-height: var(--v-input-control-height);
|
20338
|
-
}.v-chip-group {
|
20339
|
-
display: flex;
|
20340
|
-
max-width: 100%;
|
20341
|
-
min-width: 0;
|
20342
|
-
overflow-x: auto;
|
20343
|
-
padding: 4px 0;
|
20344
|
-
}
|
20345
|
-
.v-chip-group .v-chip {
|
20346
|
-
margin: 4px 8px 4px 0;
|
20347
|
-
}
|
20348
|
-
.v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
|
20349
|
-
opacity: var(--v-activated-opacity);
|
20350
|
-
}
|
20351
|
-
|
20352
|
-
.v-chip-group--column .v-slide-group__content {
|
20353
|
-
white-space: normal;
|
20354
|
-
flex-wrap: wrap;
|
20355
|
-
max-width: 100%;
|
20356
20343
|
}.v-color-picker {
|
20357
20344
|
align-self: flex-start;
|
20358
20345
|
contain: content;
|
@@ -20373,49 +20360,130 @@ html.overflow-y-hidden {
|
|
20373
20360
|
}
|
20374
20361
|
.v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
|
20375
20362
|
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));
|
20376
|
-
}.v-
|
20377
|
-
|
20378
|
-
|
20379
|
-
|
20380
|
-
margin-left: auto;
|
20381
|
-
}
|
20382
|
-
@media (min-width: 960px) {
|
20383
|
-
.v-container {
|
20384
|
-
max-width: 900px;
|
20385
|
-
}
|
20363
|
+
}.v-combobox .v-field .v-text-field__prefix,
|
20364
|
+
.v-combobox .v-field .v-text-field__suffix,
|
20365
|
+
.v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
|
20366
|
+
cursor: text;
|
20386
20367
|
}
|
20387
|
-
|
20388
|
-
|
20389
|
-
max-width: 1200px;
|
20390
|
-
}
|
20368
|
+
.v-combobox .v-field .v-field__input > input {
|
20369
|
+
flex: 1 1;
|
20391
20370
|
}
|
20392
|
-
|
20393
|
-
|
20394
|
-
max-width: 1800px;
|
20395
|
-
}
|
20371
|
+
.v-combobox .v-field input {
|
20372
|
+
min-width: 64px;
|
20396
20373
|
}
|
20397
|
-
|
20398
|
-
|
20399
|
-
max-width: 2400px;
|
20400
|
-
}
|
20374
|
+
.v-combobox .v-field:not(.v-field--focused) input {
|
20375
|
+
min-width: 0;
|
20401
20376
|
}
|
20402
|
-
.v-
|
20403
|
-
|
20377
|
+
.v-combobox .v-field--dirty .v-combobox__selection {
|
20378
|
+
margin-inline-end: 2px;
|
20404
20379
|
}
|
20405
|
-
.v-
|
20406
|
-
|
20407
|
-
|
20408
|
-
|
20380
|
+
.v-combobox .v-combobox__selection-text {
|
20381
|
+
overflow: hidden;
|
20382
|
+
text-overflow: ellipsis;
|
20383
|
+
white-space: nowrap;
|
20409
20384
|
}
|
20410
20385
|
|
20411
|
-
.v-
|
20412
|
-
|
20413
|
-
|
20414
|
-
|
20415
|
-
margin: -12px;
|
20386
|
+
.v-combobox__content {
|
20387
|
+
overflow: hidden;
|
20388
|
+
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));
|
20389
|
+
border-radius: 4px;
|
20416
20390
|
}
|
20417
|
-
.v-
|
20418
|
-
|
20391
|
+
.v-combobox__mask {
|
20392
|
+
background: rgb(var(--v-theme-surface-light));
|
20393
|
+
}
|
20394
|
+
.v-combobox__selection {
|
20395
|
+
display: inline-flex;
|
20396
|
+
align-items: center;
|
20397
|
+
height: 1.5rem;
|
20398
|
+
letter-spacing: inherit;
|
20399
|
+
line-height: inherit;
|
20400
|
+
max-width: calc(100% - 2px - 2px);
|
20401
|
+
}
|
20402
|
+
.v-combobox__selection:first-child {
|
20403
|
+
margin-inline-start: 0;
|
20404
|
+
}
|
20405
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
20406
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
20407
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
20408
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
20409
|
+
top: 0px;
|
20410
|
+
}
|
20411
|
+
.v-combobox--selecting-index .v-combobox__selection {
|
20412
|
+
opacity: var(--v-medium-emphasis-opacity);
|
20413
|
+
}
|
20414
|
+
.v-combobox--selecting-index .v-combobox__selection--selected {
|
20415
|
+
opacity: 1;
|
20416
|
+
}
|
20417
|
+
.v-combobox--selecting-index .v-field__input > input {
|
20418
|
+
caret-color: transparent;
|
20419
|
+
}
|
20420
|
+
.v-combobox--single:not(.v-combobox--selection-slot).v-text-field input {
|
20421
|
+
flex: 1 1;
|
20422
|
+
position: absolute;
|
20423
|
+
left: 0;
|
20424
|
+
right: 0;
|
20425
|
+
width: 100%;
|
20426
|
+
padding-inline: inherit;
|
20427
|
+
}
|
20428
|
+
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--active input {
|
20429
|
+
transition: none;
|
20430
|
+
}
|
20431
|
+
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--dirty:not(.v-field--focused) input {
|
20432
|
+
opacity: 0;
|
20433
|
+
}
|
20434
|
+
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--focused .v-combobox__selection {
|
20435
|
+
opacity: 0;
|
20436
|
+
}
|
20437
|
+
.v-combobox__menu-icon {
|
20438
|
+
margin-inline-start: 4px;
|
20439
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
20440
|
+
}
|
20441
|
+
.v-combobox--active-menu .v-combobox__menu-icon {
|
20442
|
+
opacity: var(--v-high-emphasis-opacity);
|
20443
|
+
transform: rotate(180deg);
|
20444
|
+
}.v-container {
|
20445
|
+
width: 100%;
|
20446
|
+
padding: 16px;
|
20447
|
+
margin-right: auto;
|
20448
|
+
margin-left: auto;
|
20449
|
+
}
|
20450
|
+
@media (min-width: 960px) {
|
20451
|
+
.v-container {
|
20452
|
+
max-width: 900px;
|
20453
|
+
}
|
20454
|
+
}
|
20455
|
+
@media (min-width: 1280px) {
|
20456
|
+
.v-container {
|
20457
|
+
max-width: 1200px;
|
20458
|
+
}
|
20459
|
+
}
|
20460
|
+
@media (min-width: 1920px) {
|
20461
|
+
.v-container {
|
20462
|
+
max-width: 1800px;
|
20463
|
+
}
|
20464
|
+
}
|
20465
|
+
@media (min-width: 2560px) {
|
20466
|
+
.v-container {
|
20467
|
+
max-width: 2400px;
|
20468
|
+
}
|
20469
|
+
}
|
20470
|
+
.v-container--fluid {
|
20471
|
+
max-width: 100%;
|
20472
|
+
}
|
20473
|
+
.v-container.fill-height {
|
20474
|
+
align-items: center;
|
20475
|
+
display: flex;
|
20476
|
+
flex-wrap: wrap;
|
20477
|
+
}
|
20478
|
+
|
20479
|
+
.v-row {
|
20480
|
+
display: flex;
|
20481
|
+
flex-wrap: wrap;
|
20482
|
+
flex: 1 1 auto;
|
20483
|
+
margin: -12px;
|
20484
|
+
}
|
20485
|
+
.v-row + .v-row {
|
20486
|
+
margin-top: 12px;
|
20419
20487
|
}
|
20420
20488
|
.v-row + .v-row--dense {
|
20421
20489
|
margin-top: 4px;
|
@@ -21045,118 +21113,11 @@ html.overflow-y-hidden {
|
|
21045
21113
|
.offset-xxl-11 {
|
21046
21114
|
margin-inline-start: 91.6666666667%;
|
21047
21115
|
}
|
21048
|
-
}.v-
|
21049
|
-
|
21050
|
-
|
21051
|
-
|
21052
|
-
|
21053
|
-
.v-combobox .v-field .v-field__input > input {
|
21054
|
-
flex: 1 1;
|
21055
|
-
}
|
21056
|
-
.v-combobox .v-field input {
|
21057
|
-
min-width: 64px;
|
21058
|
-
}
|
21059
|
-
.v-combobox .v-field:not(.v-field--focused) input {
|
21060
|
-
min-width: 0;
|
21061
|
-
}
|
21062
|
-
.v-combobox .v-field--dirty .v-combobox__selection {
|
21063
|
-
margin-inline-end: 2px;
|
21064
|
-
}
|
21065
|
-
.v-combobox .v-combobox__selection-text {
|
21066
|
-
overflow: hidden;
|
21067
|
-
text-overflow: ellipsis;
|
21068
|
-
white-space: nowrap;
|
21069
|
-
}
|
21070
|
-
|
21071
|
-
.v-combobox__content {
|
21072
|
-
overflow: hidden;
|
21073
|
-
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));
|
21074
|
-
border-radius: 4px;
|
21075
|
-
}
|
21076
|
-
.v-combobox__mask {
|
21077
|
-
background: rgb(var(--v-theme-surface-light));
|
21078
|
-
}
|
21079
|
-
.v-combobox__selection {
|
21080
|
-
display: inline-flex;
|
21081
|
-
align-items: center;
|
21082
|
-
height: 1.5rem;
|
21083
|
-
letter-spacing: inherit;
|
21084
|
-
line-height: inherit;
|
21085
|
-
max-width: calc(100% - 2px - 2px);
|
21086
|
-
}
|
21087
|
-
.v-combobox__selection:first-child {
|
21088
|
-
margin-inline-start: 0;
|
21089
|
-
}
|
21090
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
21091
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
21092
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
21093
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
21094
|
-
top: 0px;
|
21095
|
-
}
|
21096
|
-
.v-combobox--selecting-index .v-combobox__selection {
|
21097
|
-
opacity: var(--v-medium-emphasis-opacity);
|
21098
|
-
}
|
21099
|
-
.v-combobox--selecting-index .v-combobox__selection--selected {
|
21100
|
-
opacity: 1;
|
21101
|
-
}
|
21102
|
-
.v-combobox--selecting-index .v-field__input > input {
|
21103
|
-
caret-color: transparent;
|
21104
|
-
}
|
21105
|
-
.v-combobox--single:not(.v-combobox--selection-slot).v-text-field input {
|
21106
|
-
flex: 1 1;
|
21107
|
-
position: absolute;
|
21108
|
-
left: 0;
|
21109
|
-
right: 0;
|
21110
|
-
width: 100%;
|
21111
|
-
padding-inline: inherit;
|
21112
|
-
}
|
21113
|
-
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--active input {
|
21114
|
-
transition: none;
|
21115
|
-
}
|
21116
|
-
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--dirty:not(.v-field--focused) input {
|
21117
|
-
opacity: 0;
|
21118
|
-
}
|
21119
|
-
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--focused .v-combobox__selection {
|
21120
|
-
opacity: 0;
|
21121
|
-
}
|
21122
|
-
.v-combobox__menu-icon {
|
21123
|
-
margin-inline-start: 4px;
|
21124
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
21125
|
-
}
|
21126
|
-
.v-combobox--active-menu .v-combobox__menu-icon {
|
21127
|
-
opacity: var(--v-high-emphasis-opacity);
|
21128
|
-
transform: rotate(180deg);
|
21129
|
-
}.v-data-table-footer {
|
21130
|
-
align-items: center;
|
21131
|
-
display: flex;
|
21132
|
-
flex-wrap: wrap;
|
21133
|
-
justify-content: flex-end;
|
21134
|
-
padding: 8px 4px;
|
21135
|
-
}
|
21136
|
-
.v-data-table-footer__items-per-page {
|
21137
|
-
align-items: center;
|
21138
|
-
display: flex;
|
21139
|
-
justify-content: center;
|
21140
|
-
}
|
21141
|
-
.v-data-table-footer__items-per-page > span {
|
21142
|
-
padding-inline-end: 8px;
|
21143
|
-
}
|
21144
|
-
.v-data-table-footer__items-per-page > .v-select {
|
21145
|
-
width: 90px;
|
21146
|
-
}
|
21147
|
-
.v-data-table-footer__info {
|
21148
|
-
display: flex;
|
21149
|
-
justify-content: flex-end;
|
21150
|
-
min-width: 116px;
|
21151
|
-
padding: 0 16px;
|
21152
|
-
}
|
21153
|
-
.v-data-table-footer__paginationz {
|
21154
|
-
align-items: center;
|
21155
|
-
display: flex;
|
21156
|
-
margin-inline-start: 16px;
|
21157
|
-
}
|
21158
|
-
.v-data-table-footer__page {
|
21159
|
-
padding: 0 8px;
|
21116
|
+
}.v-counter {
|
21117
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
21118
|
+
flex: 0 1 auto;
|
21119
|
+
font-size: 12px;
|
21120
|
+
transition-duration: 150ms;
|
21160
21121
|
}.v-data-table {
|
21161
21122
|
width: 100%;
|
21162
21123
|
}
|
@@ -21344,73 +21305,93 @@ html.overflow-y-hidden {
|
|
21344
21305
|
}
|
21345
21306
|
.v-data-table__td-sort-icon-active {
|
21346
21307
|
color: rgba(var(--v-theme-on-surface));
|
21347
|
-
}.v-
|
21348
|
-
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
21349
|
-
flex: 0 1 auto;
|
21350
|
-
font-size: 12px;
|
21351
|
-
transition-duration: 150ms;
|
21352
|
-
}.v-date-picker {
|
21353
|
-
overflow: hidden;
|
21354
|
-
width: 328px;
|
21355
|
-
}
|
21356
|
-
.v-date-picker--show-week {
|
21357
|
-
width: 368px;
|
21358
|
-
}.v-date-picker-controls {
|
21359
|
-
display: flex;
|
21308
|
+
}.v-data-table-footer {
|
21360
21309
|
align-items: center;
|
21361
|
-
|
21362
|
-
|
21363
|
-
|
21364
|
-
padding
|
21365
|
-
padding-inline-start: 6px;
|
21366
|
-
padding-inline-end: 12px;
|
21310
|
+
display: flex;
|
21311
|
+
flex-wrap: wrap;
|
21312
|
+
justify-content: flex-end;
|
21313
|
+
padding: 8px 4px;
|
21367
21314
|
}
|
21368
|
-
.v-
|
21369
|
-
|
21370
|
-
|
21371
|
-
|
21372
|
-
letter-spacing: initial;
|
21315
|
+
.v-data-table-footer__items-per-page {
|
21316
|
+
align-items: center;
|
21317
|
+
display: flex;
|
21318
|
+
justify-content: center;
|
21373
21319
|
}
|
21374
|
-
.v-
|
21375
|
-
padding-inline-
|
21320
|
+
.v-data-table-footer__items-per-page > span {
|
21321
|
+
padding-inline-end: 8px;
|
21376
21322
|
}
|
21377
|
-
.v-
|
21378
|
-
|
21323
|
+
.v-data-table-footer__items-per-page > .v-select {
|
21324
|
+
width: 90px;
|
21379
21325
|
}
|
21380
|
-
.v-
|
21381
|
-
|
21326
|
+
.v-data-table-footer__info {
|
21327
|
+
display: flex;
|
21328
|
+
justify-content: flex-end;
|
21329
|
+
min-width: 116px;
|
21330
|
+
padding: 0 16px;
|
21382
21331
|
}
|
21383
|
-
.v-
|
21384
|
-
|
21332
|
+
.v-data-table-footer__paginationz {
|
21333
|
+
align-items: center;
|
21334
|
+
display: flex;
|
21335
|
+
margin-inline-start: 16px;
|
21385
21336
|
}
|
21386
|
-
.v-
|
21387
|
-
|
21337
|
+
.v-data-table-footer__page {
|
21338
|
+
padding: 0 8px;
|
21339
|
+
}.v-divider {
|
21340
|
+
display: block;
|
21341
|
+
flex: 1 1 100%;
|
21342
|
+
height: 0px;
|
21343
|
+
max-height: 0px;
|
21344
|
+
opacity: var(--v-border-opacity);
|
21345
|
+
transition: inherit;
|
21346
|
+
border-style: solid;
|
21347
|
+
border-width: thin 0 0 0;
|
21388
21348
|
}
|
21389
|
-
.v-
|
21390
|
-
|
21349
|
+
.v-divider--vertical {
|
21350
|
+
align-self: stretch;
|
21351
|
+
border-width: 0 thin 0 0;
|
21352
|
+
display: inline-flex;
|
21353
|
+
height: auto;
|
21354
|
+
margin-left: -1px;
|
21355
|
+
max-height: 100%;
|
21356
|
+
max-width: 0px;
|
21357
|
+
vertical-align: text-bottom;
|
21358
|
+
width: 0px;
|
21359
|
+
}
|
21360
|
+
.v-divider--inset:not(.v-divider--vertical) {
|
21361
|
+
max-width: calc(100% - 72px);
|
21362
|
+
margin-inline-start: 72px;
|
21363
|
+
}
|
21364
|
+
.v-divider--inset.v-divider--vertical {
|
21365
|
+
margin-bottom: 8px;
|
21366
|
+
margin-top: 8px;
|
21367
|
+
max-height: calc(100% - 16px);
|
21391
21368
|
}
|
21392
21369
|
|
21393
|
-
.v-
|
21394
|
-
|
21370
|
+
.v-divider__content {
|
21371
|
+
padding: 0 16px;
|
21372
|
+
text-wrap: nowrap;
|
21395
21373
|
}
|
21396
|
-
.v-
|
21397
|
-
|
21398
|
-
text-align: center;
|
21374
|
+
.v-divider__wrapper--vertical .v-divider__content {
|
21375
|
+
padding: 4px 0;
|
21399
21376
|
}
|
21400
21377
|
|
21401
|
-
.v-
|
21378
|
+
.v-divider__wrapper {
|
21402
21379
|
display: flex;
|
21380
|
+
align-items: center;
|
21381
|
+
justify-content: center;
|
21403
21382
|
}
|
21404
|
-
.v-
|
21405
|
-
flex-direction:
|
21383
|
+
.v-divider__wrapper--vertical {
|
21384
|
+
flex-direction: column;
|
21385
|
+
height: 100%;
|
21406
21386
|
}
|
21407
|
-
|
21408
|
-
|
21409
|
-
|
21387
|
+
.v-divider__wrapper--vertical .v-divider {
|
21388
|
+
margin: 0 auto;
|
21389
|
+
}.v-date-picker {
|
21390
|
+
overflow: hidden;
|
21391
|
+
width: 328px;
|
21410
21392
|
}
|
21411
|
-
|
21412
|
-
|
21413
|
-
display: inline-block;
|
21393
|
+
.v-date-picker--show-week {
|
21394
|
+
width: 368px;
|
21414
21395
|
}.v-date-picker-header {
|
21415
21396
|
align-items: flex-end;
|
21416
21397
|
height: 70px;
|
@@ -21471,25 +21452,62 @@ html.overflow-y-hidden {
|
|
21471
21452
|
.date-picker-header-reverse-transition-leave-to {
|
21472
21453
|
opacity: 0;
|
21473
21454
|
transform: translate(0, 100%);
|
21474
|
-
}.v-date-picker-
|
21475
|
-
|
21476
|
-
}
|
21477
|
-
|
21478
|
-
.v-date-picker-months__content {
|
21455
|
+
}.v-date-picker-controls {
|
21456
|
+
display: flex;
|
21479
21457
|
align-items: center;
|
21480
|
-
|
21481
|
-
|
21482
|
-
|
21483
|
-
|
21484
|
-
|
21485
|
-
|
21486
|
-
padding-inline-start: 36px;
|
21487
|
-
padding-inline-end: 36px;
|
21458
|
+
justify-content: space-between;
|
21459
|
+
font-size: 0.875rem;
|
21460
|
+
padding-top: 4px;
|
21461
|
+
padding-bottom: 4px;
|
21462
|
+
padding-inline-start: 6px;
|
21463
|
+
padding-inline-end: 12px;
|
21488
21464
|
}
|
21489
|
-
.v-date-picker-
|
21465
|
+
.v-date-picker-controls > .v-btn:first-child {
|
21490
21466
|
text-transform: none;
|
21491
|
-
|
21492
|
-
|
21467
|
+
font-weight: 400;
|
21468
|
+
line-height: initial;
|
21469
|
+
letter-spacing: initial;
|
21470
|
+
}
|
21471
|
+
.v-date-picker-controls--variant-classic {
|
21472
|
+
padding-inline-start: 12px;
|
21473
|
+
}
|
21474
|
+
.v-date-picker-controls--variant-modern .v-date-picker__title:not(:hover) {
|
21475
|
+
opacity: 0.7;
|
21476
|
+
}
|
21477
|
+
.v-date-picker--month .v-date-picker-controls--variant-modern .v-date-picker__title {
|
21478
|
+
cursor: pointer;
|
21479
|
+
}
|
21480
|
+
.v-date-picker--year .v-date-picker-controls--variant-modern .v-date-picker__title {
|
21481
|
+
opacity: 1;
|
21482
|
+
}
|
21483
|
+
.v-date-picker-controls .v-btn:last-child {
|
21484
|
+
margin-inline-start: 4px;
|
21485
|
+
}
|
21486
|
+
.v-date-picker--year .v-date-picker-controls .v-date-picker-controls__mode-btn {
|
21487
|
+
transform: rotate(180deg);
|
21488
|
+
}
|
21489
|
+
|
21490
|
+
.v-date-picker-controls__date {
|
21491
|
+
margin-inline-end: 4px;
|
21492
|
+
}
|
21493
|
+
.v-date-picker-controls--variant-classic .v-date-picker-controls__date {
|
21494
|
+
margin: auto;
|
21495
|
+
text-align: center;
|
21496
|
+
}
|
21497
|
+
|
21498
|
+
.v-date-picker-controls__month {
|
21499
|
+
display: flex;
|
21500
|
+
}
|
21501
|
+
.v-locale--is-rtl.v-date-picker-controls__month, .v-locale--is-rtl .v-date-picker-controls__month {
|
21502
|
+
flex-direction: row-reverse;
|
21503
|
+
}
|
21504
|
+
|
21505
|
+
.v-date-picker-controls--variant-classic .v-date-picker-controls__month {
|
21506
|
+
flex: 1 0 auto;
|
21507
|
+
}
|
21508
|
+
|
21509
|
+
.v-date-picker__title {
|
21510
|
+
display: inline-block;
|
21493
21511
|
}.v-date-picker-month {
|
21494
21512
|
display: flex;
|
21495
21513
|
justify-content: center;
|
@@ -21545,6 +21563,25 @@ html.overflow-y-hidden {
|
|
21545
21563
|
|
21546
21564
|
.v-date-picker-month__day--hide-adjacent {
|
21547
21565
|
opacity: 0;
|
21566
|
+
}.v-date-picker-months {
|
21567
|
+
height: 288px;
|
21568
|
+
}
|
21569
|
+
|
21570
|
+
.v-date-picker-months__content {
|
21571
|
+
align-items: center;
|
21572
|
+
display: grid;
|
21573
|
+
flex: 1 1;
|
21574
|
+
height: inherit;
|
21575
|
+
justify-content: space-around;
|
21576
|
+
grid-template-columns: repeat(2, 1fr);
|
21577
|
+
grid-gap: 0px 24px;
|
21578
|
+
padding-inline-start: 36px;
|
21579
|
+
padding-inline-end: 36px;
|
21580
|
+
}
|
21581
|
+
.v-date-picker-months__content .v-btn {
|
21582
|
+
text-transform: none;
|
21583
|
+
padding-inline-start: 8px;
|
21584
|
+
padding-inline-end: 8px;
|
21548
21585
|
}.v-date-picker-years {
|
21549
21586
|
height: 288px;
|
21550
21587
|
overflow-y: scroll;
|
@@ -21560,86 +21597,105 @@ html.overflow-y-hidden {
|
|
21560
21597
|
}
|
21561
21598
|
.v-date-picker-years__content .v-btn {
|
21562
21599
|
padding-inline: 8px;
|
21563
|
-
}.v-
|
21564
|
-
|
21565
|
-
flex: 1 1 100%;
|
21566
|
-
height: 0px;
|
21567
|
-
max-height: 0px;
|
21568
|
-
opacity: var(--v-border-opacity);
|
21569
|
-
transition: inherit;
|
21570
|
-
border-style: solid;
|
21571
|
-
border-width: thin 0 0 0;
|
21572
|
-
}
|
21573
|
-
.v-divider--vertical {
|
21574
|
-
align-self: stretch;
|
21575
|
-
border-width: 0 thin 0 0;
|
21600
|
+
}.v-fab {
|
21601
|
+
align-items: center;
|
21576
21602
|
display: inline-flex;
|
21577
|
-
|
21578
|
-
|
21579
|
-
|
21580
|
-
|
21581
|
-
|
21582
|
-
|
21583
|
-
}
|
21584
|
-
.v-divider--inset:not(.v-divider--vertical) {
|
21585
|
-
max-width: calc(100% - 72px);
|
21586
|
-
margin-inline-start: 72px;
|
21587
|
-
}
|
21588
|
-
.v-divider--inset.v-divider--vertical {
|
21589
|
-
margin-bottom: 8px;
|
21590
|
-
margin-top: 8px;
|
21591
|
-
max-height: calc(100% - 16px);
|
21603
|
+
flex: 1 1 auto;
|
21604
|
+
pointer-events: none;
|
21605
|
+
position: relative;
|
21606
|
+
transition-duration: 0.2s;
|
21607
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
21608
|
+
vertical-align: middle;
|
21592
21609
|
}
|
21593
|
-
|
21594
|
-
|
21595
|
-
padding: 0 16px;
|
21596
|
-
text-wrap: nowrap;
|
21610
|
+
.v-fab .v-btn {
|
21611
|
+
pointer-events: auto;
|
21597
21612
|
}
|
21598
|
-
.v-
|
21599
|
-
|
21613
|
+
.v-fab .v-btn--variant-elevated {
|
21614
|
+
box-shadow: 0px 3px 3px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 3px 4px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 8px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
21600
21615
|
}
|
21601
|
-
|
21602
|
-
.v-divider__wrapper {
|
21616
|
+
.v-fab--app, .v-fab--absolute {
|
21603
21617
|
display: flex;
|
21604
|
-
align-items: center;
|
21605
|
-
justify-content: center;
|
21606
21618
|
}
|
21607
|
-
.v-
|
21608
|
-
|
21609
|
-
height: 100%;
|
21619
|
+
.v-fab--start, .v-fab--left {
|
21620
|
+
justify-content: flex-start;
|
21610
21621
|
}
|
21611
|
-
.v-
|
21612
|
-
margin: 0 auto;
|
21613
|
-
}.v-dialog {
|
21622
|
+
.v-fab--center {
|
21614
21623
|
align-items: center;
|
21615
21624
|
justify-content: center;
|
21616
|
-
margin: auto;
|
21617
21625
|
}
|
21618
|
-
.v-
|
21619
|
-
|
21620
|
-
width: calc(100% - 48px);
|
21621
|
-
max-width: calc(100% - 48px);
|
21622
|
-
margin: 24px;
|
21626
|
+
.v-fab--end, .v-fab--right {
|
21627
|
+
justify-content: flex-end;
|
21623
21628
|
}
|
21624
|
-
.v-
|
21625
|
-
|
21626
|
-
display: flex;
|
21627
|
-
flex-direction: column;
|
21628
|
-
min-height: 0;
|
21629
|
+
.v-fab--bottom {
|
21630
|
+
align-items: flex-end;
|
21629
21631
|
}
|
21630
|
-
.v-
|
21631
|
-
|
21632
|
-
.v-dialog > .v-overlay__content > form > .v-card,
|
21633
|
-
.v-dialog > .v-overlay__content > form > .v-sheet {
|
21634
|
-
--v-scrollbar-offset: 0px;
|
21635
|
-
border-radius: 4px;
|
21636
|
-
overflow-y: auto;
|
21637
|
-
box-shadow: 0px 11px 15px -7px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 24px 38px 3px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 9px 46px 8px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
21632
|
+
.v-fab--top {
|
21633
|
+
align-items: flex-start;
|
21638
21634
|
}
|
21639
|
-
.v-
|
21640
|
-
|
21641
|
-
|
21642
|
-
|
21635
|
+
.v-fab--extended .v-btn {
|
21636
|
+
border-radius: 9999px !important;
|
21637
|
+
}
|
21638
|
+
|
21639
|
+
.v-fab__container {
|
21640
|
+
align-self: center;
|
21641
|
+
display: inline-flex;
|
21642
|
+
position: absolute;
|
21643
|
+
vertical-align: middle;
|
21644
|
+
}
|
21645
|
+
.v-fab--app .v-fab__container {
|
21646
|
+
margin: 12px;
|
21647
|
+
}
|
21648
|
+
.v-fab--absolute .v-fab__container {
|
21649
|
+
position: absolute;
|
21650
|
+
z-index: 4;
|
21651
|
+
}
|
21652
|
+
.v-fab--offset.v-fab--top .v-fab__container {
|
21653
|
+
transform: translateY(-50%);
|
21654
|
+
}
|
21655
|
+
.v-fab--offset.v-fab--bottom .v-fab__container {
|
21656
|
+
transform: translateY(50%);
|
21657
|
+
}
|
21658
|
+
.v-fab--top .v-fab__container {
|
21659
|
+
top: 0;
|
21660
|
+
}
|
21661
|
+
.v-fab--bottom .v-fab__container {
|
21662
|
+
bottom: 0;
|
21663
|
+
}
|
21664
|
+
.v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
|
21665
|
+
left: 0;
|
21666
|
+
}
|
21667
|
+
.v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
|
21668
|
+
right: 0;
|
21669
|
+
}.v-dialog {
|
21670
|
+
align-items: center;
|
21671
|
+
justify-content: center;
|
21672
|
+
margin: auto;
|
21673
|
+
}
|
21674
|
+
.v-dialog > .v-overlay__content {
|
21675
|
+
max-height: calc(100% - 48px);
|
21676
|
+
width: calc(100% - 48px);
|
21677
|
+
max-width: calc(100% - 48px);
|
21678
|
+
margin: 24px;
|
21679
|
+
}
|
21680
|
+
.v-dialog > .v-overlay__content,
|
21681
|
+
.v-dialog > .v-overlay__content > form {
|
21682
|
+
display: flex;
|
21683
|
+
flex-direction: column;
|
21684
|
+
min-height: 0;
|
21685
|
+
}
|
21686
|
+
.v-dialog > .v-overlay__content > .v-card,
|
21687
|
+
.v-dialog > .v-overlay__content > .v-sheet,
|
21688
|
+
.v-dialog > .v-overlay__content > form > .v-card,
|
21689
|
+
.v-dialog > .v-overlay__content > form > .v-sheet {
|
21690
|
+
--v-scrollbar-offset: 0px;
|
21691
|
+
border-radius: 4px;
|
21692
|
+
overflow-y: auto;
|
21693
|
+
box-shadow: 0px 11px 15px -7px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 24px 38px 3px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 9px 46px 8px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
21694
|
+
}
|
21695
|
+
.v-dialog > .v-overlay__content > .v-card,
|
21696
|
+
.v-dialog > .v-overlay__content > form > .v-card {
|
21697
|
+
display: flex;
|
21698
|
+
flex-direction: column;
|
21643
21699
|
}
|
21644
21700
|
.v-dialog > .v-overlay__content > .v-card > .v-card-item,
|
21645
21701
|
.v-dialog > .v-overlay__content > form > .v-card > .v-card-item {
|
@@ -21702,142 +21758,6 @@ html.overflow-y-hidden {
|
|
21702
21758
|
-webkit-backface-visibility: hidden;
|
21703
21759
|
backface-visibility: hidden;
|
21704
21760
|
overflow-y: auto;
|
21705
|
-
}.v-empty-state {
|
21706
|
-
align-items: center;
|
21707
|
-
display: flex;
|
21708
|
-
flex-direction: column;
|
21709
|
-
justify-content: center;
|
21710
|
-
min-height: 100%;
|
21711
|
-
padding: 16px;
|
21712
|
-
}
|
21713
|
-
.v-empty-state--start {
|
21714
|
-
align-items: flex-start;
|
21715
|
-
}
|
21716
|
-
.v-empty-state--center {
|
21717
|
-
align-items: center;
|
21718
|
-
}
|
21719
|
-
.v-empty-state--end {
|
21720
|
-
align-items: flex-end;
|
21721
|
-
}
|
21722
|
-
|
21723
|
-
.v-empty-state__media {
|
21724
|
-
text-align: center;
|
21725
|
-
width: 100%;
|
21726
|
-
}
|
21727
|
-
.v-empty-state__media .v-icon {
|
21728
|
-
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
21729
|
-
}
|
21730
|
-
|
21731
|
-
.v-empty-state__headline {
|
21732
|
-
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
21733
|
-
font-size: 3.75rem;
|
21734
|
-
font-weight: 300;
|
21735
|
-
line-height: 1;
|
21736
|
-
text-align: center;
|
21737
|
-
margin-bottom: 8px;
|
21738
|
-
}
|
21739
|
-
.v-empty-state--mobile .v-empty-state__headline {
|
21740
|
-
font-size: 2.125rem;
|
21741
|
-
}
|
21742
|
-
|
21743
|
-
.v-empty-state__title {
|
21744
|
-
font-size: 1.25rem;
|
21745
|
-
font-weight: 500;
|
21746
|
-
line-height: 1.6;
|
21747
|
-
margin-bottom: 4px;
|
21748
|
-
text-align: center;
|
21749
|
-
}
|
21750
|
-
|
21751
|
-
.v-empty-state__text {
|
21752
|
-
font-size: 0.875rem;
|
21753
|
-
font-weight: 400;
|
21754
|
-
line-height: 1.425;
|
21755
|
-
padding: 0 16px;
|
21756
|
-
text-align: center;
|
21757
|
-
}
|
21758
|
-
|
21759
|
-
.v-empty-state__content {
|
21760
|
-
padding: 24px 0;
|
21761
|
-
}
|
21762
|
-
|
21763
|
-
.v-empty-state__actions {
|
21764
|
-
display: flex;
|
21765
|
-
gap: 8px;
|
21766
|
-
padding: 16px;
|
21767
|
-
}
|
21768
|
-
|
21769
|
-
.v-empty-state__action-btn.v-btn {
|
21770
|
-
background-color: initial;
|
21771
|
-
color: initial;
|
21772
|
-
}.v-fab {
|
21773
|
-
align-items: center;
|
21774
|
-
display: inline-flex;
|
21775
|
-
flex: 1 1 auto;
|
21776
|
-
pointer-events: none;
|
21777
|
-
position: relative;
|
21778
|
-
transition-duration: 0.2s;
|
21779
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
21780
|
-
vertical-align: middle;
|
21781
|
-
}
|
21782
|
-
.v-fab .v-btn {
|
21783
|
-
pointer-events: auto;
|
21784
|
-
}
|
21785
|
-
.v-fab .v-btn--variant-elevated {
|
21786
|
-
box-shadow: 0px 3px 3px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 3px 4px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 8px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
21787
|
-
}
|
21788
|
-
.v-fab--app, .v-fab--absolute {
|
21789
|
-
display: flex;
|
21790
|
-
}
|
21791
|
-
.v-fab--start, .v-fab--left {
|
21792
|
-
justify-content: flex-start;
|
21793
|
-
}
|
21794
|
-
.v-fab--center {
|
21795
|
-
align-items: center;
|
21796
|
-
justify-content: center;
|
21797
|
-
}
|
21798
|
-
.v-fab--end, .v-fab--right {
|
21799
|
-
justify-content: flex-end;
|
21800
|
-
}
|
21801
|
-
.v-fab--bottom {
|
21802
|
-
align-items: flex-end;
|
21803
|
-
}
|
21804
|
-
.v-fab--top {
|
21805
|
-
align-items: flex-start;
|
21806
|
-
}
|
21807
|
-
.v-fab--extended .v-btn {
|
21808
|
-
border-radius: 9999px !important;
|
21809
|
-
}
|
21810
|
-
|
21811
|
-
.v-fab__container {
|
21812
|
-
align-self: center;
|
21813
|
-
display: inline-flex;
|
21814
|
-
position: absolute;
|
21815
|
-
vertical-align: middle;
|
21816
|
-
}
|
21817
|
-
.v-fab--app .v-fab__container {
|
21818
|
-
margin: 12px;
|
21819
|
-
}
|
21820
|
-
.v-fab--absolute .v-fab__container {
|
21821
|
-
position: absolute;
|
21822
|
-
z-index: 4;
|
21823
|
-
}
|
21824
|
-
.v-fab--offset.v-fab--top .v-fab__container {
|
21825
|
-
transform: translateY(-50%);
|
21826
|
-
}
|
21827
|
-
.v-fab--offset.v-fab--bottom .v-fab__container {
|
21828
|
-
transform: translateY(50%);
|
21829
|
-
}
|
21830
|
-
.v-fab--top .v-fab__container {
|
21831
|
-
top: 0;
|
21832
|
-
}
|
21833
|
-
.v-fab--bottom .v-fab__container {
|
21834
|
-
bottom: 0;
|
21835
|
-
}
|
21836
|
-
.v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
|
21837
|
-
left: 0;
|
21838
|
-
}
|
21839
|
-
.v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
|
21840
|
-
right: 0;
|
21841
21761
|
}.v-expansion-panel {
|
21842
21762
|
background-color: rgb(var(--v-theme-surface));
|
21843
21763
|
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
@@ -22048,51 +21968,118 @@ html.overflow-y-hidden {
|
|
22048
21968
|
}
|
22049
21969
|
.v-expansion-panels--tile > .v-expansion-panel {
|
22050
21970
|
border-radius: 0;
|
22051
|
-
}
|
22052
|
-
|
22053
|
-
|
22054
|
-
|
22055
|
-
|
22056
|
-
|
22057
|
-
|
22058
|
-
letter-spacing: 0.009375em;
|
22059
|
-
max-width: 100%;
|
22060
|
-
border-radius: 4px;
|
22061
|
-
contain: layout;
|
22062
|
-
flex: 1 0;
|
22063
|
-
grid-area: control;
|
22064
|
-
position: relative;
|
22065
|
-
--v-field-padding-start: 16px;
|
22066
|
-
--v-field-padding-end: 16px;
|
22067
|
-
--v-field-padding-top: 8px;
|
22068
|
-
--v-field-padding-bottom: 4px;
|
22069
|
-
--v-field-input-padding-top: calc(var(--v-field-padding-top, 8px) + var(--v-input-padding-top, 0));
|
22070
|
-
--v-field-input-padding-bottom: var(--v-field-padding-bottom, 4px);
|
21971
|
+
}.v-empty-state {
|
21972
|
+
align-items: center;
|
21973
|
+
display: flex;
|
21974
|
+
flex-direction: column;
|
21975
|
+
justify-content: center;
|
21976
|
+
min-height: 100%;
|
21977
|
+
padding: 16px;
|
22071
21978
|
}
|
22072
|
-
.v-
|
22073
|
-
|
22074
|
-
pointer-events: none;
|
21979
|
+
.v-empty-state--start {
|
21980
|
+
align-items: flex-start;
|
22075
21981
|
}
|
22076
|
-
.v-
|
22077
|
-
|
21982
|
+
.v-empty-state--center {
|
21983
|
+
align-items: center;
|
22078
21984
|
}
|
22079
|
-
|
22080
|
-
|
22081
|
-
/* region MODIFIERS */
|
22082
|
-
.v-field--prepended {
|
22083
|
-
padding-inline-start: 12px;
|
21985
|
+
.v-empty-state--end {
|
21986
|
+
align-items: flex-end;
|
22084
21987
|
}
|
22085
|
-
|
22086
|
-
|
21988
|
+
|
21989
|
+
.v-empty-state__media {
|
21990
|
+
text-align: center;
|
21991
|
+
width: 100%;
|
22087
21992
|
}
|
22088
|
-
.v-
|
22089
|
-
|
22090
|
-
border-color: transparent;
|
22091
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
22092
|
-
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));
|
21993
|
+
.v-empty-state__media .v-icon {
|
21994
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
22093
21995
|
}
|
22094
|
-
|
22095
|
-
|
21996
|
+
|
21997
|
+
.v-empty-state__headline {
|
21998
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
21999
|
+
font-size: 3.75rem;
|
22000
|
+
font-weight: 300;
|
22001
|
+
line-height: 1;
|
22002
|
+
text-align: center;
|
22003
|
+
margin-bottom: 8px;
|
22004
|
+
}
|
22005
|
+
.v-empty-state--mobile .v-empty-state__headline {
|
22006
|
+
font-size: 2.125rem;
|
22007
|
+
}
|
22008
|
+
|
22009
|
+
.v-empty-state__title {
|
22010
|
+
font-size: 1.25rem;
|
22011
|
+
font-weight: 500;
|
22012
|
+
line-height: 1.6;
|
22013
|
+
margin-bottom: 4px;
|
22014
|
+
text-align: center;
|
22015
|
+
}
|
22016
|
+
|
22017
|
+
.v-empty-state__text {
|
22018
|
+
font-size: 0.875rem;
|
22019
|
+
font-weight: 400;
|
22020
|
+
line-height: 1.425;
|
22021
|
+
padding: 0 16px;
|
22022
|
+
text-align: center;
|
22023
|
+
}
|
22024
|
+
|
22025
|
+
.v-empty-state__content {
|
22026
|
+
padding: 24px 0;
|
22027
|
+
}
|
22028
|
+
|
22029
|
+
.v-empty-state__actions {
|
22030
|
+
display: flex;
|
22031
|
+
gap: 8px;
|
22032
|
+
padding: 16px;
|
22033
|
+
}
|
22034
|
+
|
22035
|
+
.v-empty-state__action-btn.v-btn {
|
22036
|
+
background-color: initial;
|
22037
|
+
color: initial;
|
22038
|
+
}/* region INPUT */
|
22039
|
+
.v-field {
|
22040
|
+
--v-theme-overlay-multiplier: 1;
|
22041
|
+
display: grid;
|
22042
|
+
grid-template-areas: "prepend-inner field clear append-inner";
|
22043
|
+
grid-template-columns: min-content minmax(0, 1fr) min-content min-content;
|
22044
|
+
font-size: 16px;
|
22045
|
+
letter-spacing: 0.009375em;
|
22046
|
+
max-width: 100%;
|
22047
|
+
border-radius: 4px;
|
22048
|
+
contain: layout;
|
22049
|
+
flex: 1 0;
|
22050
|
+
grid-area: control;
|
22051
|
+
position: relative;
|
22052
|
+
--v-field-padding-start: 16px;
|
22053
|
+
--v-field-padding-end: 16px;
|
22054
|
+
--v-field-padding-top: 8px;
|
22055
|
+
--v-field-padding-bottom: 4px;
|
22056
|
+
--v-field-input-padding-top: calc(var(--v-field-padding-top, 8px) + var(--v-input-padding-top, 0));
|
22057
|
+
--v-field-input-padding-bottom: var(--v-field-padding-bottom, 4px);
|
22058
|
+
}
|
22059
|
+
.v-field--disabled {
|
22060
|
+
opacity: var(--v-disabled-opacity);
|
22061
|
+
pointer-events: none;
|
22062
|
+
}
|
22063
|
+
.v-field .v-chip {
|
22064
|
+
--v-chip-height: 24px;
|
22065
|
+
}
|
22066
|
+
|
22067
|
+
/* endregion */
|
22068
|
+
/* region MODIFIERS */
|
22069
|
+
.v-field--prepended {
|
22070
|
+
padding-inline-start: 12px;
|
22071
|
+
}
|
22072
|
+
.v-field--appended {
|
22073
|
+
padding-inline-end: 12px;
|
22074
|
+
}
|
22075
|
+
.v-field--variant-solo, .v-field--variant-solo-filled {
|
22076
|
+
background: rgb(var(--v-theme-surface));
|
22077
|
+
border-color: transparent;
|
22078
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
22079
|
+
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));
|
22080
|
+
}
|
22081
|
+
.v-field--variant-solo-inverted {
|
22082
|
+
background: rgb(var(--v-theme-surface));
|
22096
22083
|
border-color: transparent;
|
22097
22084
|
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
22098
22085
|
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));
|
@@ -22676,31 +22663,6 @@ textarea.v-field__input::placeholder {
|
|
22676
22663
|
}
|
22677
22664
|
.v-footer--rounded {
|
22678
22665
|
border-radius: 4px;
|
22679
|
-
}.v-infinite-scroll--horizontal {
|
22680
|
-
display: flex;
|
22681
|
-
flex-direction: row;
|
22682
|
-
overflow-x: auto;
|
22683
|
-
}
|
22684
|
-
.v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
|
22685
|
-
height: 100%;
|
22686
|
-
width: 1px;
|
22687
|
-
}
|
22688
|
-
|
22689
|
-
.v-infinite-scroll--vertical {
|
22690
|
-
display: flex;
|
22691
|
-
flex-direction: column;
|
22692
|
-
overflow-y: auto;
|
22693
|
-
}
|
22694
|
-
.v-infinite-scroll--vertical .v-infinite-scroll-intersect {
|
22695
|
-
height: 1px;
|
22696
|
-
width: 100%;
|
22697
|
-
}
|
22698
|
-
|
22699
|
-
.v-infinite-scroll__side {
|
22700
|
-
align-items: center;
|
22701
|
-
display: flex;
|
22702
|
-
justify-content: center;
|
22703
|
-
padding: 8px;
|
22704
22666
|
}.v-img {
|
22705
22667
|
--v-theme-overlay-multiplier: 3;
|
22706
22668
|
z-index: 0;
|
@@ -22790,11 +22752,6 @@ textarea.v-field__input::placeholder {
|
|
22790
22752
|
|
22791
22753
|
.v-icon--end {
|
22792
22754
|
margin-inline-start: 8px;
|
22793
|
-
}.v-item-group {
|
22794
|
-
flex: 0 1 auto;
|
22795
|
-
max-width: 100%;
|
22796
|
-
position: relative;
|
22797
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
22798
22755
|
}.v-input {
|
22799
22756
|
display: grid;
|
22800
22757
|
flex: 1 1 auto;
|
@@ -22937,122 +22894,36 @@ textarea.v-field__input::placeholder {
|
|
22937
22894
|
|
22938
22895
|
.v-input--density-compact.v-input--plain-underlined .v-input__prepend, .v-input--density-compact.v-input--plain-underlined .v-input__append {
|
22939
22896
|
padding-top: calc(var(--v-input-padding-top) + 0px);
|
22940
|
-
}.v-
|
22941
|
-
|
22942
|
-
|
22943
|
-
display: inline-flex;
|
22944
|
-
font-size: 1rem;
|
22945
|
-
letter-spacing: 0.009375em;
|
22946
|
-
min-width: 0;
|
22947
|
-
opacity: var(--v-medium-emphasis-opacity);
|
22948
|
-
overflow: hidden;
|
22949
|
-
text-overflow: ellipsis;
|
22950
|
-
white-space: nowrap;
|
22951
|
-
}
|
22952
|
-
|
22953
|
-
.v-label--clickable {
|
22954
|
-
cursor: pointer;
|
22955
|
-
}.v-list {
|
22956
|
-
overflow: auto;
|
22957
|
-
padding: 8px 0;
|
22897
|
+
}.v-item-group {
|
22898
|
+
flex: 0 1 auto;
|
22899
|
+
max-width: 100%;
|
22958
22900
|
position: relative;
|
22959
|
-
|
22960
|
-
|
22961
|
-
|
22962
|
-
|
22963
|
-
|
22964
|
-
border-radius: 0;
|
22965
|
-
background: rgba(var(--v-theme-surface));
|
22966
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
22967
|
-
}
|
22968
|
-
.v-list--border {
|
22969
|
-
border-width: thin;
|
22970
|
-
box-shadow: none;
|
22971
|
-
}
|
22972
|
-
.v-list--disabled {
|
22973
|
-
pointer-events: none;
|
22974
|
-
-webkit-user-select: none;
|
22975
|
-
user-select: none;
|
22976
|
-
}
|
22977
|
-
.v-list--nav {
|
22978
|
-
padding-inline: 8px;
|
22979
|
-
}
|
22980
|
-
.v-list--rounded {
|
22981
|
-
border-radius: 4px;
|
22901
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
22902
|
+
}.v-infinite-scroll--horizontal {
|
22903
|
+
display: flex;
|
22904
|
+
flex-direction: row;
|
22905
|
+
overflow-x: auto;
|
22982
22906
|
}
|
22983
|
-
.v-
|
22984
|
-
|
22907
|
+
.v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
|
22908
|
+
height: 100%;
|
22909
|
+
width: 1px;
|
22985
22910
|
}
|
22986
22911
|
|
22987
|
-
.v-
|
22988
|
-
border-radius: inherit;
|
22912
|
+
.v-infinite-scroll--vertical {
|
22989
22913
|
display: flex;
|
22990
|
-
|
22991
|
-
|
22992
|
-
|
22993
|
-
|
22994
|
-
|
22914
|
+
flex-direction: column;
|
22915
|
+
overflow-y: auto;
|
22916
|
+
}
|
22917
|
+
.v-infinite-scroll--vertical .v-infinite-scroll-intersect {
|
22918
|
+
height: 1px;
|
22995
22919
|
width: 100%;
|
22996
|
-
z-index: -1;
|
22997
22920
|
}
|
22998
22921
|
|
22999
|
-
.v-
|
22922
|
+
.v-infinite-scroll__side {
|
23000
22923
|
align-items: center;
|
23001
|
-
background: inherit;
|
23002
|
-
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
23003
22924
|
display: flex;
|
23004
|
-
|
23005
|
-
|
23006
|
-
line-height: 1.375rem;
|
23007
|
-
padding-inline-end: 16px;
|
23008
|
-
min-height: 40px;
|
23009
|
-
transition: 0.2s min-height cubic-bezier(0.4, 0, 0.2, 1);
|
23010
|
-
}
|
23011
|
-
.v-list-subheader__text {
|
23012
|
-
overflow: hidden;
|
23013
|
-
text-overflow: ellipsis;
|
23014
|
-
white-space: nowrap;
|
23015
|
-
}
|
23016
|
-
.v-list--density-default .v-list-subheader {
|
23017
|
-
min-height: 40px;
|
23018
|
-
padding-inline-start: calc(16px + var(--indent-padding)) !important;
|
23019
|
-
}
|
23020
|
-
|
23021
|
-
.v-list--density-comfortable .v-list-subheader {
|
23022
|
-
min-height: 36px;
|
23023
|
-
padding-inline-start: calc(16px + var(--indent-padding)) !important;
|
23024
|
-
}
|
23025
|
-
|
23026
|
-
.v-list--density-compact .v-list-subheader {
|
23027
|
-
min-height: 32px;
|
23028
|
-
padding-inline-start: calc(16px + var(--indent-padding)) !important;
|
23029
|
-
}
|
23030
|
-
|
23031
|
-
.v-list-subheader--inset {
|
23032
|
-
--indent-padding: 56px;
|
23033
|
-
}
|
23034
|
-
.v-list--nav .v-list-subheader {
|
23035
|
-
font-size: 0.75rem;
|
23036
|
-
}
|
23037
|
-
.v-list-subheader--sticky {
|
23038
|
-
background: inherit;
|
23039
|
-
left: 0;
|
23040
|
-
position: sticky;
|
23041
|
-
top: 0;
|
23042
|
-
z-index: 1;
|
23043
|
-
}
|
23044
|
-
|
23045
|
-
.v-list__overlay {
|
23046
|
-
background-color: currentColor;
|
23047
|
-
border-radius: inherit;
|
23048
|
-
bottom: 0;
|
23049
|
-
left: 0;
|
23050
|
-
opacity: 0;
|
23051
|
-
pointer-events: none;
|
23052
|
-
position: absolute;
|
23053
|
-
right: 0;
|
23054
|
-
top: 0;
|
23055
|
-
transition: opacity 0.2s ease-in-out;
|
22925
|
+
justify-content: center;
|
22926
|
+
padding: 8px;
|
23056
22927
|
}.v-list-item {
|
23057
22928
|
align-items: center;
|
23058
22929
|
display: grid;
|
@@ -23509,37 +23380,165 @@ textarea.v-field__input::placeholder {
|
|
23509
23380
|
}
|
23510
23381
|
.v-list-group__header:not(.v-treeview-item--activetable-group-activator).v-list-item--active:hover .v-list-item__overlay {
|
23511
23382
|
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
23512
|
-
}.v-
|
23513
|
-
|
23514
|
-
|
23515
|
-
|
23516
|
-
|
23517
|
-
|
23518
|
-
|
23519
|
-
|
23520
|
-
|
23521
|
-
|
23522
|
-
|
23523
|
-
|
23524
|
-
|
23525
|
-
.v-
|
23383
|
+
}.v-list {
|
23384
|
+
overflow: auto;
|
23385
|
+
padding: 8px 0;
|
23386
|
+
position: relative;
|
23387
|
+
outline: none;
|
23388
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
23389
|
+
border-style: solid;
|
23390
|
+
border-width: 0;
|
23391
|
+
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));
|
23392
|
+
border-radius: 0;
|
23393
|
+
background: rgba(var(--v-theme-surface));
|
23394
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
23395
|
+
}
|
23396
|
+
.v-list--border {
|
23397
|
+
border-width: thin;
|
23398
|
+
box-shadow: none;
|
23399
|
+
}
|
23400
|
+
.v-list--disabled {
|
23401
|
+
pointer-events: none;
|
23402
|
+
-webkit-user-select: none;
|
23403
|
+
user-select: none;
|
23404
|
+
}
|
23405
|
+
.v-list--nav {
|
23406
|
+
padding-inline: 8px;
|
23407
|
+
}
|
23408
|
+
.v-list--rounded {
|
23409
|
+
border-radius: 4px;
|
23410
|
+
}
|
23411
|
+
.v-list--subheader {
|
23412
|
+
padding-top: 0;
|
23413
|
+
}
|
23414
|
+
|
23415
|
+
.v-list-img {
|
23416
|
+
border-radius: inherit;
|
23417
|
+
display: flex;
|
23418
|
+
height: 100%;
|
23419
|
+
left: 0;
|
23420
|
+
overflow: hidden;
|
23526
23421
|
position: absolute;
|
23527
|
-
|
23528
|
-
|
23529
|
-
|
23530
|
-
|
23531
|
-
|
23422
|
+
top: 0;
|
23423
|
+
width: 100%;
|
23424
|
+
z-index: -1;
|
23425
|
+
}
|
23426
|
+
|
23427
|
+
.v-list-subheader {
|
23428
|
+
align-items: center;
|
23429
|
+
background: inherit;
|
23430
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
23431
|
+
display: flex;
|
23432
|
+
font-size: 0.875rem;
|
23433
|
+
font-weight: 400;
|
23434
|
+
line-height: 1.375rem;
|
23435
|
+
padding-inline-end: 16px;
|
23436
|
+
min-height: 40px;
|
23437
|
+
transition: 0.2s min-height cubic-bezier(0.4, 0, 0.2, 1);
|
23438
|
+
}
|
23439
|
+
.v-list-subheader__text {
|
23440
|
+
overflow: hidden;
|
23441
|
+
text-overflow: ellipsis;
|
23442
|
+
white-space: nowrap;
|
23443
|
+
}
|
23444
|
+
.v-list--density-default .v-list-subheader {
|
23445
|
+
min-height: 40px;
|
23446
|
+
padding-inline-start: calc(16px + var(--indent-padding)) !important;
|
23447
|
+
}
|
23448
|
+
|
23449
|
+
.v-list--density-comfortable .v-list-subheader {
|
23450
|
+
min-height: 36px;
|
23451
|
+
padding-inline-start: calc(16px + var(--indent-padding)) !important;
|
23452
|
+
}
|
23453
|
+
|
23454
|
+
.v-list--density-compact .v-list-subheader {
|
23455
|
+
min-height: 32px;
|
23456
|
+
padding-inline-start: calc(16px + var(--indent-padding)) !important;
|
23457
|
+
}
|
23458
|
+
|
23459
|
+
.v-list-subheader--inset {
|
23460
|
+
--indent-padding: 56px;
|
23461
|
+
}
|
23462
|
+
.v-list--nav .v-list-subheader {
|
23463
|
+
font-size: 0.75rem;
|
23464
|
+
}
|
23465
|
+
.v-list-subheader--sticky {
|
23466
|
+
background: inherit;
|
23467
|
+
left: 0;
|
23468
|
+
position: sticky;
|
23469
|
+
top: 0;
|
23470
|
+
z-index: 1;
|
23471
|
+
}
|
23472
|
+
|
23473
|
+
.v-list__overlay {
|
23474
|
+
background-color: currentColor;
|
23475
|
+
border-radius: inherit;
|
23476
|
+
bottom: 0;
|
23477
|
+
left: 0;
|
23478
|
+
opacity: 0;
|
23479
|
+
pointer-events: none;
|
23480
|
+
position: absolute;
|
23481
|
+
right: 0;
|
23482
|
+
top: 0;
|
23483
|
+
transition: opacity 0.2s ease-in-out;
|
23484
|
+
}.v-label {
|
23485
|
+
align-items: center;
|
23486
|
+
color: inherit;
|
23487
|
+
display: inline-flex;
|
23488
|
+
font-size: 1rem;
|
23489
|
+
letter-spacing: 0.009375em;
|
23490
|
+
min-width: 0;
|
23532
23491
|
opacity: var(--v-medium-emphasis-opacity);
|
23492
|
+
overflow: hidden;
|
23493
|
+
text-overflow: ellipsis;
|
23494
|
+
white-space: nowrap;
|
23495
|
+
}
|
23496
|
+
|
23497
|
+
.v-label--clickable {
|
23498
|
+
cursor: pointer;
|
23499
|
+
}.v-layout {
|
23500
|
+
--v-scrollbar-offset: 0px;
|
23501
|
+
display: flex;
|
23502
|
+
flex: 1 1 auto;
|
23503
|
+
}
|
23504
|
+
.v-layout--full-height {
|
23505
|
+
--v-scrollbar-offset: inherit;
|
23506
|
+
height: 100%;
|
23507
|
+
}.v-layout-item {
|
23508
|
+
position: absolute;
|
23509
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
23510
|
+
}
|
23511
|
+
|
23512
|
+
.v-layout-item--absolute {
|
23513
|
+
position: absolute;
|
23514
|
+
}.v-main {
|
23515
|
+
flex: 1 0 auto;
|
23516
|
+
max-width: 100%;
|
23517
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
23518
|
+
padding-left: var(--v-layout-left);
|
23519
|
+
padding-right: var(--v-layout-right);
|
23520
|
+
padding-top: var(--v-layout-top);
|
23521
|
+
padding-bottom: var(--v-layout-bottom);
|
23522
|
+
}
|
23523
|
+
.v-main__scroller {
|
23524
|
+
max-width: 100%;
|
23533
23525
|
position: relative;
|
23534
23526
|
}
|
23535
|
-
.v-
|
23536
|
-
|
23537
|
-
|
23538
|
-
|
23539
|
-
|
23540
|
-
|
23541
|
-
|
23542
|
-
|
23527
|
+
.v-main--scrollable {
|
23528
|
+
display: flex;
|
23529
|
+
position: absolute;
|
23530
|
+
top: 0;
|
23531
|
+
left: 0;
|
23532
|
+
width: 100%;
|
23533
|
+
height: 100%;
|
23534
|
+
}
|
23535
|
+
.v-main--scrollable > .v-main__scroller {
|
23536
|
+
flex: 1 1 auto;
|
23537
|
+
overflow-y: auto;
|
23538
|
+
--v-layout-left: 0px;
|
23539
|
+
--v-layout-right: 0px;
|
23540
|
+
--v-layout-top: 0px;
|
23541
|
+
--v-layout-bottom: 0px;
|
23543
23542
|
}.v-menu > .v-overlay__content {
|
23544
23543
|
display: flex;
|
23545
23544
|
flex-direction: column;
|
@@ -23657,111 +23656,44 @@ textarea.v-field__input::placeholder {
|
|
23657
23656
|
.v-navigation-drawer__append {
|
23658
23657
|
flex: none;
|
23659
23658
|
overflow: hidden;
|
23660
|
-
}.v-
|
23661
|
-
flex: 1
|
23662
|
-
|
23663
|
-
|
23664
|
-
|
23665
|
-
|
23666
|
-
padding-top: var(--v-layout-top);
|
23667
|
-
padding-bottom: var(--v-layout-bottom);
|
23668
|
-
}
|
23669
|
-
.v-main__scroller {
|
23670
|
-
max-width: 100%;
|
23659
|
+
}.v-messages {
|
23660
|
+
flex: 1 1 auto;
|
23661
|
+
font-size: 12px;
|
23662
|
+
min-height: 14px;
|
23663
|
+
min-width: 1px;
|
23664
|
+
opacity: var(--v-medium-emphasis-opacity);
|
23671
23665
|
position: relative;
|
23672
23666
|
}
|
23673
|
-
.v-
|
23674
|
-
|
23675
|
-
|
23676
|
-
|
23677
|
-
|
23667
|
+
.v-messages__message {
|
23668
|
+
line-height: 12px;
|
23669
|
+
word-break: break-word;
|
23670
|
+
overflow-wrap: break-word;
|
23671
|
+
word-wrap: break-word;
|
23672
|
+
-webkit-hyphens: auto;
|
23673
|
+
hyphens: auto;
|
23674
|
+
transition-duration: 150ms;
|
23675
|
+
}.v-pagination__list {
|
23676
|
+
display: inline-flex;
|
23677
|
+
list-style-type: none;
|
23678
|
+
justify-content: center;
|
23678
23679
|
width: 100%;
|
23679
|
-
height: 100%;
|
23680
|
-
}
|
23681
|
-
.v-main--scrollable > .v-main__scroller {
|
23682
|
-
flex: 1 1 auto;
|
23683
|
-
overflow-y: auto;
|
23684
|
-
--v-layout-left: 0px;
|
23685
|
-
--v-layout-right: 0px;
|
23686
|
-
--v-layout-top: 0px;
|
23687
|
-
--v-layout-bottom: 0px;
|
23688
|
-
}.v-overlay-container {
|
23689
|
-
contain: layout;
|
23690
|
-
left: 0;
|
23691
|
-
pointer-events: none;
|
23692
|
-
position: absolute;
|
23693
|
-
top: 0;
|
23694
|
-
display: contents;
|
23695
|
-
}
|
23696
|
-
|
23697
|
-
.v-overlay-scroll-blocked {
|
23698
|
-
padding-inline-end: var(--v-scrollbar-offset);
|
23699
23680
|
}
|
23700
|
-
.v-
|
23701
|
-
|
23681
|
+
.v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
|
23682
|
+
margin: 0.3rem;
|
23683
|
+
}.v-otp-input {
|
23684
|
+
border-radius: 4px;
|
23685
|
+
align-items: center;
|
23686
|
+
display: flex;
|
23687
|
+
justify-content: center;
|
23688
|
+
padding: 0.5rem 0;
|
23689
|
+
position: relative;
|
23702
23690
|
}
|
23703
|
-
|
23704
|
-
position: fixed;
|
23705
|
-
top: var(--v-body-scroll-y);
|
23706
|
-
left: var(--v-body-scroll-x);
|
23707
|
-
width: 100%;
|
23691
|
+
.v-otp-input .v-field {
|
23708
23692
|
height: 100%;
|
23709
23693
|
}
|
23710
23694
|
|
23711
|
-
.v-
|
23712
|
-
|
23713
|
-
display: flex;
|
23714
|
-
left: 0;
|
23715
|
-
pointer-events: none;
|
23716
|
-
position: fixed;
|
23717
|
-
top: 0;
|
23718
|
-
bottom: 0;
|
23719
|
-
right: 0;
|
23720
|
-
}
|
23721
|
-
|
23722
|
-
.v-overlay__content {
|
23723
|
-
outline: none;
|
23724
|
-
position: absolute;
|
23725
|
-
pointer-events: auto;
|
23726
|
-
contain: layout;
|
23727
|
-
}
|
23728
|
-
|
23729
|
-
.v-overlay__scrim {
|
23730
|
-
pointer-events: auto;
|
23731
|
-
background: rgb(var(--v-theme-on-surface));
|
23732
|
-
border-radius: inherit;
|
23733
|
-
bottom: 0;
|
23734
|
-
left: 0;
|
23735
|
-
opacity: var(--v-overlay-opacity, 0.32);
|
23736
|
-
position: fixed;
|
23737
|
-
right: 0;
|
23738
|
-
top: 0;
|
23739
|
-
}
|
23740
|
-
|
23741
|
-
.v-overlay--absolute {
|
23742
|
-
position: absolute;
|
23743
|
-
}
|
23744
|
-
|
23745
|
-
.v-overlay--contained .v-overlay__scrim {
|
23746
|
-
position: absolute;
|
23747
|
-
}
|
23748
|
-
|
23749
|
-
.v-overlay--scroll-blocked {
|
23750
|
-
padding-inline-end: var(--v-scrollbar-offset);
|
23751
|
-
}.v-otp-input {
|
23752
|
-
border-radius: 4px;
|
23753
|
-
align-items: center;
|
23754
|
-
display: flex;
|
23755
|
-
justify-content: center;
|
23756
|
-
padding: 0.5rem 0;
|
23757
|
-
position: relative;
|
23758
|
-
}
|
23759
|
-
.v-otp-input .v-field {
|
23760
|
-
height: 100%;
|
23761
|
-
}
|
23762
|
-
|
23763
|
-
.v-otp-input__divider {
|
23764
|
-
margin: 0 8px;
|
23695
|
+
.v-otp-input__divider {
|
23696
|
+
margin: 0 8px;
|
23765
23697
|
}
|
23766
23698
|
|
23767
23699
|
.v-otp-input__content {
|
@@ -23804,20 +23736,6 @@ html.v-overlay-scroll-blocked {
|
|
23804
23736
|
}
|
23805
23737
|
.v-otp-input__loader .v-progress-linear {
|
23806
23738
|
position: absolute;
|
23807
|
-
}.v-pagination__list {
|
23808
|
-
display: inline-flex;
|
23809
|
-
list-style-type: none;
|
23810
|
-
justify-content: center;
|
23811
|
-
width: 100%;
|
23812
|
-
}
|
23813
|
-
.v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
|
23814
|
-
margin: 0.3rem;
|
23815
|
-
}.v-parallax {
|
23816
|
-
position: relative;
|
23817
|
-
overflow: hidden;
|
23818
|
-
}
|
23819
|
-
.v-parallax--active > .v-img__img {
|
23820
|
-
will-change: transform;
|
23821
23739
|
}.v-progress-circular {
|
23822
23740
|
align-items: center;
|
23823
23741
|
display: inline-flex;
|
@@ -23920,6 +23838,87 @@ html.v-overlay-scroll-blocked {
|
|
23920
23838
|
100% {
|
23921
23839
|
transform: rotate(270deg);
|
23922
23840
|
}
|
23841
|
+
}.v-overlay-container {
|
23842
|
+
contain: layout;
|
23843
|
+
left: 0;
|
23844
|
+
pointer-events: none;
|
23845
|
+
position: absolute;
|
23846
|
+
top: 0;
|
23847
|
+
display: contents;
|
23848
|
+
}
|
23849
|
+
|
23850
|
+
.v-overlay-scroll-blocked {
|
23851
|
+
padding-inline-end: var(--v-scrollbar-offset);
|
23852
|
+
}
|
23853
|
+
.v-overlay-scroll-blocked:not(html) {
|
23854
|
+
overflow-y: hidden !important;
|
23855
|
+
}
|
23856
|
+
html.v-overlay-scroll-blocked {
|
23857
|
+
position: fixed;
|
23858
|
+
top: var(--v-body-scroll-y);
|
23859
|
+
left: var(--v-body-scroll-x);
|
23860
|
+
width: 100%;
|
23861
|
+
height: 100%;
|
23862
|
+
}
|
23863
|
+
|
23864
|
+
.v-overlay {
|
23865
|
+
border-radius: inherit;
|
23866
|
+
display: flex;
|
23867
|
+
left: 0;
|
23868
|
+
pointer-events: none;
|
23869
|
+
position: fixed;
|
23870
|
+
top: 0;
|
23871
|
+
bottom: 0;
|
23872
|
+
right: 0;
|
23873
|
+
}
|
23874
|
+
|
23875
|
+
.v-overlay__content {
|
23876
|
+
outline: none;
|
23877
|
+
position: absolute;
|
23878
|
+
pointer-events: auto;
|
23879
|
+
contain: layout;
|
23880
|
+
}
|
23881
|
+
|
23882
|
+
.v-overlay__scrim {
|
23883
|
+
pointer-events: auto;
|
23884
|
+
background: rgb(var(--v-theme-on-surface));
|
23885
|
+
border-radius: inherit;
|
23886
|
+
bottom: 0;
|
23887
|
+
left: 0;
|
23888
|
+
opacity: var(--v-overlay-opacity, 0.32);
|
23889
|
+
position: fixed;
|
23890
|
+
right: 0;
|
23891
|
+
top: 0;
|
23892
|
+
}
|
23893
|
+
|
23894
|
+
.v-overlay--absolute {
|
23895
|
+
position: absolute;
|
23896
|
+
}
|
23897
|
+
|
23898
|
+
.v-overlay--contained .v-overlay__scrim {
|
23899
|
+
position: absolute;
|
23900
|
+
}
|
23901
|
+
|
23902
|
+
.v-overlay--scroll-blocked {
|
23903
|
+
padding-inline-end: var(--v-scrollbar-offset);
|
23904
|
+
}.v-parallax {
|
23905
|
+
position: relative;
|
23906
|
+
overflow: hidden;
|
23907
|
+
}
|
23908
|
+
.v-parallax--active > .v-img__img {
|
23909
|
+
will-change: transform;
|
23910
|
+
}.v-radio-group > .v-input__control {
|
23911
|
+
flex-direction: column;
|
23912
|
+
}
|
23913
|
+
.v-radio-group > .v-input__control > .v-label {
|
23914
|
+
margin-inline-start: 16px;
|
23915
|
+
}
|
23916
|
+
.v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
|
23917
|
+
padding-inline-start: 6px;
|
23918
|
+
margin-top: 8px;
|
23919
|
+
}
|
23920
|
+
.v-radio-group .v-input__details {
|
23921
|
+
padding-inline: 16px;
|
23923
23922
|
}.v-progress-linear {
|
23924
23923
|
background: transparent;
|
23925
23924
|
overflow: hidden;
|
@@ -24131,72 +24130,6 @@ html.v-overlay-scroll-blocked {
|
|
24131
24130
|
0% {
|
24132
24131
|
background-position-x: var(--v-progress-linear-height);
|
24133
24132
|
}
|
24134
|
-
}.v-radio-group > .v-input__control {
|
24135
|
-
flex-direction: column;
|
24136
|
-
}
|
24137
|
-
.v-radio-group > .v-input__control > .v-label {
|
24138
|
-
margin-inline-start: 16px;
|
24139
|
-
}
|
24140
|
-
.v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
|
24141
|
-
padding-inline-start: 6px;
|
24142
|
-
margin-top: 8px;
|
24143
|
-
}
|
24144
|
-
.v-radio-group .v-input__details {
|
24145
|
-
padding-inline: 16px;
|
24146
|
-
}.v-rating {
|
24147
|
-
max-width: 100%;
|
24148
|
-
display: inline-flex;
|
24149
|
-
white-space: nowrap;
|
24150
|
-
}
|
24151
|
-
.v-rating--readonly {
|
24152
|
-
pointer-events: none;
|
24153
|
-
}
|
24154
|
-
|
24155
|
-
.v-rating__wrapper {
|
24156
|
-
align-items: center;
|
24157
|
-
display: inline-flex;
|
24158
|
-
flex-direction: column;
|
24159
|
-
}
|
24160
|
-
.v-rating__wrapper--bottom {
|
24161
|
-
flex-direction: column-reverse;
|
24162
|
-
}
|
24163
|
-
|
24164
|
-
.v-rating__item {
|
24165
|
-
display: inline-flex;
|
24166
|
-
position: relative;
|
24167
|
-
}
|
24168
|
-
.v-rating__item label {
|
24169
|
-
cursor: pointer;
|
24170
|
-
}
|
24171
|
-
.v-rating__item .v-btn--variant-plain {
|
24172
|
-
opacity: 1;
|
24173
|
-
}
|
24174
|
-
.v-rating__item .v-btn {
|
24175
|
-
transition-property: transform;
|
24176
|
-
}
|
24177
|
-
.v-rating__item .v-btn .v-icon {
|
24178
|
-
transition: inherit;
|
24179
|
-
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
24180
|
-
}
|
24181
|
-
.v-rating--hover .v-rating__item:hover:not(.v-rating__item--focused) .v-btn {
|
24182
|
-
transform: scale(1.25);
|
24183
|
-
}
|
24184
|
-
.v-rating__item--half {
|
24185
|
-
overflow: hidden;
|
24186
|
-
position: absolute;
|
24187
|
-
-webkit-clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
|
24188
|
-
clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
|
24189
|
-
z-index: 1;
|
24190
|
-
}
|
24191
|
-
.v-rating__item--half .v-btn__overlay, .v-rating__item--half:hover .v-btn__overlay {
|
24192
|
-
opacity: 0;
|
24193
|
-
}
|
24194
|
-
|
24195
|
-
.v-rating__hidden {
|
24196
|
-
height: 0;
|
24197
|
-
opacity: 0;
|
24198
|
-
position: absolute;
|
24199
|
-
width: 0;
|
24200
24133
|
}.v-slider .v-slider__container input {
|
24201
24134
|
cursor: default;
|
24202
24135
|
padding: 0;
|
@@ -24429,49 +24362,67 @@ html.v-overlay-scroll-blocked {
|
|
24429
24362
|
}
|
24430
24363
|
.v-selection-control--focus-visible .v-selection-control__input::before {
|
24431
24364
|
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
24432
|
-
}.v-
|
24433
|
-
|
24434
|
-
|
24435
|
-
|
24436
|
-
border-width: 0;
|
24437
|
-
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));
|
24438
|
-
border-radius: 0;
|
24439
|
-
background: rgb(var(--v-theme-surface));
|
24440
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
24365
|
+
}.v-rating {
|
24366
|
+
max-width: 100%;
|
24367
|
+
display: inline-flex;
|
24368
|
+
white-space: nowrap;
|
24441
24369
|
}
|
24442
|
-
.v-
|
24443
|
-
|
24444
|
-
box-shadow: none;
|
24370
|
+
.v-rating--readonly {
|
24371
|
+
pointer-events: none;
|
24445
24372
|
}
|
24446
|
-
|
24447
|
-
|
24373
|
+
|
24374
|
+
.v-rating__wrapper {
|
24375
|
+
align-items: center;
|
24376
|
+
display: inline-flex;
|
24377
|
+
flex-direction: column;
|
24448
24378
|
}
|
24449
|
-
.v-
|
24450
|
-
|
24379
|
+
.v-rating__wrapper--bottom {
|
24380
|
+
flex-direction: column-reverse;
|
24451
24381
|
}
|
24452
|
-
|
24382
|
+
|
24383
|
+
.v-rating__item {
|
24384
|
+
display: inline-flex;
|
24453
24385
|
position: relative;
|
24454
24386
|
}
|
24455
|
-
.v-
|
24456
|
-
|
24387
|
+
.v-rating__item label {
|
24388
|
+
cursor: pointer;
|
24457
24389
|
}
|
24458
|
-
.v-
|
24459
|
-
|
24460
|
-
}.v-selection-control-group {
|
24461
|
-
grid-area: control;
|
24462
|
-
display: flex;
|
24463
|
-
flex-direction: column;
|
24390
|
+
.v-rating__item .v-btn--variant-plain {
|
24391
|
+
opacity: 1;
|
24464
24392
|
}
|
24465
|
-
.v-
|
24466
|
-
|
24467
|
-
|
24468
|
-
|
24469
|
-
|
24470
|
-
|
24471
|
-
|
24472
|
-
|
24473
|
-
|
24474
|
-
|
24393
|
+
.v-rating__item .v-btn {
|
24394
|
+
transition-property: transform;
|
24395
|
+
}
|
24396
|
+
.v-rating__item .v-btn .v-icon {
|
24397
|
+
transition: inherit;
|
24398
|
+
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
24399
|
+
}
|
24400
|
+
.v-rating--hover .v-rating__item:hover:not(.v-rating__item--focused) .v-btn {
|
24401
|
+
transform: scale(1.25);
|
24402
|
+
}
|
24403
|
+
.v-rating__item--half {
|
24404
|
+
overflow: hidden;
|
24405
|
+
position: absolute;
|
24406
|
+
-webkit-clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
|
24407
|
+
clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
|
24408
|
+
z-index: 1;
|
24409
|
+
}
|
24410
|
+
.v-rating__item--half .v-btn__overlay, .v-rating__item--half:hover .v-btn__overlay {
|
24411
|
+
opacity: 0;
|
24412
|
+
}
|
24413
|
+
|
24414
|
+
.v-rating__hidden {
|
24415
|
+
height: 0;
|
24416
|
+
opacity: 0;
|
24417
|
+
position: absolute;
|
24418
|
+
width: 0;
|
24419
|
+
}.v-skeleton-loader {
|
24420
|
+
align-items: center;
|
24421
|
+
background: rgb(var(--v-theme-surface));
|
24422
|
+
border-radius: 4px;
|
24423
|
+
display: flex;
|
24424
|
+
flex-wrap: wrap;
|
24425
|
+
position: relative;
|
24475
24426
|
vertical-align: top;
|
24476
24427
|
}
|
24477
24428
|
.v-skeleton-loader__actions {
|
@@ -24688,144 +24639,6 @@ html.v-overlay-scroll-blocked {
|
|
24688
24639
|
100% {
|
24689
24640
|
transform: translateX(100%);
|
24690
24641
|
}
|
24691
|
-
}.v-snackbar {
|
24692
|
-
justify-content: center;
|
24693
|
-
z-index: 10000;
|
24694
|
-
margin: 8px;
|
24695
|
-
margin-inline-end: calc(8px + var(--v-scrollbar-offset));
|
24696
|
-
padding: var(--v-layout-top) var(--v-layout-right) var(--v-layout-bottom) var(--v-layout-left);
|
24697
|
-
}
|
24698
|
-
.v-snackbar:not(.v-snackbar--center):not(.v-snackbar--top) {
|
24699
|
-
align-items: flex-end;
|
24700
|
-
}
|
24701
|
-
.v-snackbar__wrapper {
|
24702
|
-
align-items: center;
|
24703
|
-
display: flex;
|
24704
|
-
max-width: 672px;
|
24705
|
-
min-height: 48px;
|
24706
|
-
min-width: 344px;
|
24707
|
-
overflow: hidden;
|
24708
|
-
padding: 0;
|
24709
|
-
border-radius: 4px;
|
24710
|
-
}
|
24711
|
-
.v-snackbar--variant-plain, .v-snackbar--variant-outlined, .v-snackbar--variant-text, .v-snackbar--variant-tonal {
|
24712
|
-
background: transparent;
|
24713
|
-
color: inherit;
|
24714
|
-
}
|
24715
|
-
.v-snackbar--variant-plain {
|
24716
|
-
opacity: 0.62;
|
24717
|
-
}
|
24718
|
-
.v-snackbar--variant-plain:focus, .v-snackbar--variant-plain:hover {
|
24719
|
-
opacity: 1;
|
24720
|
-
}
|
24721
|
-
.v-snackbar--variant-plain .v-snackbar__overlay {
|
24722
|
-
display: none;
|
24723
|
-
}
|
24724
|
-
.v-snackbar--variant-elevated, .v-snackbar--variant-flat {
|
24725
|
-
background: rgb(var(--v-theme-surface-variant));
|
24726
|
-
color: rgb(var(--v-theme-on-surface-variant));
|
24727
|
-
}
|
24728
|
-
.v-snackbar--variant-elevated {
|
24729
|
-
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));
|
24730
|
-
}
|
24731
|
-
.v-snackbar--variant-flat {
|
24732
|
-
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));
|
24733
|
-
}
|
24734
|
-
.v-snackbar--variant-outlined {
|
24735
|
-
border: thin solid currentColor;
|
24736
|
-
}
|
24737
|
-
.v-snackbar--variant-text .v-snackbar__overlay {
|
24738
|
-
background: currentColor;
|
24739
|
-
}
|
24740
|
-
.v-snackbar--variant-tonal .v-snackbar__underlay {
|
24741
|
-
background: currentColor;
|
24742
|
-
opacity: var(--v-activated-opacity);
|
24743
|
-
border-radius: inherit;
|
24744
|
-
top: 0;
|
24745
|
-
right: 0;
|
24746
|
-
bottom: 0;
|
24747
|
-
left: 0;
|
24748
|
-
pointer-events: none;
|
24749
|
-
}
|
24750
|
-
.v-snackbar .v-snackbar__underlay {
|
24751
|
-
position: absolute;
|
24752
|
-
}
|
24753
|
-
|
24754
|
-
.v-snackbar__content {
|
24755
|
-
flex-grow: 1;
|
24756
|
-
font-size: 0.875rem;
|
24757
|
-
font-weight: 400;
|
24758
|
-
letter-spacing: 0.0178571429em;
|
24759
|
-
line-height: 1.425;
|
24760
|
-
margin-right: auto;
|
24761
|
-
padding: 14px 16px;
|
24762
|
-
text-align: initial;
|
24763
|
-
}
|
24764
|
-
.v-snackbar__actions {
|
24765
|
-
align-items: center;
|
24766
|
-
align-self: center;
|
24767
|
-
display: flex;
|
24768
|
-
margin-inline-end: 8px;
|
24769
|
-
}
|
24770
|
-
.v-snackbar__actions > .v-btn {
|
24771
|
-
padding: 0 8px;
|
24772
|
-
min-width: auto;
|
24773
|
-
}
|
24774
|
-
.v-snackbar__timer {
|
24775
|
-
width: 100%;
|
24776
|
-
position: absolute;
|
24777
|
-
top: 0;
|
24778
|
-
}
|
24779
|
-
.v-snackbar__timer .v-progress-linear {
|
24780
|
-
transition: 0.2s linear;
|
24781
|
-
}
|
24782
|
-
.v-snackbar--absolute {
|
24783
|
-
position: absolute;
|
24784
|
-
z-index: 1;
|
24785
|
-
}
|
24786
|
-
.v-snackbar--multi-line .v-snackbar__wrapper {
|
24787
|
-
min-height: 68px;
|
24788
|
-
}
|
24789
|
-
.v-snackbar--vertical .v-snackbar__wrapper {
|
24790
|
-
flex-direction: column;
|
24791
|
-
}
|
24792
|
-
.v-snackbar--vertical .v-snackbar__wrapper .v-snackbar__actions {
|
24793
|
-
align-self: flex-end;
|
24794
|
-
margin-bottom: 8px;
|
24795
|
-
}
|
24796
|
-
.v-snackbar--center {
|
24797
|
-
align-items: center;
|
24798
|
-
justify-content: center;
|
24799
|
-
}
|
24800
|
-
.v-snackbar--top {
|
24801
|
-
align-items: flex-start;
|
24802
|
-
}
|
24803
|
-
.v-snackbar--bottom {
|
24804
|
-
align-items: flex-end;
|
24805
|
-
}
|
24806
|
-
.v-snackbar--left, .v-snackbar--start {
|
24807
|
-
justify-content: flex-start;
|
24808
|
-
}
|
24809
|
-
.v-snackbar--right, .v-snackbar--end {
|
24810
|
-
justify-content: flex-end;
|
24811
|
-
}
|
24812
|
-
|
24813
|
-
.v-snackbar-transition-enter-active, .v-snackbar-transition-leave-active {
|
24814
|
-
transition-duration: 0.15s;
|
24815
|
-
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
24816
|
-
}
|
24817
|
-
.v-snackbar-transition-enter-active {
|
24818
|
-
transition-property: opacity, transform;
|
24819
|
-
}
|
24820
|
-
.v-snackbar-transition-enter-from {
|
24821
|
-
opacity: 0;
|
24822
|
-
transform: scale(0.8);
|
24823
|
-
}
|
24824
|
-
.v-snackbar-transition-leave-active {
|
24825
|
-
transition-property: opacity;
|
24826
|
-
}
|
24827
|
-
.v-snackbar-transition-leave-to {
|
24828
|
-
opacity: 0;
|
24829
24642
|
}.v-slide-group {
|
24830
24643
|
display: flex;
|
24831
24644
|
overflow: hidden;
|
@@ -24881,6 +24694,14 @@ html.v-overlay-scroll-blocked {
|
|
24881
24694
|
.v-slide-group--vertical .v-slide-group__container {
|
24882
24695
|
overflow-x: hidden;
|
24883
24696
|
overflow-y: auto;
|
24697
|
+
}.v-selection-control-group {
|
24698
|
+
grid-area: control;
|
24699
|
+
display: flex;
|
24700
|
+
flex-direction: column;
|
24701
|
+
}
|
24702
|
+
.v-selection-control-group--inline {
|
24703
|
+
flex-direction: row;
|
24704
|
+
flex-wrap: wrap;
|
24884
24705
|
}.v-speed-dial__content {
|
24885
24706
|
gap: 8px;
|
24886
24707
|
}
|
@@ -24922,166 +24743,51 @@ html.v-overlay-scroll-blocked {
|
|
24922
24743
|
}
|
24923
24744
|
.v-speed-dial__content > *:nth-child(10) {
|
24924
24745
|
transition-delay: 0.45s;
|
24925
|
-
}.v-
|
24926
|
-
|
24927
|
-
|
24928
|
-
|
24929
|
-
|
24930
|
-
justify-content: flex-end;
|
24931
|
-
max-width: 100%;
|
24932
|
-
padding-inline: 8px;
|
24933
|
-
position: relative;
|
24934
|
-
text-align: end;
|
24935
|
-
width: 100%;
|
24746
|
+
}.v-sheet {
|
24747
|
+
display: block;
|
24748
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
24749
|
+
border-style: solid;
|
24750
|
+
border-width: 0;
|
24936
24751
|
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));
|
24937
|
-
|
24938
|
-
|
24939
|
-
|
24940
|
-
font-weight: 400;
|
24941
|
-
letter-spacing: 0.0333333333em;
|
24942
|
-
line-height: 1.667;
|
24943
|
-
text-transform: none;
|
24752
|
+
border-radius: 0;
|
24753
|
+
background: rgb(var(--v-theme-surface));
|
24754
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
24944
24755
|
}
|
24945
|
-
.v-
|
24946
|
-
|
24756
|
+
.v-sheet--border {
|
24757
|
+
border-width: thin;
|
24758
|
+
box-shadow: none;
|
24947
24759
|
}
|
24948
|
-
.v-
|
24760
|
+
.v-sheet--absolute {
|
24949
24761
|
position: absolute;
|
24950
24762
|
}
|
24951
|
-
.v-
|
24763
|
+
.v-sheet--fixed {
|
24952
24764
|
position: fixed;
|
24953
24765
|
}
|
24954
|
-
.v-
|
24955
|
-
|
24766
|
+
.v-sheet--relative {
|
24767
|
+
position: relative;
|
24956
24768
|
}
|
24957
|
-
.v-
|
24958
|
-
|
24769
|
+
.v-sheet--sticky {
|
24770
|
+
position: sticky;
|
24959
24771
|
}
|
24960
|
-
.v-
|
24961
|
-
|
24962
|
-
}.v-
|
24963
|
-
--v-
|
24772
|
+
.v-sheet--rounded {
|
24773
|
+
border-radius: 4px;
|
24774
|
+
}.v-stepper.v-sheet {
|
24775
|
+
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));
|
24776
|
+
border-radius: 4px;
|
24777
|
+
overflow: hidden;
|
24964
24778
|
}
|
24965
|
-
.v-
|
24966
|
-
--v-
|
24779
|
+
.v-stepper.v-sheet.v-stepper--flat {
|
24780
|
+
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));
|
24967
24781
|
}
|
24968
|
-
|
24969
|
-
|
24970
|
-
|
24971
|
-
-
|
24972
|
-
|
24973
|
-
|
24974
|
-
|
24975
|
-
|
24976
|
-
|
24977
|
-
top: 0;
|
24978
|
-
left: 0;
|
24979
|
-
height: 0 !important;
|
24980
|
-
min-height: 0 !important;
|
24981
|
-
pointer-events: none;
|
24982
|
-
}
|
24983
|
-
.v-textarea--no-resize .v-field__input {
|
24984
|
-
resize: none;
|
24985
|
-
}
|
24986
|
-
.v-textarea .v-field--no-label textarea,
|
24987
|
-
.v-textarea .v-field--active textarea {
|
24988
|
-
opacity: 1;
|
24989
|
-
}
|
24990
|
-
.v-textarea textarea {
|
24991
|
-
opacity: 0;
|
24992
|
-
flex: 1;
|
24993
|
-
min-width: 0;
|
24994
|
-
transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
24995
|
-
}
|
24996
|
-
.v-textarea textarea:focus, .v-textarea textarea:active {
|
24997
|
-
outline: none;
|
24998
|
-
}
|
24999
|
-
.v-textarea textarea:invalid {
|
25000
|
-
box-shadow: none;
|
25001
|
-
}/* region BLOCK */
|
25002
|
-
.v-text-field input {
|
25003
|
-
color: inherit;
|
25004
|
-
opacity: 0;
|
25005
|
-
flex: 1;
|
25006
|
-
transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
25007
|
-
min-width: 0;
|
25008
|
-
}
|
25009
|
-
.v-text-field input:focus, .v-text-field input:active {
|
25010
|
-
outline: none;
|
25011
|
-
}
|
25012
|
-
.v-text-field input:invalid {
|
25013
|
-
box-shadow: none;
|
25014
|
-
}
|
25015
|
-
.v-text-field .v-field {
|
25016
|
-
cursor: text;
|
25017
|
-
}
|
25018
|
-
.v-text-field--prefixed.v-text-field .v-field__input {
|
25019
|
-
--v-field-padding-start: 6px;
|
25020
|
-
}
|
25021
|
-
|
25022
|
-
.v-text-field--suffixed.v-text-field .v-field__input {
|
25023
|
-
--v-field-padding-end: 0;
|
25024
|
-
}
|
25025
|
-
|
25026
|
-
.v-text-field .v-input__details {
|
25027
|
-
padding-inline: 16px;
|
25028
|
-
}
|
25029
|
-
.v-input--plain-underlined.v-text-field .v-input__details {
|
25030
|
-
padding-inline: 0;
|
25031
|
-
}
|
25032
|
-
|
25033
|
-
.v-text-field .v-field--no-label input,
|
25034
|
-
.v-text-field .v-field--active input {
|
25035
|
-
opacity: 1;
|
25036
|
-
}
|
25037
|
-
.v-text-field .v-field--single-line input {
|
25038
|
-
transition: none;
|
25039
|
-
}
|
25040
|
-
|
25041
|
-
/* endregion */
|
25042
|
-
/* region ELEMENTS */
|
25043
|
-
.v-text-field__prefix, .v-text-field__suffix {
|
25044
|
-
align-items: center;
|
25045
|
-
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
25046
|
-
cursor: default;
|
25047
|
-
display: flex;
|
25048
|
-
opacity: 0;
|
25049
|
-
transition: inherit;
|
25050
|
-
white-space: nowrap;
|
25051
|
-
min-height: max(var(--v-input-control-height, 56px), 1.5rem + var(--v-field-input-padding-top) + var(--v-field-input-padding-bottom));
|
25052
|
-
padding-top: calc(var(--v-field-padding-top, 4px) + var(--v-input-padding-top, 0));
|
25053
|
-
padding-bottom: var(--v-field-padding-bottom, 6px);
|
25054
|
-
}
|
25055
|
-
.v-field--active .v-text-field__prefix, .v-field--active .v-text-field__suffix {
|
25056
|
-
opacity: 1;
|
25057
|
-
}
|
25058
|
-
.v-field--disabled .v-text-field__prefix, .v-field--disabled .v-text-field__suffix {
|
25059
|
-
color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity));
|
25060
|
-
}
|
25061
|
-
.v-text-field__prefix {
|
25062
|
-
padding-inline-start: var(--v-field-padding-start);
|
25063
|
-
}
|
25064
|
-
.v-text-field__suffix {
|
25065
|
-
padding-inline-end: var(--v-field-padding-end);
|
25066
|
-
}
|
25067
|
-
|
25068
|
-
/* endregion */.v-stepper.v-sheet {
|
25069
|
-
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));
|
25070
|
-
border-radius: 4px;
|
25071
|
-
overflow: hidden;
|
25072
|
-
}
|
25073
|
-
.v-stepper.v-sheet.v-stepper--flat {
|
25074
|
-
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));
|
25075
|
-
}
|
25076
|
-
|
25077
|
-
.v-stepper-header {
|
25078
|
-
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));
|
25079
|
-
align-items: center;
|
25080
|
-
display: flex;
|
25081
|
-
position: relative;
|
25082
|
-
overflow-x: auto;
|
25083
|
-
justify-content: space-between;
|
25084
|
-
z-index: 1;
|
24782
|
+
|
24783
|
+
.v-stepper-header {
|
24784
|
+
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));
|
24785
|
+
align-items: center;
|
24786
|
+
display: flex;
|
24787
|
+
position: relative;
|
24788
|
+
overflow-x: auto;
|
24789
|
+
justify-content: space-between;
|
24790
|
+
z-index: 1;
|
25085
24791
|
}
|
25086
24792
|
.v-stepper-header .v-divider {
|
25087
24793
|
margin: 0 -16px;
|
@@ -25153,84 +24859,360 @@ html.v-overlay-scroll-blocked {
|
|
25153
24859
|
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
25154
24860
|
}
|
25155
24861
|
}
|
25156
|
-
.v-stepper--non-linear .v-stepper-item {
|
25157
|
-
opacity: var(--v-high-emphasis-opacity);
|
24862
|
+
.v-stepper--non-linear .v-stepper-item {
|
24863
|
+
opacity: var(--v-high-emphasis-opacity);
|
24864
|
+
}
|
24865
|
+
.v-stepper-item--selected {
|
24866
|
+
opacity: 1;
|
24867
|
+
}
|
24868
|
+
.v-stepper-item--error {
|
24869
|
+
color: rgb(var(--v-theme-error));
|
24870
|
+
}
|
24871
|
+
.v-stepper-item--disabled {
|
24872
|
+
opacity: var(--v-medium-emphasis-opacity);
|
24873
|
+
pointer-events: none;
|
24874
|
+
}
|
24875
|
+
.v-stepper--alt-labels .v-stepper-item {
|
24876
|
+
flex-direction: column;
|
24877
|
+
justify-content: flex-start;
|
24878
|
+
align-items: center;
|
24879
|
+
flex-basis: 175px;
|
24880
|
+
}
|
24881
|
+
|
24882
|
+
.v-stepper-item__avatar.v-avatar {
|
24883
|
+
background: rgba(var(--v-theme-surface-variant), var(--v-medium-emphasis-opacity));
|
24884
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
24885
|
+
font-size: 0.75rem;
|
24886
|
+
margin-inline-end: 8px;
|
24887
|
+
}
|
24888
|
+
.v-stepper--mobile .v-stepper-item__avatar.v-avatar {
|
24889
|
+
margin-inline-end: 0;
|
24890
|
+
}
|
24891
|
+
.v-stepper-item__avatar.v-avatar .v-icon {
|
24892
|
+
font-size: 0.875rem;
|
24893
|
+
}
|
24894
|
+
.v-stepper-item--selected .v-stepper-item__avatar.v-avatar, .v-stepper-item--complete .v-stepper-item__avatar.v-avatar {
|
24895
|
+
background: rgb(var(--v-theme-surface-variant));
|
24896
|
+
}
|
24897
|
+
.v-stepper-item--error .v-stepper-item__avatar.v-avatar {
|
24898
|
+
background: rgb(var(--v-theme-error));
|
24899
|
+
}
|
24900
|
+
.v-stepper--alt-labels .v-stepper-item__avatar.v-avatar {
|
24901
|
+
margin-bottom: 16px;
|
24902
|
+
margin-inline-end: 0;
|
24903
|
+
}
|
24904
|
+
|
24905
|
+
.v-stepper-item__title {
|
24906
|
+
line-height: 1;
|
24907
|
+
}
|
24908
|
+
.v-stepper--mobile .v-stepper-item__title {
|
24909
|
+
display: none;
|
24910
|
+
}
|
24911
|
+
|
24912
|
+
.v-stepper-item__subtitle {
|
24913
|
+
font-size: 0.75rem;
|
24914
|
+
text-align: left;
|
24915
|
+
line-height: 1;
|
24916
|
+
opacity: var(--v-medium-emphasis-opacity);
|
24917
|
+
}
|
24918
|
+
.v-stepper--alt-labels .v-stepper-item__subtitle {
|
24919
|
+
text-align: center;
|
24920
|
+
}
|
24921
|
+
.v-stepper--mobile .v-stepper-item__subtitle {
|
24922
|
+
display: none;
|
24923
|
+
}
|
24924
|
+
|
24925
|
+
.v-stepper-item__overlay {
|
24926
|
+
background-color: currentColor;
|
24927
|
+
border-radius: inherit;
|
24928
|
+
opacity: 0;
|
24929
|
+
transition: opacity 0.2s ease-in-out;
|
24930
|
+
}
|
24931
|
+
|
24932
|
+
.v-stepper-item__overlay,
|
24933
|
+
.v-stepper-item__underlay {
|
24934
|
+
position: absolute;
|
24935
|
+
top: 0;
|
24936
|
+
left: 0;
|
24937
|
+
width: 100%;
|
24938
|
+
height: 100%;
|
24939
|
+
pointer-events: none;
|
24940
|
+
}.v-snackbar {
|
24941
|
+
justify-content: center;
|
24942
|
+
z-index: 10000;
|
24943
|
+
margin: 8px;
|
24944
|
+
margin-inline-end: calc(8px + var(--v-scrollbar-offset));
|
24945
|
+
padding: var(--v-layout-top) var(--v-layout-right) var(--v-layout-bottom) var(--v-layout-left);
|
24946
|
+
}
|
24947
|
+
.v-snackbar:not(.v-snackbar--center):not(.v-snackbar--top) {
|
24948
|
+
align-items: flex-end;
|
24949
|
+
}
|
24950
|
+
.v-snackbar__wrapper {
|
24951
|
+
align-items: center;
|
24952
|
+
display: flex;
|
24953
|
+
max-width: 672px;
|
24954
|
+
min-height: 48px;
|
24955
|
+
min-width: 344px;
|
24956
|
+
overflow: hidden;
|
24957
|
+
padding: 0;
|
24958
|
+
border-radius: 4px;
|
24959
|
+
}
|
24960
|
+
.v-snackbar--variant-plain, .v-snackbar--variant-outlined, .v-snackbar--variant-text, .v-snackbar--variant-tonal {
|
24961
|
+
background: transparent;
|
24962
|
+
color: inherit;
|
24963
|
+
}
|
24964
|
+
.v-snackbar--variant-plain {
|
24965
|
+
opacity: 0.62;
|
24966
|
+
}
|
24967
|
+
.v-snackbar--variant-plain:focus, .v-snackbar--variant-plain:hover {
|
24968
|
+
opacity: 1;
|
24969
|
+
}
|
24970
|
+
.v-snackbar--variant-plain .v-snackbar__overlay {
|
24971
|
+
display: none;
|
24972
|
+
}
|
24973
|
+
.v-snackbar--variant-elevated, .v-snackbar--variant-flat {
|
24974
|
+
background: rgb(var(--v-theme-surface-variant));
|
24975
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
24976
|
+
}
|
24977
|
+
.v-snackbar--variant-elevated {
|
24978
|
+
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));
|
24979
|
+
}
|
24980
|
+
.v-snackbar--variant-flat {
|
24981
|
+
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));
|
24982
|
+
}
|
24983
|
+
.v-snackbar--variant-outlined {
|
24984
|
+
border: thin solid currentColor;
|
24985
|
+
}
|
24986
|
+
.v-snackbar--variant-text .v-snackbar__overlay {
|
24987
|
+
background: currentColor;
|
24988
|
+
}
|
24989
|
+
.v-snackbar--variant-tonal .v-snackbar__underlay {
|
24990
|
+
background: currentColor;
|
24991
|
+
opacity: var(--v-activated-opacity);
|
24992
|
+
border-radius: inherit;
|
24993
|
+
top: 0;
|
24994
|
+
right: 0;
|
24995
|
+
bottom: 0;
|
24996
|
+
left: 0;
|
24997
|
+
pointer-events: none;
|
24998
|
+
}
|
24999
|
+
.v-snackbar .v-snackbar__underlay {
|
25000
|
+
position: absolute;
|
25001
|
+
}
|
25002
|
+
|
25003
|
+
.v-snackbar__content {
|
25004
|
+
flex-grow: 1;
|
25005
|
+
font-size: 0.875rem;
|
25006
|
+
font-weight: 400;
|
25007
|
+
letter-spacing: 0.0178571429em;
|
25008
|
+
line-height: 1.425;
|
25009
|
+
margin-right: auto;
|
25010
|
+
padding: 14px 16px;
|
25011
|
+
text-align: initial;
|
25012
|
+
}
|
25013
|
+
.v-snackbar__actions {
|
25014
|
+
align-items: center;
|
25015
|
+
align-self: center;
|
25016
|
+
display: flex;
|
25017
|
+
margin-inline-end: 8px;
|
25018
|
+
}
|
25019
|
+
.v-snackbar__actions > .v-btn {
|
25020
|
+
padding: 0 8px;
|
25021
|
+
min-width: auto;
|
25022
|
+
}
|
25023
|
+
.v-snackbar__timer {
|
25024
|
+
width: 100%;
|
25025
|
+
position: absolute;
|
25026
|
+
top: 0;
|
25027
|
+
}
|
25028
|
+
.v-snackbar__timer .v-progress-linear {
|
25029
|
+
transition: 0.2s linear;
|
25030
|
+
}
|
25031
|
+
.v-snackbar--absolute {
|
25032
|
+
position: absolute;
|
25033
|
+
z-index: 1;
|
25034
|
+
}
|
25035
|
+
.v-snackbar--multi-line .v-snackbar__wrapper {
|
25036
|
+
min-height: 68px;
|
25037
|
+
}
|
25038
|
+
.v-snackbar--vertical .v-snackbar__wrapper {
|
25039
|
+
flex-direction: column;
|
25040
|
+
}
|
25041
|
+
.v-snackbar--vertical .v-snackbar__wrapper .v-snackbar__actions {
|
25042
|
+
align-self: flex-end;
|
25043
|
+
margin-bottom: 8px;
|
25044
|
+
}
|
25045
|
+
.v-snackbar--center {
|
25046
|
+
align-items: center;
|
25047
|
+
justify-content: center;
|
25048
|
+
}
|
25049
|
+
.v-snackbar--top {
|
25050
|
+
align-items: flex-start;
|
25051
|
+
}
|
25052
|
+
.v-snackbar--bottom {
|
25053
|
+
align-items: flex-end;
|
25054
|
+
}
|
25055
|
+
.v-snackbar--left, .v-snackbar--start {
|
25056
|
+
justify-content: flex-start;
|
25057
|
+
}
|
25058
|
+
.v-snackbar--right, .v-snackbar--end {
|
25059
|
+
justify-content: flex-end;
|
25060
|
+
}
|
25061
|
+
|
25062
|
+
.v-snackbar-transition-enter-active, .v-snackbar-transition-leave-active {
|
25063
|
+
transition-duration: 0.15s;
|
25064
|
+
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
25065
|
+
}
|
25066
|
+
.v-snackbar-transition-enter-active {
|
25067
|
+
transition-property: opacity, transform;
|
25068
|
+
}
|
25069
|
+
.v-snackbar-transition-enter-from {
|
25070
|
+
opacity: 0;
|
25071
|
+
transform: scale(0.8);
|
25072
|
+
}
|
25073
|
+
.v-snackbar-transition-leave-active {
|
25074
|
+
transition-property: opacity;
|
25075
|
+
}
|
25076
|
+
.v-snackbar-transition-leave-to {
|
25077
|
+
opacity: 0;
|
25078
|
+
}.v-table {
|
25079
|
+
background: rgb(var(--v-theme-surface));
|
25080
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
25081
|
+
font-size: 0.875rem;
|
25082
|
+
transition-duration: 0.28s;
|
25083
|
+
transition-property: box-shadow, opacity, background, height;
|
25084
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
25085
|
+
}
|
25086
|
+
.v-table .v-table-divider {
|
25087
|
+
border-right: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
25088
|
+
}
|
25089
|
+
.v-table .v-table__wrapper > table > thead > tr > th {
|
25090
|
+
border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
25158
25091
|
}
|
25159
|
-
.v-
|
25160
|
-
|
25092
|
+
.v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > td,
|
25093
|
+
.v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > th {
|
25094
|
+
border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
25161
25095
|
}
|
25162
|
-
.v-
|
25163
|
-
|
25096
|
+
.v-table .v-table__wrapper > table > tfoot > tr > td,
|
25097
|
+
.v-table .v-table__wrapper > table > tfoot > tr > th {
|
25098
|
+
border-top: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
25164
25099
|
}
|
25165
|
-
.v-
|
25166
|
-
|
25100
|
+
.v-table.v-table--hover > .v-table__wrapper > table > tbody > tr > td {
|
25101
|
+
position: relative;
|
25102
|
+
}
|
25103
|
+
.v-table.v-table--hover > .v-table__wrapper > table > tbody > tr:hover > td::after {
|
25104
|
+
content: "";
|
25105
|
+
position: absolute;
|
25106
|
+
top: 0;
|
25107
|
+
left: 0;
|
25108
|
+
width: 100%;
|
25109
|
+
height: 100%;
|
25110
|
+
background: rgba(var(--v-border-color), var(--v-hover-opacity));
|
25167
25111
|
pointer-events: none;
|
25168
25112
|
}
|
25169
|
-
.v-
|
25170
|
-
|
25171
|
-
|
25172
|
-
|
25173
|
-
|
25113
|
+
.v-table.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
|
25114
|
+
background: rgb(var(--v-theme-surface));
|
25115
|
+
box-shadow: inset 0 -1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
|
25116
|
+
z-index: 1;
|
25117
|
+
}
|
25118
|
+
.v-table.v-table--fixed-footer > tfoot > tr > th,
|
25119
|
+
.v-table.v-table--fixed-footer > tfoot > tr > td {
|
25120
|
+
background: rgb(var(--v-theme-surface));
|
25121
|
+
box-shadow: inset 0 1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
|
25174
25122
|
}
|
25175
25123
|
|
25176
|
-
.v-
|
25177
|
-
|
25178
|
-
|
25179
|
-
|
25180
|
-
|
25124
|
+
.v-table {
|
25125
|
+
border-radius: inherit;
|
25126
|
+
line-height: 1.5;
|
25127
|
+
max-width: 100%;
|
25128
|
+
display: flex;
|
25129
|
+
flex-direction: column;
|
25181
25130
|
}
|
25182
|
-
.v-
|
25183
|
-
|
25131
|
+
.v-table > .v-table__wrapper > table {
|
25132
|
+
width: 100%;
|
25133
|
+
border-spacing: 0;
|
25184
25134
|
}
|
25185
|
-
.v-
|
25186
|
-
|
25135
|
+
.v-table > .v-table__wrapper > table > tbody > tr > td,
|
25136
|
+
.v-table > .v-table__wrapper > table > tbody > tr > th,
|
25137
|
+
.v-table > .v-table__wrapper > table > thead > tr > td,
|
25138
|
+
.v-table > .v-table__wrapper > table > thead > tr > th,
|
25139
|
+
.v-table > .v-table__wrapper > table > tfoot > tr > td,
|
25140
|
+
.v-table > .v-table__wrapper > table > tfoot > tr > th {
|
25141
|
+
padding: 0 16px;
|
25142
|
+
transition-duration: 0.28s;
|
25143
|
+
transition-property: box-shadow, opacity, background, height;
|
25144
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
25187
25145
|
}
|
25188
|
-
.v-
|
25189
|
-
|
25146
|
+
.v-table > .v-table__wrapper > table > tbody > tr > td,
|
25147
|
+
.v-table > .v-table__wrapper > table > thead > tr > td,
|
25148
|
+
.v-table > .v-table__wrapper > table > tfoot > tr > td {
|
25149
|
+
height: var(--v-table-row-height);
|
25190
25150
|
}
|
25191
|
-
.v-
|
25192
|
-
|
25151
|
+
.v-table > .v-table__wrapper > table > tbody > tr > th,
|
25152
|
+
.v-table > .v-table__wrapper > table > thead > tr > th,
|
25153
|
+
.v-table > .v-table__wrapper > table > tfoot > tr > th {
|
25154
|
+
height: var(--v-table-header-height);
|
25155
|
+
font-weight: 500;
|
25156
|
+
-webkit-user-select: none;
|
25157
|
+
user-select: none;
|
25158
|
+
text-align: start;
|
25193
25159
|
}
|
25194
|
-
.v-
|
25195
|
-
|
25196
|
-
|
25160
|
+
.v-table--density-default {
|
25161
|
+
--v-table-header-height: 56px;
|
25162
|
+
--v-table-row-height: 52px;
|
25197
25163
|
}
|
25198
25164
|
|
25199
|
-
.v-
|
25200
|
-
|
25165
|
+
.v-table--density-comfortable {
|
25166
|
+
--v-table-header-height: 48px;
|
25167
|
+
--v-table-row-height: 44px;
|
25201
25168
|
}
|
25202
|
-
|
25203
|
-
|
25169
|
+
|
25170
|
+
.v-table--density-compact {
|
25171
|
+
--v-table-header-height: 40px;
|
25172
|
+
--v-table-row-height: 36px;
|
25204
25173
|
}
|
25205
25174
|
|
25206
|
-
.v-
|
25207
|
-
|
25208
|
-
|
25209
|
-
|
25210
|
-
opacity: var(--v-medium-emphasis-opacity);
|
25175
|
+
.v-table__wrapper {
|
25176
|
+
border-radius: inherit;
|
25177
|
+
overflow: auto;
|
25178
|
+
flex: 1 1 auto;
|
25211
25179
|
}
|
25212
|
-
|
25213
|
-
|
25180
|
+
|
25181
|
+
.v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:first-child {
|
25182
|
+
border-top-left-radius: 0;
|
25214
25183
|
}
|
25215
|
-
.v-
|
25216
|
-
|
25184
|
+
.v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:last-child {
|
25185
|
+
border-top-right-radius: 0;
|
25217
25186
|
}
|
25218
25187
|
|
25219
|
-
.v-
|
25220
|
-
|
25221
|
-
|
25222
|
-
|
25223
|
-
|
25188
|
+
.v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:first-child {
|
25189
|
+
border-bottom-left-radius: 0;
|
25190
|
+
}
|
25191
|
+
.v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:last-child {
|
25192
|
+
border-bottom-right-radius: 0;
|
25224
25193
|
}
|
25225
25194
|
|
25226
|
-
.v-
|
25227
|
-
|
25228
|
-
|
25195
|
+
.v-table--fixed-height > .v-table__wrapper {
|
25196
|
+
overflow-y: auto;
|
25197
|
+
}
|
25198
|
+
|
25199
|
+
.v-table--fixed-header > .v-table__wrapper > table > thead {
|
25200
|
+
position: sticky;
|
25229
25201
|
top: 0;
|
25230
|
-
|
25231
|
-
|
25232
|
-
|
25233
|
-
|
25202
|
+
z-index: 2;
|
25203
|
+
}
|
25204
|
+
.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
|
25205
|
+
border-bottom: 0px !important;
|
25206
|
+
}
|
25207
|
+
|
25208
|
+
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr {
|
25209
|
+
position: sticky;
|
25210
|
+
bottom: 0;
|
25211
|
+
z-index: 1;
|
25212
|
+
}
|
25213
|
+
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
|
25214
|
+
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
|
25215
|
+
border-top: 0px !important;
|
25234
25216
|
}.v-switch .v-label {
|
25235
25217
|
padding-inline-start: 10px;
|
25236
25218
|
}
|
@@ -25411,6 +25393,152 @@ html.v-overlay-scroll-blocked {
|
|
25411
25393
|
.v-switch.v-switch--loading.v-switch--inset .v-switch__thumb, .v-switch.v-switch--loading.v-switch--indeterminate .v-switch__thumb {
|
25412
25394
|
border-width: 0;
|
25413
25395
|
}
|
25396
|
+
}.v-textarea .v-field {
|
25397
|
+
--v-textarea-control-height: var(--v-input-control-height);
|
25398
|
+
}
|
25399
|
+
.v-textarea .v-field__field {
|
25400
|
+
--v-input-control-height: var(--v-textarea-control-height);
|
25401
|
+
}
|
25402
|
+
.v-textarea .v-field__input {
|
25403
|
+
flex: 1 1 auto;
|
25404
|
+
outline: none;
|
25405
|
+
-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));
|
25406
|
+
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));
|
25407
|
+
}
|
25408
|
+
.v-textarea .v-field__input.v-textarea__sizer {
|
25409
|
+
visibility: hidden;
|
25410
|
+
position: absolute;
|
25411
|
+
top: 0;
|
25412
|
+
left: 0;
|
25413
|
+
height: 0 !important;
|
25414
|
+
min-height: 0 !important;
|
25415
|
+
pointer-events: none;
|
25416
|
+
}
|
25417
|
+
.v-textarea--no-resize .v-field__input {
|
25418
|
+
resize: none;
|
25419
|
+
}
|
25420
|
+
.v-textarea .v-field--no-label textarea,
|
25421
|
+
.v-textarea .v-field--active textarea {
|
25422
|
+
opacity: 1;
|
25423
|
+
}
|
25424
|
+
.v-textarea textarea {
|
25425
|
+
opacity: 0;
|
25426
|
+
flex: 1;
|
25427
|
+
min-width: 0;
|
25428
|
+
transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
25429
|
+
}
|
25430
|
+
.v-textarea textarea:focus, .v-textarea textarea:active {
|
25431
|
+
outline: none;
|
25432
|
+
}
|
25433
|
+
.v-textarea textarea:invalid {
|
25434
|
+
box-shadow: none;
|
25435
|
+
}/* region BLOCK */
|
25436
|
+
.v-text-field input {
|
25437
|
+
color: inherit;
|
25438
|
+
opacity: 0;
|
25439
|
+
flex: 1;
|
25440
|
+
transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
25441
|
+
min-width: 0;
|
25442
|
+
}
|
25443
|
+
.v-text-field input:focus, .v-text-field input:active {
|
25444
|
+
outline: none;
|
25445
|
+
}
|
25446
|
+
.v-text-field input:invalid {
|
25447
|
+
box-shadow: none;
|
25448
|
+
}
|
25449
|
+
.v-text-field .v-field {
|
25450
|
+
cursor: text;
|
25451
|
+
}
|
25452
|
+
.v-text-field--prefixed.v-text-field .v-field__input {
|
25453
|
+
--v-field-padding-start: 6px;
|
25454
|
+
}
|
25455
|
+
|
25456
|
+
.v-text-field--suffixed.v-text-field .v-field__input {
|
25457
|
+
--v-field-padding-end: 0;
|
25458
|
+
}
|
25459
|
+
|
25460
|
+
.v-text-field .v-input__details {
|
25461
|
+
padding-inline: 16px;
|
25462
|
+
}
|
25463
|
+
.v-input--plain-underlined.v-text-field .v-input__details {
|
25464
|
+
padding-inline: 0;
|
25465
|
+
}
|
25466
|
+
|
25467
|
+
.v-text-field .v-field--no-label input,
|
25468
|
+
.v-text-field .v-field--active input {
|
25469
|
+
opacity: 1;
|
25470
|
+
}
|
25471
|
+
.v-text-field .v-field--single-line input {
|
25472
|
+
transition: none;
|
25473
|
+
}
|
25474
|
+
|
25475
|
+
/* endregion */
|
25476
|
+
/* region ELEMENTS */
|
25477
|
+
.v-text-field__prefix, .v-text-field__suffix {
|
25478
|
+
align-items: center;
|
25479
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
25480
|
+
cursor: default;
|
25481
|
+
display: flex;
|
25482
|
+
opacity: 0;
|
25483
|
+
transition: inherit;
|
25484
|
+
white-space: nowrap;
|
25485
|
+
min-height: max(var(--v-input-control-height, 56px), 1.5rem + var(--v-field-input-padding-top) + var(--v-field-input-padding-bottom));
|
25486
|
+
padding-top: calc(var(--v-field-padding-top, 4px) + var(--v-input-padding-top, 0));
|
25487
|
+
padding-bottom: var(--v-field-padding-bottom, 6px);
|
25488
|
+
}
|
25489
|
+
.v-field--active .v-text-field__prefix, .v-field--active .v-text-field__suffix {
|
25490
|
+
opacity: 1;
|
25491
|
+
}
|
25492
|
+
.v-field--disabled .v-text-field__prefix, .v-field--disabled .v-text-field__suffix {
|
25493
|
+
color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity));
|
25494
|
+
}
|
25495
|
+
.v-text-field__prefix {
|
25496
|
+
padding-inline-start: var(--v-field-padding-start);
|
25497
|
+
}
|
25498
|
+
.v-text-field__suffix {
|
25499
|
+
padding-inline-end: var(--v-field-padding-end);
|
25500
|
+
}
|
25501
|
+
|
25502
|
+
/* endregion */.v-system-bar {
|
25503
|
+
align-items: center;
|
25504
|
+
display: flex;
|
25505
|
+
flex: 1 1 auto;
|
25506
|
+
height: 24px;
|
25507
|
+
justify-content: flex-end;
|
25508
|
+
max-width: 100%;
|
25509
|
+
padding-inline: 8px;
|
25510
|
+
position: relative;
|
25511
|
+
text-align: end;
|
25512
|
+
width: 100%;
|
25513
|
+
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));
|
25514
|
+
background: rgba(var(--v-theme-surface-light));
|
25515
|
+
color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
|
25516
|
+
font-size: 0.75rem;
|
25517
|
+
font-weight: 400;
|
25518
|
+
letter-spacing: 0.0333333333em;
|
25519
|
+
line-height: 1.667;
|
25520
|
+
text-transform: none;
|
25521
|
+
}
|
25522
|
+
.v-system-bar .v-icon {
|
25523
|
+
opacity: var(--v-medium-emphasis-opacity);
|
25524
|
+
}
|
25525
|
+
.v-system-bar--absolute {
|
25526
|
+
position: absolute;
|
25527
|
+
}
|
25528
|
+
.v-system-bar--fixed {
|
25529
|
+
position: fixed;
|
25530
|
+
}
|
25531
|
+
.v-system-bar--rounded {
|
25532
|
+
border-radius: 0;
|
25533
|
+
}
|
25534
|
+
.v-system-bar--window {
|
25535
|
+
height: 32px;
|
25536
|
+
}
|
25537
|
+
.v-system-bar:not(.v-system-bar--absolute) {
|
25538
|
+
padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
|
25539
|
+
}.v-theme-provider {
|
25540
|
+
background: rgb(var(--v-theme-background));
|
25541
|
+
color: rgb(var(--v-theme-on-background));
|
25414
25542
|
}.v-tabs {
|
25415
25543
|
display: flex;
|
25416
25544
|
height: var(--v-tabs-height);
|
@@ -25506,147 +25634,6 @@ html.v-overlay-scroll-blocked {
|
|
25506
25634
|
top: 0;
|
25507
25635
|
height: 100%;
|
25508
25636
|
width: 2px;
|
25509
|
-
}.v-theme-provider {
|
25510
|
-
background: rgb(var(--v-theme-background));
|
25511
|
-
color: rgb(var(--v-theme-on-background));
|
25512
|
-
}.v-table {
|
25513
|
-
background: rgb(var(--v-theme-surface));
|
25514
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
25515
|
-
font-size: 0.875rem;
|
25516
|
-
transition-duration: 0.28s;
|
25517
|
-
transition-property: box-shadow, opacity, background, height;
|
25518
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
25519
|
-
}
|
25520
|
-
.v-table .v-table-divider {
|
25521
|
-
border-right: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
25522
|
-
}
|
25523
|
-
.v-table .v-table__wrapper > table > thead > tr > th {
|
25524
|
-
border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
25525
|
-
}
|
25526
|
-
.v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > td,
|
25527
|
-
.v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > th {
|
25528
|
-
border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
25529
|
-
}
|
25530
|
-
.v-table .v-table__wrapper > table > tfoot > tr > td,
|
25531
|
-
.v-table .v-table__wrapper > table > tfoot > tr > th {
|
25532
|
-
border-top: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
25533
|
-
}
|
25534
|
-
.v-table.v-table--hover > .v-table__wrapper > table > tbody > tr > td {
|
25535
|
-
position: relative;
|
25536
|
-
}
|
25537
|
-
.v-table.v-table--hover > .v-table__wrapper > table > tbody > tr:hover > td::after {
|
25538
|
-
content: "";
|
25539
|
-
position: absolute;
|
25540
|
-
top: 0;
|
25541
|
-
left: 0;
|
25542
|
-
width: 100%;
|
25543
|
-
height: 100%;
|
25544
|
-
background: rgba(var(--v-border-color), var(--v-hover-opacity));
|
25545
|
-
pointer-events: none;
|
25546
|
-
}
|
25547
|
-
.v-table.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
|
25548
|
-
background: rgb(var(--v-theme-surface));
|
25549
|
-
box-shadow: inset 0 -1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
|
25550
|
-
z-index: 1;
|
25551
|
-
}
|
25552
|
-
.v-table.v-table--fixed-footer > tfoot > tr > th,
|
25553
|
-
.v-table.v-table--fixed-footer > tfoot > tr > td {
|
25554
|
-
background: rgb(var(--v-theme-surface));
|
25555
|
-
box-shadow: inset 0 1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
|
25556
|
-
}
|
25557
|
-
|
25558
|
-
.v-table {
|
25559
|
-
border-radius: inherit;
|
25560
|
-
line-height: 1.5;
|
25561
|
-
max-width: 100%;
|
25562
|
-
display: flex;
|
25563
|
-
flex-direction: column;
|
25564
|
-
}
|
25565
|
-
.v-table > .v-table__wrapper > table {
|
25566
|
-
width: 100%;
|
25567
|
-
border-spacing: 0;
|
25568
|
-
}
|
25569
|
-
.v-table > .v-table__wrapper > table > tbody > tr > td,
|
25570
|
-
.v-table > .v-table__wrapper > table > tbody > tr > th,
|
25571
|
-
.v-table > .v-table__wrapper > table > thead > tr > td,
|
25572
|
-
.v-table > .v-table__wrapper > table > thead > tr > th,
|
25573
|
-
.v-table > .v-table__wrapper > table > tfoot > tr > td,
|
25574
|
-
.v-table > .v-table__wrapper > table > tfoot > tr > th {
|
25575
|
-
padding: 0 16px;
|
25576
|
-
transition-duration: 0.28s;
|
25577
|
-
transition-property: box-shadow, opacity, background, height;
|
25578
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
25579
|
-
}
|
25580
|
-
.v-table > .v-table__wrapper > table > tbody > tr > td,
|
25581
|
-
.v-table > .v-table__wrapper > table > thead > tr > td,
|
25582
|
-
.v-table > .v-table__wrapper > table > tfoot > tr > td {
|
25583
|
-
height: var(--v-table-row-height);
|
25584
|
-
}
|
25585
|
-
.v-table > .v-table__wrapper > table > tbody > tr > th,
|
25586
|
-
.v-table > .v-table__wrapper > table > thead > tr > th,
|
25587
|
-
.v-table > .v-table__wrapper > table > tfoot > tr > th {
|
25588
|
-
height: var(--v-table-header-height);
|
25589
|
-
font-weight: 500;
|
25590
|
-
-webkit-user-select: none;
|
25591
|
-
user-select: none;
|
25592
|
-
text-align: start;
|
25593
|
-
}
|
25594
|
-
.v-table--density-default {
|
25595
|
-
--v-table-header-height: 56px;
|
25596
|
-
--v-table-row-height: 52px;
|
25597
|
-
}
|
25598
|
-
|
25599
|
-
.v-table--density-comfortable {
|
25600
|
-
--v-table-header-height: 48px;
|
25601
|
-
--v-table-row-height: 44px;
|
25602
|
-
}
|
25603
|
-
|
25604
|
-
.v-table--density-compact {
|
25605
|
-
--v-table-header-height: 40px;
|
25606
|
-
--v-table-row-height: 36px;
|
25607
|
-
}
|
25608
|
-
|
25609
|
-
.v-table__wrapper {
|
25610
|
-
border-radius: inherit;
|
25611
|
-
overflow: auto;
|
25612
|
-
flex: 1 1 auto;
|
25613
|
-
}
|
25614
|
-
|
25615
|
-
.v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:first-child {
|
25616
|
-
border-top-left-radius: 0;
|
25617
|
-
}
|
25618
|
-
.v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:last-child {
|
25619
|
-
border-top-right-radius: 0;
|
25620
|
-
}
|
25621
|
-
|
25622
|
-
.v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:first-child {
|
25623
|
-
border-bottom-left-radius: 0;
|
25624
|
-
}
|
25625
|
-
.v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:last-child {
|
25626
|
-
border-bottom-right-radius: 0;
|
25627
|
-
}
|
25628
|
-
|
25629
|
-
.v-table--fixed-height > .v-table__wrapper {
|
25630
|
-
overflow-y: auto;
|
25631
|
-
}
|
25632
|
-
|
25633
|
-
.v-table--fixed-header > .v-table__wrapper > table > thead {
|
25634
|
-
position: sticky;
|
25635
|
-
top: 0;
|
25636
|
-
z-index: 2;
|
25637
|
-
}
|
25638
|
-
.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
|
25639
|
-
border-bottom: 0px !important;
|
25640
|
-
}
|
25641
|
-
|
25642
|
-
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr {
|
25643
|
-
position: sticky;
|
25644
|
-
bottom: 0;
|
25645
|
-
z-index: 1;
|
25646
|
-
}
|
25647
|
-
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
|
25648
|
-
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
|
25649
|
-
border-top: 0px !important;
|
25650
25637
|
}.v-timeline .v-timeline-divider__dot {
|
25651
25638
|
background: rgb(var(--v-theme-surface-light));
|
25652
25639
|
}
|
@@ -26063,76 +26050,19 @@ html.v-overlay-scroll-blocked {
|
|
26063
26050
|
|
26064
26051
|
.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 {
|
26065
26052
|
padding-inline-end: 0;
|
26066
|
-
}.v-
|
26067
|
-
|
26068
|
-
}
|
26069
|
-
.v-window__container {
|
26070
|
-
display: flex;
|
26071
|
-
flex-direction: column;
|
26072
|
-
height: inherit;
|
26073
|
-
position: relative;
|
26074
|
-
transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
|
26075
|
-
}
|
26076
|
-
.v-window__controls {
|
26077
|
-
position: absolute;
|
26078
|
-
left: 0;
|
26079
|
-
top: 0;
|
26080
|
-
width: 100%;
|
26081
|
-
height: 100%;
|
26082
|
-
display: flex;
|
26083
|
-
align-items: center;
|
26084
|
-
justify-content: space-between;
|
26085
|
-
padding: 0 16px;
|
26086
|
-
pointer-events: none;
|
26087
|
-
}
|
26088
|
-
.v-window__controls > * {
|
26089
|
-
pointer-events: auto;
|
26090
|
-
}
|
26091
|
-
.v-window--show-arrows-on-hover {
|
26092
|
-
overflow: hidden;
|
26093
|
-
}
|
26094
|
-
.v-window--show-arrows-on-hover .v-window__left {
|
26095
|
-
transform: translateX(-200%);
|
26096
|
-
}
|
26097
|
-
.v-window--show-arrows-on-hover .v-window__right {
|
26098
|
-
transform: translateX(200%);
|
26099
|
-
}
|
26100
|
-
.v-window--show-arrows-on-hover:hover .v-window__left,
|
26101
|
-
.v-window--show-arrows-on-hover:hover .v-window__right {
|
26102
|
-
transform: translateX(0);
|
26103
|
-
}
|
26104
|
-
|
26105
|
-
.v-window-x-transition-enter-active, .v-window-x-transition-leave-active, .v-window-x-reverse-transition-enter-active, .v-window-x-reverse-transition-leave-active, .v-window-y-transition-enter-active, .v-window-y-transition-leave-active, .v-window-y-reverse-transition-enter-active, .v-window-y-reverse-transition-leave-active {
|
26106
|
-
transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
|
26107
|
-
}
|
26108
|
-
.v-window-x-transition-leave-from, .v-window-x-transition-leave-to, .v-window-x-reverse-transition-leave-from, .v-window-x-reverse-transition-leave-to, .v-window-y-transition-leave-from, .v-window-y-transition-leave-to, .v-window-y-reverse-transition-leave-from, .v-window-y-reverse-transition-leave-to {
|
26109
|
-
position: absolute !important;
|
26110
|
-
top: 0;
|
26111
|
-
width: 100%;
|
26112
|
-
}
|
26113
|
-
.v-window-x-transition-enter-from {
|
26114
|
-
transform: translateX(100%);
|
26115
|
-
}
|
26116
|
-
.v-window-x-transition-leave-to {
|
26117
|
-
transform: translateX(-100%);
|
26118
|
-
}
|
26119
|
-
.v-window-x-reverse-transition-enter-from {
|
26120
|
-
transform: translateX(-100%);
|
26121
|
-
}
|
26122
|
-
.v-window-x-reverse-transition-leave-to {
|
26123
|
-
transform: translateX(100%);
|
26124
|
-
}
|
26125
|
-
.v-window-y-transition-enter-from {
|
26126
|
-
transform: translateY(100%);
|
26053
|
+
}.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
|
26054
|
+
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
26127
26055
|
}
|
26128
|
-
.v-
|
26129
|
-
|
26056
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
|
26057
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
26130
26058
|
}
|
26131
|
-
.v-
|
26132
|
-
|
26059
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
|
26060
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
26133
26061
|
}
|
26134
|
-
|
26135
|
-
|
26062
|
+
@supports not selector(:focus-visible) {
|
26063
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
|
26064
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
26065
|
+
}
|
26136
26066
|
}.v-toolbar {
|
26137
26067
|
align-items: flex-start;
|
26138
26068
|
display: flex;
|
@@ -26262,15 +26192,6 @@ html.v-overlay-scroll-blocked {
|
|
26262
26192
|
}
|
26263
26193
|
.v-toolbar-items > .v-btn {
|
26264
26194
|
border-radius: 0;
|
26265
|
-
}.v-virtual-scroll {
|
26266
|
-
display: block;
|
26267
|
-
flex: 1 1 auto;
|
26268
|
-
max-width: 100%;
|
26269
|
-
overflow: auto;
|
26270
|
-
position: relative;
|
26271
|
-
}
|
26272
|
-
.v-virtual-scroll__container {
|
26273
|
-
display: block;
|
26274
26195
|
}.v-tooltip > .v-overlay__content {
|
26275
26196
|
background: rgb(var(--v-theme-surface-variant));
|
26276
26197
|
color: rgb(var(--v-theme-on-surface-variant));
|
@@ -26293,6 +26214,107 @@ html.v-overlay-scroll-blocked {
|
|
26293
26214
|
.v-tooltip > .v-overlay__content[class*=leave-active] {
|
26294
26215
|
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
26295
26216
|
transition-duration: 75ms;
|
26217
|
+
}.v-window {
|
26218
|
+
overflow: hidden;
|
26219
|
+
}
|
26220
|
+
.v-window__container {
|
26221
|
+
display: flex;
|
26222
|
+
flex-direction: column;
|
26223
|
+
height: inherit;
|
26224
|
+
position: relative;
|
26225
|
+
transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
|
26226
|
+
}
|
26227
|
+
.v-window__controls {
|
26228
|
+
position: absolute;
|
26229
|
+
left: 0;
|
26230
|
+
top: 0;
|
26231
|
+
width: 100%;
|
26232
|
+
height: 100%;
|
26233
|
+
display: flex;
|
26234
|
+
align-items: center;
|
26235
|
+
justify-content: space-between;
|
26236
|
+
padding: 0 16px;
|
26237
|
+
pointer-events: none;
|
26238
|
+
}
|
26239
|
+
.v-window__controls > * {
|
26240
|
+
pointer-events: auto;
|
26241
|
+
}
|
26242
|
+
.v-window--show-arrows-on-hover {
|
26243
|
+
overflow: hidden;
|
26244
|
+
}
|
26245
|
+
.v-window--show-arrows-on-hover .v-window__left {
|
26246
|
+
transform: translateX(-200%);
|
26247
|
+
}
|
26248
|
+
.v-window--show-arrows-on-hover .v-window__right {
|
26249
|
+
transform: translateX(200%);
|
26250
|
+
}
|
26251
|
+
.v-window--show-arrows-on-hover:hover .v-window__left,
|
26252
|
+
.v-window--show-arrows-on-hover:hover .v-window__right {
|
26253
|
+
transform: translateX(0);
|
26254
|
+
}
|
26255
|
+
|
26256
|
+
.v-window-x-transition-enter-active, .v-window-x-transition-leave-active, .v-window-x-reverse-transition-enter-active, .v-window-x-reverse-transition-leave-active, .v-window-y-transition-enter-active, .v-window-y-transition-leave-active, .v-window-y-reverse-transition-enter-active, .v-window-y-reverse-transition-leave-active {
|
26257
|
+
transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
|
26258
|
+
}
|
26259
|
+
.v-window-x-transition-leave-from, .v-window-x-transition-leave-to, .v-window-x-reverse-transition-leave-from, .v-window-x-reverse-transition-leave-to, .v-window-y-transition-leave-from, .v-window-y-transition-leave-to, .v-window-y-reverse-transition-leave-from, .v-window-y-reverse-transition-leave-to {
|
26260
|
+
position: absolute !important;
|
26261
|
+
top: 0;
|
26262
|
+
width: 100%;
|
26263
|
+
}
|
26264
|
+
.v-window-x-transition-enter-from {
|
26265
|
+
transform: translateX(100%);
|
26266
|
+
}
|
26267
|
+
.v-window-x-transition-leave-to {
|
26268
|
+
transform: translateX(-100%);
|
26269
|
+
}
|
26270
|
+
.v-window-x-reverse-transition-enter-from {
|
26271
|
+
transform: translateX(-100%);
|
26272
|
+
}
|
26273
|
+
.v-window-x-reverse-transition-leave-to {
|
26274
|
+
transform: translateX(100%);
|
26275
|
+
}
|
26276
|
+
.v-window-y-transition-enter-from {
|
26277
|
+
transform: translateY(100%);
|
26278
|
+
}
|
26279
|
+
.v-window-y-transition-leave-to {
|
26280
|
+
transform: translateY(-100%);
|
26281
|
+
}
|
26282
|
+
.v-window-y-reverse-transition-enter-from {
|
26283
|
+
transform: translateY(-100%);
|
26284
|
+
}
|
26285
|
+
.v-window-y-reverse-transition-leave-to {
|
26286
|
+
transform: translateY(100%);
|
26287
|
+
}.v-virtual-scroll {
|
26288
|
+
display: block;
|
26289
|
+
flex: 1 1 auto;
|
26290
|
+
max-width: 100%;
|
26291
|
+
overflow: auto;
|
26292
|
+
position: relative;
|
26293
|
+
}
|
26294
|
+
.v-virtual-scroll__container {
|
26295
|
+
display: block;
|
26296
|
+
}.v-color-picker-canvas {
|
26297
|
+
display: flex;
|
26298
|
+
position: relative;
|
26299
|
+
overflow: hidden;
|
26300
|
+
contain: content;
|
26301
|
+
touch-action: none;
|
26302
|
+
}
|
26303
|
+
.v-color-picker-canvas__dot {
|
26304
|
+
position: absolute;
|
26305
|
+
top: 0;
|
26306
|
+
left: 0;
|
26307
|
+
width: 15px;
|
26308
|
+
height: 15px;
|
26309
|
+
background: transparent;
|
26310
|
+
border-radius: 50%;
|
26311
|
+
box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
|
26312
|
+
}
|
26313
|
+
.v-color-picker-canvas__dot--disabled {
|
26314
|
+
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);
|
26315
|
+
}
|
26316
|
+
.v-color-picker-canvas:hover .v-color-picker-canvas__dot {
|
26317
|
+
will-change: transform;
|
26296
26318
|
}.v-color-picker-edit {
|
26297
26319
|
display: flex;
|
26298
26320
|
margin-top: 24px;
|
@@ -26385,69 +26407,206 @@ html.v-overlay-scroll-blocked {
|
|
26385
26407
|
flex-direction: column;
|
26386
26408
|
padding-inline-end: 16px;
|
26387
26409
|
}
|
26388
|
-
|
26389
|
-
.v-color-picker-preview__dot {
|
26390
|
-
position: relative;
|
26391
|
-
height: 30px;
|
26392
|
-
width: 30px;
|
26393
|
-
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
|
26394
|
-
border-radius: 50%;
|
26395
|
-
overflow: hidden;
|
26396
|
-
margin-inline-end: 24px;
|
26410
|
+
|
26411
|
+
.v-color-picker-preview__dot {
|
26412
|
+
position: relative;
|
26413
|
+
height: 30px;
|
26414
|
+
width: 30px;
|
26415
|
+
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
|
26416
|
+
border-radius: 50%;
|
26417
|
+
overflow: hidden;
|
26418
|
+
margin-inline-end: 24px;
|
26419
|
+
}
|
26420
|
+
.v-color-picker-preview__dot > div {
|
26421
|
+
width: 100%;
|
26422
|
+
height: 100%;
|
26423
|
+
}
|
26424
|
+
|
26425
|
+
.v-locale--is-ltr.v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background, .v-locale--is-ltr .v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background {
|
26426
|
+
background: linear-gradient(to right, #F00 0%, #FF0 16.66%, #0F0 33.33%, #0FF 50%, #00F 66.66%, #F0F 83.33%, #F00 100%);
|
26427
|
+
}
|
26428
|
+
|
26429
|
+
.v-locale--is-rtl.v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background, .v-locale--is-rtl .v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background {
|
26430
|
+
background: linear-gradient(to left, #F00 0%, #FF0 16.66%, #0F0 33.33%, #0FF 50%, #00F 66.66%, #F0F 83.33%, #F00 100%);
|
26431
|
+
}
|
26432
|
+
|
26433
|
+
.v-color-picker-preview__track {
|
26434
|
+
position: relative;
|
26435
|
+
width: 100%;
|
26436
|
+
margin: 0 !important;
|
26437
|
+
}
|
26438
|
+
.v-color-picker-preview__track .v-slider-track__fill {
|
26439
|
+
display: none;
|
26440
|
+
}
|
26441
|
+
|
26442
|
+
.v-color-picker-preview {
|
26443
|
+
align-items: center;
|
26444
|
+
display: flex;
|
26445
|
+
margin-bottom: 0;
|
26446
|
+
}
|
26447
|
+
|
26448
|
+
.v-color-picker-preview__eye-dropper {
|
26449
|
+
position: relative;
|
26450
|
+
margin-right: 12px;
|
26451
|
+
}.v-slider-thumb {
|
26452
|
+
touch-action: none;
|
26453
|
+
color: rgb(var(--v-theme-surface-variant));
|
26454
|
+
}
|
26455
|
+
.v-input--error:not(.v-input--disabled) .v-slider-thumb {
|
26456
|
+
color: inherit;
|
26457
|
+
}
|
26458
|
+
|
26459
|
+
.v-slider-thumb__label {
|
26460
|
+
background: rgba(var(--v-theme-surface-variant), 0.7);
|
26461
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
26462
|
+
}
|
26463
|
+
.v-slider-thumb__label::before {
|
26464
|
+
color: rgba(var(--v-theme-surface-variant), 0.7);
|
26465
|
+
}
|
26466
|
+
|
26467
|
+
.v-slider-thumb {
|
26468
|
+
outline: none;
|
26469
|
+
position: absolute;
|
26470
|
+
transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
|
26471
|
+
}
|
26472
|
+
|
26473
|
+
.v-slider-thumb__surface {
|
26474
|
+
cursor: pointer;
|
26475
|
+
width: var(--v-slider-thumb-size);
|
26476
|
+
height: var(--v-slider-thumb-size);
|
26477
|
+
border-radius: 50%;
|
26478
|
+
-webkit-user-select: none;
|
26479
|
+
user-select: none;
|
26480
|
+
background-color: currentColor;
|
26481
|
+
}
|
26482
|
+
@media (forced-colors: active) {
|
26483
|
+
.v-slider-thumb__surface {
|
26484
|
+
background-color: highlight;
|
26485
|
+
}
|
26486
|
+
}
|
26487
|
+
.v-slider-thumb__surface::before {
|
26488
|
+
transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
26489
|
+
content: "";
|
26490
|
+
color: inherit;
|
26491
|
+
top: 0;
|
26492
|
+
left: 0;
|
26493
|
+
width: 100%;
|
26494
|
+
height: 100%;
|
26495
|
+
border-radius: 50%;
|
26496
|
+
background: currentColor;
|
26497
|
+
position: absolute;
|
26498
|
+
pointer-events: none;
|
26499
|
+
opacity: 0;
|
26500
|
+
}
|
26501
|
+
.v-slider-thumb__surface::after {
|
26502
|
+
content: "";
|
26503
|
+
width: 42px;
|
26504
|
+
height: 42px;
|
26505
|
+
position: absolute;
|
26506
|
+
top: 50%;
|
26507
|
+
left: 50%;
|
26508
|
+
transform: translate(-50%, -50%);
|
26509
|
+
}
|
26510
|
+
|
26511
|
+
.v-slider-thumb__label-container {
|
26512
|
+
position: absolute;
|
26513
|
+
transition: 0.2s cubic-bezier(0.4, 0, 1, 1);
|
26514
|
+
}
|
26515
|
+
|
26516
|
+
.v-slider-thumb__label {
|
26517
|
+
display: flex;
|
26518
|
+
align-items: center;
|
26519
|
+
justify-content: center;
|
26520
|
+
font-size: 0.75rem;
|
26521
|
+
min-width: 35px;
|
26522
|
+
height: 25px;
|
26523
|
+
border-radius: 4px;
|
26524
|
+
padding: 6px;
|
26525
|
+
position: absolute;
|
26526
|
+
-webkit-user-select: none;
|
26527
|
+
user-select: none;
|
26528
|
+
transition: 0.2s cubic-bezier(0.4, 0, 1, 1);
|
26529
|
+
}
|
26530
|
+
.v-slider-thumb__label::before {
|
26531
|
+
content: "";
|
26532
|
+
width: 0;
|
26533
|
+
height: 0;
|
26534
|
+
position: absolute;
|
26535
|
+
}
|
26536
|
+
|
26537
|
+
.v-slider-thumb__ripple {
|
26538
|
+
position: absolute;
|
26539
|
+
left: calc(var(--v-slider-thumb-size) / -2);
|
26540
|
+
top: calc(var(--v-slider-thumb-size) / -2);
|
26541
|
+
width: calc(var(--v-slider-thumb-size) * 2);
|
26542
|
+
height: calc(var(--v-slider-thumb-size) * 2);
|
26543
|
+
background: inherit;
|
26544
|
+
}
|
26545
|
+
|
26546
|
+
.v-slider.v-input--horizontal .v-slider-thumb {
|
26547
|
+
top: 50%;
|
26548
|
+
transform: translateY(-50%);
|
26549
|
+
inset-inline-start: calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2);
|
26550
|
+
}
|
26551
|
+
.v-slider.v-input--horizontal .v-slider-thumb__label-container {
|
26552
|
+
left: calc(var(--v-slider-thumb-size) / 2);
|
26553
|
+
top: 0;
|
26397
26554
|
}
|
26398
|
-
.v-
|
26399
|
-
|
26400
|
-
|
26555
|
+
.v-slider.v-input--horizontal .v-slider-thumb__label {
|
26556
|
+
bottom: calc(var(--v-slider-thumb-size) / 2);
|
26557
|
+
}
|
26558
|
+
.v-locale--is-ltr.v-slider.v-input--horizontal .v-slider-thumb__label, .v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-thumb__label {
|
26559
|
+
transform: translateX(-50%);
|
26401
26560
|
}
|
26402
26561
|
|
26403
|
-
.v-locale--is-
|
26404
|
-
|
26562
|
+
.v-locale--is-rtl.v-slider.v-input--horizontal .v-slider-thumb__label, .v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-thumb__label {
|
26563
|
+
transform: translateX(50%);
|
26405
26564
|
}
|
26406
26565
|
|
26407
|
-
.v-
|
26408
|
-
|
26566
|
+
.v-slider.v-input--horizontal .v-slider-thumb__label::before {
|
26567
|
+
border-left: 6px solid transparent;
|
26568
|
+
border-right: 6px solid transparent;
|
26569
|
+
border-top: 6px solid currentColor;
|
26570
|
+
bottom: -6px;
|
26409
26571
|
}
|
26410
26572
|
|
26411
|
-
.v-
|
26412
|
-
|
26413
|
-
width: 100%;
|
26414
|
-
margin: 0 !important;
|
26573
|
+
.v-slider.v-input--vertical .v-slider-thumb {
|
26574
|
+
top: calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2);
|
26415
26575
|
}
|
26416
|
-
.v-
|
26417
|
-
|
26576
|
+
.v-slider.v-input--vertical .v-slider-thumb__label-container {
|
26577
|
+
top: calc(var(--v-slider-thumb-size) / 2);
|
26578
|
+
right: 0;
|
26418
26579
|
}
|
26419
|
-
|
26420
|
-
.
|
26421
|
-
|
26422
|
-
|
26423
|
-
|
26580
|
+
.v-slider.v-input--vertical .v-slider-thumb__label {
|
26581
|
+
top: -12.5px;
|
26582
|
+
left: calc(var(--v-slider-thumb-size) / 2);
|
26583
|
+
}
|
26584
|
+
.v-slider.v-input--vertical .v-slider-thumb__label::before {
|
26585
|
+
border-right: 6px solid currentColor;
|
26586
|
+
border-top: 6px solid transparent;
|
26587
|
+
border-bottom: 6px solid transparent;
|
26588
|
+
left: -6px;
|
26424
26589
|
}
|
26425
26590
|
|
26426
|
-
.v-
|
26427
|
-
|
26428
|
-
|
26429
|
-
}.v-color-picker-canvas {
|
26430
|
-
display: flex;
|
26431
|
-
position: relative;
|
26432
|
-
overflow: hidden;
|
26433
|
-
contain: content;
|
26434
|
-
touch-action: none;
|
26591
|
+
.v-slider-thumb--focused .v-slider-thumb__surface::before {
|
26592
|
+
transform: scale(2);
|
26593
|
+
opacity: var(--v-focus-opacity);
|
26435
26594
|
}
|
26436
|
-
|
26437
|
-
|
26438
|
-
|
26439
|
-
left: 0;
|
26440
|
-
width: 15px;
|
26441
|
-
height: 15px;
|
26442
|
-
background: transparent;
|
26443
|
-
border-radius: 50%;
|
26444
|
-
box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
|
26595
|
+
|
26596
|
+
.v-slider-thumb--pressed {
|
26597
|
+
transition: none;
|
26445
26598
|
}
|
26446
|
-
.v-
|
26447
|
-
|
26599
|
+
.v-slider-thumb--pressed .v-slider-thumb__surface::before {
|
26600
|
+
opacity: var(--v-pressed-opacity);
|
26448
26601
|
}
|
26449
|
-
|
26450
|
-
|
26602
|
+
|
26603
|
+
@media (hover: hover) {
|
26604
|
+
.v-slider-thumb:hover .v-slider-thumb__surface::before {
|
26605
|
+
transform: scale(2);
|
26606
|
+
}
|
26607
|
+
.v-slider-thumb:hover:not(.v-slider-thumb--focused) .v-slider-thumb__surface::before {
|
26608
|
+
opacity: var(--v-hover-opacity);
|
26609
|
+
}
|
26451
26610
|
}.v-slider-track__background {
|
26452
26611
|
background-color: rgb(var(--v-theme-surface-variant));
|
26453
26612
|
}
|
@@ -26626,163 +26785,4 @@ html.v-overlay-scroll-blocked {
|
|
26626
26785
|
|
26627
26786
|
.v-slider-track__background--opacity {
|
26628
26787
|
opacity: 0.38;
|
26629
|
-
}.v-slider-thumb {
|
26630
|
-
touch-action: none;
|
26631
|
-
color: rgb(var(--v-theme-surface-variant));
|
26632
|
-
}
|
26633
|
-
.v-input--error:not(.v-input--disabled) .v-slider-thumb {
|
26634
|
-
color: inherit;
|
26635
|
-
}
|
26636
|
-
|
26637
|
-
.v-slider-thumb__label {
|
26638
|
-
background: rgba(var(--v-theme-surface-variant), 0.7);
|
26639
|
-
color: rgb(var(--v-theme-on-surface-variant));
|
26640
|
-
}
|
26641
|
-
.v-slider-thumb__label::before {
|
26642
|
-
color: rgba(var(--v-theme-surface-variant), 0.7);
|
26643
|
-
}
|
26644
|
-
|
26645
|
-
.v-slider-thumb {
|
26646
|
-
outline: none;
|
26647
|
-
position: absolute;
|
26648
|
-
transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
|
26649
|
-
}
|
26650
|
-
|
26651
|
-
.v-slider-thumb__surface {
|
26652
|
-
cursor: pointer;
|
26653
|
-
width: var(--v-slider-thumb-size);
|
26654
|
-
height: var(--v-slider-thumb-size);
|
26655
|
-
border-radius: 50%;
|
26656
|
-
-webkit-user-select: none;
|
26657
|
-
user-select: none;
|
26658
|
-
background-color: currentColor;
|
26659
|
-
}
|
26660
|
-
@media (forced-colors: active) {
|
26661
|
-
.v-slider-thumb__surface {
|
26662
|
-
background-color: highlight;
|
26663
|
-
}
|
26664
|
-
}
|
26665
|
-
.v-slider-thumb__surface::before {
|
26666
|
-
transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
26667
|
-
content: "";
|
26668
|
-
color: inherit;
|
26669
|
-
top: 0;
|
26670
|
-
left: 0;
|
26671
|
-
width: 100%;
|
26672
|
-
height: 100%;
|
26673
|
-
border-radius: 50%;
|
26674
|
-
background: currentColor;
|
26675
|
-
position: absolute;
|
26676
|
-
pointer-events: none;
|
26677
|
-
opacity: 0;
|
26678
|
-
}
|
26679
|
-
.v-slider-thumb__surface::after {
|
26680
|
-
content: "";
|
26681
|
-
width: 42px;
|
26682
|
-
height: 42px;
|
26683
|
-
position: absolute;
|
26684
|
-
top: 50%;
|
26685
|
-
left: 50%;
|
26686
|
-
transform: translate(-50%, -50%);
|
26687
|
-
}
|
26688
|
-
|
26689
|
-
.v-slider-thumb__label-container {
|
26690
|
-
position: absolute;
|
26691
|
-
transition: 0.2s cubic-bezier(0.4, 0, 1, 1);
|
26692
|
-
}
|
26693
|
-
|
26694
|
-
.v-slider-thumb__label {
|
26695
|
-
display: flex;
|
26696
|
-
align-items: center;
|
26697
|
-
justify-content: center;
|
26698
|
-
font-size: 0.75rem;
|
26699
|
-
min-width: 35px;
|
26700
|
-
height: 25px;
|
26701
|
-
border-radius: 4px;
|
26702
|
-
padding: 6px;
|
26703
|
-
position: absolute;
|
26704
|
-
-webkit-user-select: none;
|
26705
|
-
user-select: none;
|
26706
|
-
transition: 0.2s cubic-bezier(0.4, 0, 1, 1);
|
26707
|
-
}
|
26708
|
-
.v-slider-thumb__label::before {
|
26709
|
-
content: "";
|
26710
|
-
width: 0;
|
26711
|
-
height: 0;
|
26712
|
-
position: absolute;
|
26713
|
-
}
|
26714
|
-
|
26715
|
-
.v-slider-thumb__ripple {
|
26716
|
-
position: absolute;
|
26717
|
-
left: calc(var(--v-slider-thumb-size) / -2);
|
26718
|
-
top: calc(var(--v-slider-thumb-size) / -2);
|
26719
|
-
width: calc(var(--v-slider-thumb-size) * 2);
|
26720
|
-
height: calc(var(--v-slider-thumb-size) * 2);
|
26721
|
-
background: inherit;
|
26722
|
-
}
|
26723
|
-
|
26724
|
-
.v-slider.v-input--horizontal .v-slider-thumb {
|
26725
|
-
top: 50%;
|
26726
|
-
transform: translateY(-50%);
|
26727
|
-
inset-inline-start: calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2);
|
26728
|
-
}
|
26729
|
-
.v-slider.v-input--horizontal .v-slider-thumb__label-container {
|
26730
|
-
left: calc(var(--v-slider-thumb-size) / 2);
|
26731
|
-
top: 0;
|
26732
|
-
}
|
26733
|
-
.v-slider.v-input--horizontal .v-slider-thumb__label {
|
26734
|
-
bottom: calc(var(--v-slider-thumb-size) / 2);
|
26735
|
-
}
|
26736
|
-
.v-locale--is-ltr.v-slider.v-input--horizontal .v-slider-thumb__label, .v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-thumb__label {
|
26737
|
-
transform: translateX(-50%);
|
26738
|
-
}
|
26739
|
-
|
26740
|
-
.v-locale--is-rtl.v-slider.v-input--horizontal .v-slider-thumb__label, .v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-thumb__label {
|
26741
|
-
transform: translateX(50%);
|
26742
|
-
}
|
26743
|
-
|
26744
|
-
.v-slider.v-input--horizontal .v-slider-thumb__label::before {
|
26745
|
-
border-left: 6px solid transparent;
|
26746
|
-
border-right: 6px solid transparent;
|
26747
|
-
border-top: 6px solid currentColor;
|
26748
|
-
bottom: -6px;
|
26749
|
-
}
|
26750
|
-
|
26751
|
-
.v-slider.v-input--vertical .v-slider-thumb {
|
26752
|
-
top: calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2);
|
26753
|
-
}
|
26754
|
-
.v-slider.v-input--vertical .v-slider-thumb__label-container {
|
26755
|
-
top: calc(var(--v-slider-thumb-size) / 2);
|
26756
|
-
right: 0;
|
26757
|
-
}
|
26758
|
-
.v-slider.v-input--vertical .v-slider-thumb__label {
|
26759
|
-
top: -12.5px;
|
26760
|
-
left: calc(var(--v-slider-thumb-size) / 2);
|
26761
|
-
}
|
26762
|
-
.v-slider.v-input--vertical .v-slider-thumb__label::before {
|
26763
|
-
border-right: 6px solid currentColor;
|
26764
|
-
border-top: 6px solid transparent;
|
26765
|
-
border-bottom: 6px solid transparent;
|
26766
|
-
left: -6px;
|
26767
|
-
}
|
26768
|
-
|
26769
|
-
.v-slider-thumb--focused .v-slider-thumb__surface::before {
|
26770
|
-
transform: scale(2);
|
26771
|
-
opacity: var(--v-focus-opacity);
|
26772
|
-
}
|
26773
|
-
|
26774
|
-
.v-slider-thumb--pressed {
|
26775
|
-
transition: none;
|
26776
|
-
}
|
26777
|
-
.v-slider-thumb--pressed .v-slider-thumb__surface::before {
|
26778
|
-
opacity: var(--v-pressed-opacity);
|
26779
|
-
}
|
26780
|
-
|
26781
|
-
@media (hover: hover) {
|
26782
|
-
.v-slider-thumb:hover .v-slider-thumb__surface::before {
|
26783
|
-
transform: scale(2);
|
26784
|
-
}
|
26785
|
-
.v-slider-thumb:hover:not(.v-slider-thumb--focused) .v-slider-thumb__surface::before {
|
26786
|
-
opacity: var(--v-hover-opacity);
|
26787
|
-
}
|
26788
26788
|
}
|