vuetify 3.5.5 → 3.5.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/json/attributes.json +40 -0
- package/dist/json/importMap-labs.json +8 -8
- package/dist/json/importMap.json +132 -128
- package/dist/json/tags.json +15 -0
- package/dist/json/web-types.json +292 -1
- package/dist/vuetify-labs.css +1632 -1635
- package/dist/vuetify-labs.d.ts +242 -1
- package/dist/vuetify-labs.esm.js +24 -13
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +24 -13
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +711 -714
- package/dist/vuetify.d.ts +281 -39
- package/dist/vuetify.esm.js +24 -13
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +24 -13
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +22 -21
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.mjs +7 -4
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VCombobox/VCombobox.mjs +3 -1
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VDataTable/index.d.mts +214 -1
- package/lib/components/VDataTable/index.mjs +1 -0
- package/lib/components/VDataTable/index.mjs.map +1 -1
- package/lib/components/VExpansionPanel/VExpansionPanel.css +4 -7
- package/lib/components/VExpansionPanel/VExpansionPanel.sass +4 -3
- package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs +2 -0
- package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs.map +1 -1
- package/lib/components/VExpansionPanel/VExpansionPanels.mjs +2 -0
- package/lib/components/VExpansionPanel/VExpansionPanels.mjs.map +1 -1
- package/lib/components/VExpansionPanel/index.d.mts +27 -0
- package/lib/components/VSelect/VSelect.mjs +4 -3
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/index.d.mts +241 -1
- package/lib/composables/filter.mjs +1 -1
- package/lib/composables/filter.mjs.map +1 -1
- package/lib/composables/goto.mjs +2 -2
- package/lib/composables/goto.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +39 -38
- package/package.json +2 -2
package/dist/vuetify-labs.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.5.
|
|
2
|
+
* Vuetify v3.5.6
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -17029,57 +17029,6 @@ html.overflow-y-hidden {
|
|
|
17029
17029
|
font-weight: normal;
|
|
17030
17030
|
padding: 0.2em 0.4rem;
|
|
17031
17031
|
box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
17032
|
-
}.v-picker.v-sheet {
|
|
17033
|
-
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));
|
|
17034
|
-
border-radius: 4px;
|
|
17035
|
-
display: grid;
|
|
17036
|
-
grid-auto-rows: min-content;
|
|
17037
|
-
grid-template-areas: "title" "header" "body";
|
|
17038
|
-
overflow: hidden;
|
|
17039
|
-
}
|
|
17040
|
-
.v-picker.v-sheet.v-picker--with-actions {
|
|
17041
|
-
grid-template-areas: "title" "header" "body" "actions";
|
|
17042
|
-
}
|
|
17043
|
-
|
|
17044
|
-
.v-picker__body {
|
|
17045
|
-
grid-area: body;
|
|
17046
|
-
}
|
|
17047
|
-
|
|
17048
|
-
.v-picker__header {
|
|
17049
|
-
grid-area: header;
|
|
17050
|
-
}
|
|
17051
|
-
|
|
17052
|
-
.v-picker__actions {
|
|
17053
|
-
grid-area: actions;
|
|
17054
|
-
padding: 0 12px 12px;
|
|
17055
|
-
display: flex;
|
|
17056
|
-
align-items: center;
|
|
17057
|
-
justify-content: flex-end;
|
|
17058
|
-
}
|
|
17059
|
-
.v-picker__actions .v-btn {
|
|
17060
|
-
min-width: 48px;
|
|
17061
|
-
}
|
|
17062
|
-
.v-picker__actions .v-btn:not(:last-child) {
|
|
17063
|
-
margin-inline-end: 8px;
|
|
17064
|
-
}
|
|
17065
|
-
|
|
17066
|
-
.v-picker--landscape {
|
|
17067
|
-
grid-template-areas: "title" "header body" "header body";
|
|
17068
|
-
}
|
|
17069
|
-
|
|
17070
|
-
.v-picker--landscape.v-picker--with-actions {
|
|
17071
|
-
grid-template-areas: "title" "header body" "header actions";
|
|
17072
|
-
}
|
|
17073
|
-
|
|
17074
|
-
.v-picker-title {
|
|
17075
|
-
text-transform: uppercase;
|
|
17076
|
-
font-size: 0.75rem;
|
|
17077
|
-
grid-area: title;
|
|
17078
|
-
padding-inline: 24px 12px;
|
|
17079
|
-
padding-top: 16px;
|
|
17080
|
-
padding-bottom: 16px;
|
|
17081
|
-
font-weight: 400;
|
|
17082
|
-
letter-spacing: 0.1666666667em;
|
|
17083
17032
|
}.v-calendar-day {
|
|
17084
17033
|
position: relative;
|
|
17085
17034
|
display: flex;
|
|
@@ -17112,82 +17061,6 @@ html.overflow-y-hidden {
|
|
|
17112
17061
|
}
|
|
17113
17062
|
.v-calendar-weekly .v-calendar__container.days__0 {
|
|
17114
17063
|
grid-template-columns: repeat(1, 1fr);
|
|
17115
|
-
}.v-calendar-header {
|
|
17116
|
-
align-items: center;
|
|
17117
|
-
display: flex;
|
|
17118
|
-
min-height: 64px;
|
|
17119
|
-
}
|
|
17120
|
-
|
|
17121
|
-
.v-calendar-header__today {
|
|
17122
|
-
margin-inline-end: 24px;
|
|
17123
|
-
}
|
|
17124
|
-
|
|
17125
|
-
.v-calendar-header__title {
|
|
17126
|
-
font-size: 1.5rem;
|
|
17127
|
-
margin-inline-start: 24px;
|
|
17128
|
-
}.v-calendar-month__day {
|
|
17129
|
-
position: relative;
|
|
17130
|
-
display: flex;
|
|
17131
|
-
flex-direction: column;
|
|
17132
|
-
min-width: 0;
|
|
17133
|
-
min-height: 150px;
|
|
17134
|
-
border-right: thin solid #e0e0e0;
|
|
17135
|
-
border-bottom: thin solid #e0e0e0;
|
|
17136
|
-
flex: 1 1 auto;
|
|
17137
|
-
border-inline-end: thin solid #e0e0e0;
|
|
17138
|
-
}
|
|
17139
|
-
|
|
17140
|
-
.v-calendar-weekly__day {
|
|
17141
|
-
flex: 1;
|
|
17142
|
-
width: 0;
|
|
17143
|
-
overflow: hidden;
|
|
17144
|
-
-webkit-user-select: none;
|
|
17145
|
-
user-select: none;
|
|
17146
|
-
position: relative;
|
|
17147
|
-
padding: 0px 0px 0px 0px;
|
|
17148
|
-
min-width: 0;
|
|
17149
|
-
min-height: 150px;
|
|
17150
|
-
border-right: thin solid #e0e0e0;
|
|
17151
|
-
border-bottom: thin solid #e0e0e0;
|
|
17152
|
-
flex: 1 1 auto;
|
|
17153
|
-
border-inline-end: thin solid #e0e0e0;
|
|
17154
|
-
text-align: center;
|
|
17155
|
-
}
|
|
17156
|
-
.v-calendar-weekly__day.v-present .v-calendar-weekly__day-month {
|
|
17157
|
-
color: currentColor;
|
|
17158
|
-
}
|
|
17159
|
-
|
|
17160
|
-
.v-calendar-weekly__day-label {
|
|
17161
|
-
text-decoration: none;
|
|
17162
|
-
-webkit-user-select: none;
|
|
17163
|
-
user-select: none;
|
|
17164
|
-
cursor: pointer;
|
|
17165
|
-
box-shadow: none;
|
|
17166
|
-
text-align: center;
|
|
17167
|
-
}
|
|
17168
|
-
.v-calendar-weekly__day-label .v-btn {
|
|
17169
|
-
font-size: 12px;
|
|
17170
|
-
text-transform: none !important;
|
|
17171
|
-
}
|
|
17172
|
-
.v-calendar-weekly__day-label .v-btn.v-calendar-weekly__day-label__today {
|
|
17173
|
-
background: rgba(var(--v-theme-surface-variant), var(--v-medium-emphasis-opacity));
|
|
17174
|
-
color: rgb(var(--v-theme-on-surface-variant));
|
|
17175
|
-
}
|
|
17176
|
-
|
|
17177
|
-
.v-calendar-weekly__day-month {
|
|
17178
|
-
position: absolute;
|
|
17179
|
-
text-decoration: none;
|
|
17180
|
-
-webkit-user-select: none;
|
|
17181
|
-
user-select: none;
|
|
17182
|
-
box-shadow: none;
|
|
17183
|
-
top: 0;
|
|
17184
|
-
left: 36px;
|
|
17185
|
-
height: 32px;
|
|
17186
|
-
line-height: 32px;
|
|
17187
|
-
}
|
|
17188
|
-
|
|
17189
|
-
.v-calendar-weekly__day-alldayevents-container {
|
|
17190
|
-
min-height: 24px;
|
|
17191
17064
|
}.v-calendar-weekly {
|
|
17192
17065
|
width: 100%;
|
|
17193
17066
|
height: 100%;
|
|
@@ -17411,6 +17284,70 @@ html.overflow-y-hidden {
|
|
|
17411
17284
|
}
|
|
17412
17285
|
.v-calendar-month__days.days-with-weeknumbers__7 > .v-calendar-month__day:nth-child(8n) {
|
|
17413
17286
|
border-right: none;
|
|
17287
|
+
}.v-calendar-header {
|
|
17288
|
+
align-items: center;
|
|
17289
|
+
display: flex;
|
|
17290
|
+
min-height: 64px;
|
|
17291
|
+
}
|
|
17292
|
+
|
|
17293
|
+
.v-calendar-header__today {
|
|
17294
|
+
margin-inline-end: 24px;
|
|
17295
|
+
}
|
|
17296
|
+
|
|
17297
|
+
.v-calendar-header__title {
|
|
17298
|
+
font-size: 1.5rem;
|
|
17299
|
+
margin-inline-start: 24px;
|
|
17300
|
+
}.v-picker.v-sheet {
|
|
17301
|
+
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));
|
|
17302
|
+
border-radius: 4px;
|
|
17303
|
+
display: grid;
|
|
17304
|
+
grid-auto-rows: min-content;
|
|
17305
|
+
grid-template-areas: "title" "header" "body";
|
|
17306
|
+
overflow: hidden;
|
|
17307
|
+
}
|
|
17308
|
+
.v-picker.v-sheet.v-picker--with-actions {
|
|
17309
|
+
grid-template-areas: "title" "header" "body" "actions";
|
|
17310
|
+
}
|
|
17311
|
+
|
|
17312
|
+
.v-picker__body {
|
|
17313
|
+
grid-area: body;
|
|
17314
|
+
}
|
|
17315
|
+
|
|
17316
|
+
.v-picker__header {
|
|
17317
|
+
grid-area: header;
|
|
17318
|
+
}
|
|
17319
|
+
|
|
17320
|
+
.v-picker__actions {
|
|
17321
|
+
grid-area: actions;
|
|
17322
|
+
padding: 0 12px 12px;
|
|
17323
|
+
display: flex;
|
|
17324
|
+
align-items: center;
|
|
17325
|
+
justify-content: flex-end;
|
|
17326
|
+
}
|
|
17327
|
+
.v-picker__actions .v-btn {
|
|
17328
|
+
min-width: 48px;
|
|
17329
|
+
}
|
|
17330
|
+
.v-picker__actions .v-btn:not(:last-child) {
|
|
17331
|
+
margin-inline-end: 8px;
|
|
17332
|
+
}
|
|
17333
|
+
|
|
17334
|
+
.v-picker--landscape {
|
|
17335
|
+
grid-template-areas: "title" "header body" "header body";
|
|
17336
|
+
}
|
|
17337
|
+
|
|
17338
|
+
.v-picker--landscape.v-picker--with-actions {
|
|
17339
|
+
grid-template-areas: "title" "header body" "header actions";
|
|
17340
|
+
}
|
|
17341
|
+
|
|
17342
|
+
.v-picker-title {
|
|
17343
|
+
text-transform: uppercase;
|
|
17344
|
+
font-size: 0.75rem;
|
|
17345
|
+
grid-area: title;
|
|
17346
|
+
padding-inline: 24px 12px;
|
|
17347
|
+
padding-top: 16px;
|
|
17348
|
+
padding-bottom: 16px;
|
|
17349
|
+
font-weight: 400;
|
|
17350
|
+
letter-spacing: 0.1666666667em;
|
|
17414
17351
|
}.v-calendar-day__row-with-label {
|
|
17415
17352
|
display: grid;
|
|
17416
17353
|
grid-template-columns: 48px 8px 1fr;
|
|
@@ -17452,6 +17389,69 @@ html.overflow-y-hidden {
|
|
|
17452
17389
|
}
|
|
17453
17390
|
.v-calendar-day__row-without-label .v-calendar-day__row-content.v-calendar-day__row-content-through {
|
|
17454
17391
|
border-bottom: none;
|
|
17392
|
+
}.v-calendar-month__day {
|
|
17393
|
+
position: relative;
|
|
17394
|
+
display: flex;
|
|
17395
|
+
flex-direction: column;
|
|
17396
|
+
min-width: 0;
|
|
17397
|
+
min-height: 150px;
|
|
17398
|
+
border-right: thin solid #e0e0e0;
|
|
17399
|
+
border-bottom: thin solid #e0e0e0;
|
|
17400
|
+
flex: 1 1 auto;
|
|
17401
|
+
border-inline-end: thin solid #e0e0e0;
|
|
17402
|
+
}
|
|
17403
|
+
|
|
17404
|
+
.v-calendar-weekly__day {
|
|
17405
|
+
flex: 1;
|
|
17406
|
+
width: 0;
|
|
17407
|
+
overflow: hidden;
|
|
17408
|
+
-webkit-user-select: none;
|
|
17409
|
+
user-select: none;
|
|
17410
|
+
position: relative;
|
|
17411
|
+
padding: 0px 0px 0px 0px;
|
|
17412
|
+
min-width: 0;
|
|
17413
|
+
min-height: 150px;
|
|
17414
|
+
border-right: thin solid #e0e0e0;
|
|
17415
|
+
border-bottom: thin solid #e0e0e0;
|
|
17416
|
+
flex: 1 1 auto;
|
|
17417
|
+
border-inline-end: thin solid #e0e0e0;
|
|
17418
|
+
text-align: center;
|
|
17419
|
+
}
|
|
17420
|
+
.v-calendar-weekly__day.v-present .v-calendar-weekly__day-month {
|
|
17421
|
+
color: currentColor;
|
|
17422
|
+
}
|
|
17423
|
+
|
|
17424
|
+
.v-calendar-weekly__day-label {
|
|
17425
|
+
text-decoration: none;
|
|
17426
|
+
-webkit-user-select: none;
|
|
17427
|
+
user-select: none;
|
|
17428
|
+
cursor: pointer;
|
|
17429
|
+
box-shadow: none;
|
|
17430
|
+
text-align: center;
|
|
17431
|
+
}
|
|
17432
|
+
.v-calendar-weekly__day-label .v-btn {
|
|
17433
|
+
font-size: 12px;
|
|
17434
|
+
text-transform: none !important;
|
|
17435
|
+
}
|
|
17436
|
+
.v-calendar-weekly__day-label .v-btn.v-calendar-weekly__day-label__today {
|
|
17437
|
+
background: rgba(var(--v-theme-surface-variant), var(--v-medium-emphasis-opacity));
|
|
17438
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
|
17439
|
+
}
|
|
17440
|
+
|
|
17441
|
+
.v-calendar-weekly__day-month {
|
|
17442
|
+
position: absolute;
|
|
17443
|
+
text-decoration: none;
|
|
17444
|
+
-webkit-user-select: none;
|
|
17445
|
+
user-select: none;
|
|
17446
|
+
box-shadow: none;
|
|
17447
|
+
top: 0;
|
|
17448
|
+
left: 36px;
|
|
17449
|
+
height: 32px;
|
|
17450
|
+
line-height: 32px;
|
|
17451
|
+
}
|
|
17452
|
+
|
|
17453
|
+
.v-calendar-weekly__day-alldayevents-container {
|
|
17454
|
+
min-height: 24px;
|
|
17455
17455
|
}.v-application {
|
|
17456
17456
|
display: flex;
|
|
17457
17457
|
background: rgb(var(--v-theme-background));
|
|
@@ -17468,8 +17468,101 @@ html.overflow-y-hidden {
|
|
|
17468
17468
|
min-height: 100vh;
|
|
17469
17469
|
min-height: 100dvh;
|
|
17470
17470
|
position: relative;
|
|
17471
|
-
}.v-
|
|
17472
|
-
display:
|
|
17471
|
+
}.v-app-bar {
|
|
17472
|
+
display: flex;
|
|
17473
|
+
}
|
|
17474
|
+
.v-app-bar.v-toolbar {
|
|
17475
|
+
background: rgb(var(--v-theme-surface));
|
|
17476
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
17477
|
+
}
|
|
17478
|
+
.v-app-bar.v-toolbar:not(.v-toolbar--flat) {
|
|
17479
|
+
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));
|
|
17480
|
+
}
|
|
17481
|
+
.v-app-bar:not(.v-toolbar--absolute) {
|
|
17482
|
+
padding-inline-end: var(--v-scrollbar-offset);
|
|
17483
|
+
}.v-autocomplete .v-field .v-text-field__prefix,
|
|
17484
|
+
.v-autocomplete .v-field .v-text-field__suffix,
|
|
17485
|
+
.v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
|
|
17486
|
+
cursor: text;
|
|
17487
|
+
}
|
|
17488
|
+
.v-autocomplete .v-field .v-field__input > input {
|
|
17489
|
+
flex: 1 1;
|
|
17490
|
+
}
|
|
17491
|
+
.v-autocomplete .v-field input {
|
|
17492
|
+
min-width: 64px;
|
|
17493
|
+
}
|
|
17494
|
+
.v-autocomplete .v-field:not(.v-field--focused) input {
|
|
17495
|
+
min-width: 0;
|
|
17496
|
+
}
|
|
17497
|
+
.v-autocomplete .v-field--dirty .v-autocomplete__selection {
|
|
17498
|
+
margin-inline-end: 2px;
|
|
17499
|
+
}
|
|
17500
|
+
.v-autocomplete .v-autocomplete__selection-text {
|
|
17501
|
+
overflow: hidden;
|
|
17502
|
+
text-overflow: ellipsis;
|
|
17503
|
+
white-space: nowrap;
|
|
17504
|
+
}
|
|
17505
|
+
|
|
17506
|
+
.v-autocomplete__content {
|
|
17507
|
+
overflow: hidden;
|
|
17508
|
+
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));
|
|
17509
|
+
border-radius: 4px;
|
|
17510
|
+
}
|
|
17511
|
+
.v-autocomplete__mask {
|
|
17512
|
+
background: rgb(var(--v-theme-surface-light));
|
|
17513
|
+
}
|
|
17514
|
+
.v-autocomplete__selection {
|
|
17515
|
+
display: inline-flex;
|
|
17516
|
+
align-items: center;
|
|
17517
|
+
height: 1.5rem;
|
|
17518
|
+
letter-spacing: inherit;
|
|
17519
|
+
line-height: inherit;
|
|
17520
|
+
max-width: calc(100% - 2px - 2px);
|
|
17521
|
+
}
|
|
17522
|
+
.v-autocomplete__selection:first-child {
|
|
17523
|
+
margin-inline-start: 0;
|
|
17524
|
+
}
|
|
17525
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
|
17526
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
|
17527
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
|
17528
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
17529
|
+
top: 0px;
|
|
17530
|
+
}
|
|
17531
|
+
.v-autocomplete--selecting-index .v-autocomplete__selection {
|
|
17532
|
+
opacity: var(--v-medium-emphasis-opacity);
|
|
17533
|
+
}
|
|
17534
|
+
.v-autocomplete--selecting-index .v-autocomplete__selection--selected {
|
|
17535
|
+
opacity: 1;
|
|
17536
|
+
}
|
|
17537
|
+
.v-autocomplete--selecting-index .v-field__input > input {
|
|
17538
|
+
caret-color: transparent;
|
|
17539
|
+
}
|
|
17540
|
+
.v-autocomplete--single.v-text-field .v-field--focused input {
|
|
17541
|
+
flex: 1 1;
|
|
17542
|
+
position: absolute;
|
|
17543
|
+
left: 0;
|
|
17544
|
+
right: 0;
|
|
17545
|
+
width: 100%;
|
|
17546
|
+
padding-inline: inherit;
|
|
17547
|
+
}
|
|
17548
|
+
.v-autocomplete--single .v-field--active input {
|
|
17549
|
+
transition: none;
|
|
17550
|
+
}
|
|
17551
|
+
.v-autocomplete--single .v-field--dirty:not(.v-field--focused) input {
|
|
17552
|
+
opacity: 0;
|
|
17553
|
+
}
|
|
17554
|
+
.v-autocomplete--single .v-field--focused .v-autocomplete__selection {
|
|
17555
|
+
opacity: 0;
|
|
17556
|
+
}
|
|
17557
|
+
.v-autocomplete__menu-icon {
|
|
17558
|
+
margin-inline-start: 4px;
|
|
17559
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
17560
|
+
}
|
|
17561
|
+
.v-autocomplete--active-menu .v-autocomplete__menu-icon {
|
|
17562
|
+
opacity: var(--v-high-emphasis-opacity);
|
|
17563
|
+
transform: rotate(180deg);
|
|
17564
|
+
}.v-alert {
|
|
17565
|
+
display: grid;
|
|
17473
17566
|
flex: 1 1;
|
|
17474
17567
|
grid-template-areas: "prepend content append close" ". content . .";
|
|
17475
17568
|
grid-template-columns: max-content auto max-content max-content;
|
|
@@ -17765,61 +17858,6 @@ html.overflow-y-hidden {
|
|
|
17765
17858
|
.v-avatar .v-img {
|
|
17766
17859
|
height: 100%;
|
|
17767
17860
|
width: 100%;
|
|
17768
|
-
}.v-bottom-navigation {
|
|
17769
|
-
display: flex;
|
|
17770
|
-
max-width: 100%;
|
|
17771
|
-
overflow: hidden;
|
|
17772
|
-
position: absolute;
|
|
17773
|
-
transition: transform, color 0.2s, 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
17774
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
17775
|
-
border-style: solid;
|
|
17776
|
-
border-width: 0;
|
|
17777
|
-
border-radius: 0;
|
|
17778
|
-
background: rgb(var(--v-theme-surface));
|
|
17779
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
17780
|
-
}
|
|
17781
|
-
.v-bottom-navigation--border {
|
|
17782
|
-
border-width: thin;
|
|
17783
|
-
box-shadow: none;
|
|
17784
|
-
}
|
|
17785
|
-
.v-bottom-navigation--active {
|
|
17786
|
-
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));
|
|
17787
|
-
}
|
|
17788
|
-
|
|
17789
|
-
.v-bottom-navigation__content {
|
|
17790
|
-
display: flex;
|
|
17791
|
-
flex: none;
|
|
17792
|
-
font-size: 0.75rem;
|
|
17793
|
-
justify-content: center;
|
|
17794
|
-
transition: inherit;
|
|
17795
|
-
width: 100%;
|
|
17796
|
-
}
|
|
17797
|
-
.v-bottom-navigation .v-bottom-navigation__content > .v-btn {
|
|
17798
|
-
font-size: inherit;
|
|
17799
|
-
height: 100%;
|
|
17800
|
-
max-width: 168px;
|
|
17801
|
-
min-width: 80px;
|
|
17802
|
-
text-transform: none;
|
|
17803
|
-
transition: inherit;
|
|
17804
|
-
width: auto;
|
|
17805
|
-
border-radius: 0;
|
|
17806
|
-
}
|
|
17807
|
-
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__content,
|
|
17808
|
-
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
|
|
17809
|
-
transition: inherit;
|
|
17810
|
-
}
|
|
17811
|
-
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
|
|
17812
|
-
font-size: 1.5rem;
|
|
17813
|
-
}
|
|
17814
|
-
.v-bottom-navigation--grow .v-bottom-navigation__content > .v-btn {
|
|
17815
|
-
flex-grow: 1;
|
|
17816
|
-
}
|
|
17817
|
-
.v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content > span {
|
|
17818
|
-
transition: inherit;
|
|
17819
|
-
opacity: 0;
|
|
17820
|
-
}
|
|
17821
|
-
.v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
|
|
17822
|
-
transform: translateY(0.5rem);
|
|
17823
17861
|
}.v-badge {
|
|
17824
17862
|
display: inline-block;
|
|
17825
17863
|
line-height: 1;
|
|
@@ -17891,87 +17929,118 @@ html.overflow-y-hidden {
|
|
|
17891
17929
|
display: inline-flex;
|
|
17892
17930
|
justify-content: center;
|
|
17893
17931
|
margin: 0 4px;
|
|
17894
|
-
}.v-
|
|
17895
|
-
|
|
17896
|
-
|
|
17897
|
-
|
|
17932
|
+
}.v-bottom-navigation {
|
|
17933
|
+
display: flex;
|
|
17934
|
+
max-width: 100%;
|
|
17935
|
+
overflow: hidden;
|
|
17936
|
+
position: absolute;
|
|
17937
|
+
transition: transform, color 0.2s, 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
17938
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
17939
|
+
border-style: solid;
|
|
17940
|
+
border-width: 0;
|
|
17941
|
+
border-radius: 0;
|
|
17942
|
+
background: rgb(var(--v-theme-surface));
|
|
17943
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
17898
17944
|
}
|
|
17899
|
-
.v-
|
|
17900
|
-
|
|
17945
|
+
.v-bottom-navigation--border {
|
|
17946
|
+
border-width: thin;
|
|
17947
|
+
box-shadow: none;
|
|
17901
17948
|
}
|
|
17902
|
-
.v-
|
|
17903
|
-
|
|
17949
|
+
.v-bottom-navigation--active {
|
|
17950
|
+
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));
|
|
17904
17951
|
}
|
|
17905
|
-
|
|
17906
|
-
|
|
17952
|
+
|
|
17953
|
+
.v-bottom-navigation__content {
|
|
17954
|
+
display: flex;
|
|
17955
|
+
flex: none;
|
|
17956
|
+
font-size: 0.75rem;
|
|
17957
|
+
justify-content: center;
|
|
17958
|
+
transition: inherit;
|
|
17959
|
+
width: 100%;
|
|
17907
17960
|
}
|
|
17908
|
-
.v-
|
|
17909
|
-
|
|
17961
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn {
|
|
17962
|
+
font-size: inherit;
|
|
17963
|
+
height: 100%;
|
|
17964
|
+
max-width: 168px;
|
|
17965
|
+
min-width: 80px;
|
|
17966
|
+
text-transform: none;
|
|
17967
|
+
transition: inherit;
|
|
17968
|
+
width: auto;
|
|
17969
|
+
border-radius: 0;
|
|
17910
17970
|
}
|
|
17911
|
-
.v-
|
|
17912
|
-
|
|
17913
|
-
|
|
17914
|
-
white-space: nowrap;
|
|
17971
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__content,
|
|
17972
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
|
|
17973
|
+
transition: inherit;
|
|
17915
17974
|
}
|
|
17916
|
-
|
|
17917
|
-
|
|
17918
|
-
overflow: hidden;
|
|
17919
|
-
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));
|
|
17920
|
-
border-radius: 4px;
|
|
17975
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
|
|
17976
|
+
font-size: 1.5rem;
|
|
17921
17977
|
}
|
|
17922
|
-
.v-
|
|
17923
|
-
|
|
17978
|
+
.v-bottom-navigation--grow .v-bottom-navigation__content > .v-btn {
|
|
17979
|
+
flex-grow: 1;
|
|
17924
17980
|
}
|
|
17925
|
-
.v-
|
|
17926
|
-
|
|
17981
|
+
.v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content > span {
|
|
17982
|
+
transition: inherit;
|
|
17983
|
+
opacity: 0;
|
|
17984
|
+
}
|
|
17985
|
+
.v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
|
|
17986
|
+
transform: translateY(0.5rem);
|
|
17987
|
+
}.v-breadcrumbs {
|
|
17988
|
+
display: flex;
|
|
17927
17989
|
align-items: center;
|
|
17928
|
-
height: 1.
|
|
17929
|
-
|
|
17930
|
-
line-height: inherit;
|
|
17931
|
-
max-width: calc(100% - 2px - 2px);
|
|
17990
|
+
line-height: 1.375rem;
|
|
17991
|
+
padding: 16px 12px;
|
|
17932
17992
|
}
|
|
17933
|
-
.v-
|
|
17934
|
-
|
|
17993
|
+
.v-breadcrumbs--rounded {
|
|
17994
|
+
border-radius: 4px;
|
|
17935
17995
|
}
|
|
17936
|
-
.v-
|
|
17937
|
-
|
|
17938
|
-
|
|
17939
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
17940
|
-
top: 0px;
|
|
17996
|
+
.v-breadcrumbs--density-default {
|
|
17997
|
+
padding-top: 16px;
|
|
17998
|
+
padding-bottom: 16px;
|
|
17941
17999
|
}
|
|
17942
|
-
|
|
17943
|
-
|
|
18000
|
+
|
|
18001
|
+
.v-breadcrumbs--density-comfortable {
|
|
18002
|
+
padding-top: 12px;
|
|
18003
|
+
padding-bottom: 12px;
|
|
17944
18004
|
}
|
|
17945
|
-
|
|
17946
|
-
|
|
18005
|
+
|
|
18006
|
+
.v-breadcrumbs--density-compact {
|
|
18007
|
+
padding-top: 8px;
|
|
18008
|
+
padding-bottom: 8px;
|
|
17947
18009
|
}
|
|
17948
|
-
|
|
17949
|
-
|
|
18010
|
+
|
|
18011
|
+
.v-breadcrumbs__prepend {
|
|
18012
|
+
align-items: center;
|
|
18013
|
+
display: inline-flex;
|
|
17950
18014
|
}
|
|
17951
|
-
|
|
17952
|
-
|
|
17953
|
-
|
|
17954
|
-
|
|
17955
|
-
|
|
17956
|
-
|
|
17957
|
-
|
|
18015
|
+
|
|
18016
|
+
.v-breadcrumbs-item {
|
|
18017
|
+
align-items: center;
|
|
18018
|
+
color: inherit;
|
|
18019
|
+
display: inline-flex;
|
|
18020
|
+
padding: 0 4px;
|
|
18021
|
+
text-decoration: none;
|
|
18022
|
+
vertical-align: middle;
|
|
17958
18023
|
}
|
|
17959
|
-
.v-
|
|
17960
|
-
|
|
18024
|
+
.v-breadcrumbs-item--disabled {
|
|
18025
|
+
opacity: var(--v-disabled-opacity);
|
|
18026
|
+
pointer-events: none;
|
|
17961
18027
|
}
|
|
17962
|
-
.v-
|
|
17963
|
-
|
|
18028
|
+
.v-breadcrumbs-item--link {
|
|
18029
|
+
color: inherit;
|
|
18030
|
+
text-decoration: none;
|
|
17964
18031
|
}
|
|
17965
|
-
.v-
|
|
17966
|
-
|
|
18032
|
+
.v-breadcrumbs-item--link:hover {
|
|
18033
|
+
text-decoration: underline;
|
|
17967
18034
|
}
|
|
17968
|
-
.v-
|
|
17969
|
-
|
|
17970
|
-
|
|
18035
|
+
.v-breadcrumbs-item .v-icon {
|
|
18036
|
+
font-size: 1rem;
|
|
18037
|
+
margin-inline: -4px 2px;
|
|
17971
18038
|
}
|
|
17972
|
-
|
|
17973
|
-
|
|
17974
|
-
|
|
18039
|
+
|
|
18040
|
+
.v-breadcrumbs-divider {
|
|
18041
|
+
display: inline-block;
|
|
18042
|
+
padding: 0 8px;
|
|
18043
|
+
vertical-align: middle;
|
|
17975
18044
|
}.v-banner {
|
|
17976
18045
|
display: grid;
|
|
17977
18046
|
flex: 1 1;
|
|
@@ -18129,6 +18198,38 @@ html.overflow-y-hidden {
|
|
|
18129
18198
|
}
|
|
18130
18199
|
.v-banner--two-line .v-banner-text, .v-banner--three-line .v-banner-text {
|
|
18131
18200
|
align-self: flex-start;
|
|
18201
|
+
}.bottom-sheet-transition-enter-from {
|
|
18202
|
+
transform: translateY(100%);
|
|
18203
|
+
}
|
|
18204
|
+
.bottom-sheet-transition-leave-to {
|
|
18205
|
+
transform: translateY(100%);
|
|
18206
|
+
}
|
|
18207
|
+
|
|
18208
|
+
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
|
|
18209
|
+
align-self: flex-end;
|
|
18210
|
+
border-radius: 0;
|
|
18211
|
+
flex: 0 1 auto;
|
|
18212
|
+
left: 0;
|
|
18213
|
+
right: 0;
|
|
18214
|
+
margin-inline: 0;
|
|
18215
|
+
margin-bottom: 0;
|
|
18216
|
+
transition-duration: 0.2s;
|
|
18217
|
+
width: 100%;
|
|
18218
|
+
max-width: 100%;
|
|
18219
|
+
overflow: visible;
|
|
18220
|
+
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));
|
|
18221
|
+
}
|
|
18222
|
+
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
|
|
18223
|
+
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
|
|
18224
|
+
border-radius: 0;
|
|
18225
|
+
}
|
|
18226
|
+
.v-bottom-sheet.v-bottom-sheet--inset {
|
|
18227
|
+
max-width: none;
|
|
18228
|
+
}
|
|
18229
|
+
@media (min-width: 600px) {
|
|
18230
|
+
.v-bottom-sheet.v-bottom-sheet--inset {
|
|
18231
|
+
max-width: 70%;
|
|
18232
|
+
}
|
|
18132
18233
|
}.v-btn {
|
|
18133
18234
|
align-items: center;
|
|
18134
18235
|
border-radius: 4px;
|
|
@@ -18532,108 +18633,62 @@ html.overflow-y-hidden {
|
|
|
18532
18633
|
}
|
|
18533
18634
|
.v-pagination__item--is-active .v-btn__overlay {
|
|
18534
18635
|
opacity: var(--v-border-opacity);
|
|
18535
|
-
}.
|
|
18536
|
-
|
|
18537
|
-
|
|
18538
|
-
.bottom-sheet-transition-leave-to {
|
|
18539
|
-
transform: translateY(100%);
|
|
18540
|
-
}
|
|
18541
|
-
|
|
18542
|
-
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
|
|
18543
|
-
align-self: flex-end;
|
|
18544
|
-
border-radius: 0;
|
|
18545
|
-
flex: 0 1 auto;
|
|
18546
|
-
left: 0;
|
|
18547
|
-
right: 0;
|
|
18548
|
-
margin-inline: 0;
|
|
18549
|
-
margin-bottom: 0;
|
|
18550
|
-
transition-duration: 0.2s;
|
|
18551
|
-
width: 100%;
|
|
18636
|
+
}.v-btn-group {
|
|
18637
|
+
display: inline-flex;
|
|
18638
|
+
flex-wrap: nowrap;
|
|
18552
18639
|
max-width: 100%;
|
|
18553
|
-
|
|
18554
|
-
|
|
18555
|
-
|
|
18556
|
-
|
|
18557
|
-
|
|
18558
|
-
border-
|
|
18559
|
-
|
|
18560
|
-
.v-bottom-sheet.v-bottom-sheet--inset {
|
|
18561
|
-
max-width: none;
|
|
18562
|
-
}
|
|
18563
|
-
@media (min-width: 600px) {
|
|
18564
|
-
.v-bottom-sheet.v-bottom-sheet--inset {
|
|
18565
|
-
max-width: 70%;
|
|
18566
|
-
}
|
|
18567
|
-
}.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
|
|
18568
|
-
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
|
18569
|
-
}
|
|
18570
|
-
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
|
|
18571
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
|
18572
|
-
}
|
|
18573
|
-
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
|
|
18574
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
18575
|
-
}
|
|
18576
|
-
@supports not selector(:focus-visible) {
|
|
18577
|
-
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
|
|
18578
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
18579
|
-
}
|
|
18580
|
-
}.v-breadcrumbs {
|
|
18581
|
-
display: flex;
|
|
18582
|
-
align-items: center;
|
|
18583
|
-
line-height: 1.375rem;
|
|
18584
|
-
padding: 16px 12px;
|
|
18585
|
-
}
|
|
18586
|
-
.v-breadcrumbs--rounded {
|
|
18640
|
+
min-width: 0;
|
|
18641
|
+
overflow: hidden;
|
|
18642
|
+
vertical-align: middle;
|
|
18643
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
18644
|
+
border-style: solid;
|
|
18645
|
+
border-width: 0;
|
|
18646
|
+
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));
|
|
18587
18647
|
border-radius: 4px;
|
|
18648
|
+
background: transparent;
|
|
18649
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
18588
18650
|
}
|
|
18589
|
-
.v-
|
|
18590
|
-
|
|
18591
|
-
|
|
18651
|
+
.v-btn-group--border {
|
|
18652
|
+
border-width: thin;
|
|
18653
|
+
box-shadow: none;
|
|
18592
18654
|
}
|
|
18593
|
-
|
|
18594
|
-
|
|
18595
|
-
padding-top: 12px;
|
|
18596
|
-
padding-bottom: 12px;
|
|
18655
|
+
.v-btn-group--density-default.v-btn-group {
|
|
18656
|
+
height: 48px;
|
|
18597
18657
|
}
|
|
18598
18658
|
|
|
18599
|
-
.v-
|
|
18600
|
-
|
|
18601
|
-
padding-bottom: 8px;
|
|
18659
|
+
.v-btn-group--density-comfortable.v-btn-group {
|
|
18660
|
+
height: 40px;
|
|
18602
18661
|
}
|
|
18603
18662
|
|
|
18604
|
-
.v-
|
|
18605
|
-
|
|
18606
|
-
display: inline-flex;
|
|
18663
|
+
.v-btn-group--density-compact.v-btn-group {
|
|
18664
|
+
height: 36px;
|
|
18607
18665
|
}
|
|
18608
18666
|
|
|
18609
|
-
.v-
|
|
18610
|
-
|
|
18611
|
-
color: inherit;
|
|
18612
|
-
display: inline-flex;
|
|
18613
|
-
padding: 0 4px;
|
|
18614
|
-
text-decoration: none;
|
|
18615
|
-
vertical-align: middle;
|
|
18667
|
+
.v-btn-group .v-btn {
|
|
18668
|
+
border-radius: 0;
|
|
18669
|
+
border-color: inherit;
|
|
18616
18670
|
}
|
|
18617
|
-
.v-
|
|
18618
|
-
|
|
18619
|
-
pointer-events: none;
|
|
18671
|
+
.v-btn-group .v-btn:not(:last-child) {
|
|
18672
|
+
border-inline-end: none;
|
|
18620
18673
|
}
|
|
18621
|
-
.v-
|
|
18622
|
-
|
|
18623
|
-
text-decoration: none;
|
|
18674
|
+
.v-btn-group .v-btn:not(:first-child) {
|
|
18675
|
+
border-inline-start: none;
|
|
18624
18676
|
}
|
|
18625
|
-
.v-
|
|
18626
|
-
|
|
18677
|
+
.v-btn-group .v-btn:first-child {
|
|
18678
|
+
border-start-start-radius: inherit;
|
|
18679
|
+
border-end-start-radius: inherit;
|
|
18627
18680
|
}
|
|
18628
|
-
.v-
|
|
18629
|
-
|
|
18630
|
-
|
|
18681
|
+
.v-btn-group .v-btn:last-child {
|
|
18682
|
+
border-start-end-radius: inherit;
|
|
18683
|
+
border-end-end-radius: inherit;
|
|
18631
18684
|
}
|
|
18632
|
-
|
|
18633
|
-
|
|
18634
|
-
|
|
18635
|
-
|
|
18636
|
-
|
|
18685
|
+
.v-btn-group--divided .v-btn:not(:last-child) {
|
|
18686
|
+
border-inline-end-width: thin;
|
|
18687
|
+
border-inline-end-style: solid;
|
|
18688
|
+
border-inline-end-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
18689
|
+
}
|
|
18690
|
+
.v-btn-group--tile {
|
|
18691
|
+
border-radius: 0;
|
|
18637
18692
|
}.v-card {
|
|
18638
18693
|
display: block;
|
|
18639
18694
|
overflow: hidden;
|
|
@@ -18930,6 +18985,19 @@ html.overflow-y-hidden {
|
|
|
18930
18985
|
pointer-events: none;
|
|
18931
18986
|
opacity: 0;
|
|
18932
18987
|
transition: opacity 0.2s ease-in-out;
|
|
18988
|
+
}.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
|
|
18989
|
+
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
|
18990
|
+
}
|
|
18991
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
|
|
18992
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
|
18993
|
+
}
|
|
18994
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
|
|
18995
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
18996
|
+
}
|
|
18997
|
+
@supports not selector(:focus-visible) {
|
|
18998
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
|
|
18999
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
19000
|
+
}
|
|
18933
19001
|
}.v-carousel {
|
|
18934
19002
|
overflow: hidden;
|
|
18935
19003
|
position: relative;
|
|
@@ -18993,67 +19061,29 @@ html.overflow-y-hidden {
|
|
|
18993
19061
|
flex-direction: column;
|
|
18994
19062
|
height: 100% !important;
|
|
18995
19063
|
width: 50px;
|
|
18996
|
-
}.v-
|
|
18997
|
-
|
|
18998
|
-
|
|
19064
|
+
}.v-checkbox.v-input {
|
|
19065
|
+
flex: 0 1 auto;
|
|
19066
|
+
}
|
|
19067
|
+
.v-checkbox .v-selection-control {
|
|
19068
|
+
min-height: var(--v-input-control-height);
|
|
19069
|
+
}.v-chip-group {
|
|
19070
|
+
display: flex;
|
|
18999
19071
|
max-width: 100%;
|
|
19000
19072
|
min-width: 0;
|
|
19001
|
-
overflow:
|
|
19002
|
-
|
|
19003
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
19004
|
-
border-style: solid;
|
|
19005
|
-
border-width: 0;
|
|
19006
|
-
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));
|
|
19007
|
-
border-radius: 4px;
|
|
19008
|
-
background: transparent;
|
|
19009
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
19010
|
-
}
|
|
19011
|
-
.v-btn-group--border {
|
|
19012
|
-
border-width: thin;
|
|
19013
|
-
box-shadow: none;
|
|
19073
|
+
overflow-x: auto;
|
|
19074
|
+
padding: 4px 0;
|
|
19014
19075
|
}
|
|
19015
|
-
.v-
|
|
19016
|
-
|
|
19076
|
+
.v-chip-group .v-chip {
|
|
19077
|
+
margin: 4px 8px 4px 0;
|
|
19017
19078
|
}
|
|
19018
|
-
|
|
19019
|
-
|
|
19020
|
-
height: 40px;
|
|
19079
|
+
.v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
|
|
19080
|
+
opacity: var(--v-activated-opacity);
|
|
19021
19081
|
}
|
|
19022
19082
|
|
|
19023
|
-
.v-
|
|
19024
|
-
|
|
19025
|
-
|
|
19026
|
-
|
|
19027
|
-
.v-btn-group .v-btn {
|
|
19028
|
-
border-radius: 0;
|
|
19029
|
-
border-color: inherit;
|
|
19030
|
-
}
|
|
19031
|
-
.v-btn-group .v-btn:not(:last-child) {
|
|
19032
|
-
border-inline-end: none;
|
|
19033
|
-
}
|
|
19034
|
-
.v-btn-group .v-btn:not(:first-child) {
|
|
19035
|
-
border-inline-start: none;
|
|
19036
|
-
}
|
|
19037
|
-
.v-btn-group .v-btn:first-child {
|
|
19038
|
-
border-start-start-radius: inherit;
|
|
19039
|
-
border-end-start-radius: inherit;
|
|
19040
|
-
}
|
|
19041
|
-
.v-btn-group .v-btn:last-child {
|
|
19042
|
-
border-start-end-radius: inherit;
|
|
19043
|
-
border-end-end-radius: inherit;
|
|
19044
|
-
}
|
|
19045
|
-
.v-btn-group--divided .v-btn:not(:last-child) {
|
|
19046
|
-
border-inline-end-width: thin;
|
|
19047
|
-
border-inline-end-style: solid;
|
|
19048
|
-
border-inline-end-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
19049
|
-
}
|
|
19050
|
-
.v-btn-group--tile {
|
|
19051
|
-
border-radius: 0;
|
|
19052
|
-
}.v-checkbox.v-input {
|
|
19053
|
-
flex: 0 1 auto;
|
|
19054
|
-
}
|
|
19055
|
-
.v-checkbox .v-selection-control {
|
|
19056
|
-
min-height: var(--v-input-control-height);
|
|
19083
|
+
.v-chip-group--column .v-slide-group__content {
|
|
19084
|
+
white-space: normal;
|
|
19085
|
+
flex-wrap: wrap;
|
|
19086
|
+
max-width: 100%;
|
|
19057
19087
|
}.v-color-picker {
|
|
19058
19088
|
align-self: flex-start;
|
|
19059
19089
|
contain: content;
|
|
@@ -19481,29 +19511,87 @@ html.overflow-y-hidden {
|
|
|
19481
19511
|
|
|
19482
19512
|
.v-chip--label {
|
|
19483
19513
|
border-radius: 4px;
|
|
19484
|
-
}.v-
|
|
19485
|
-
|
|
19486
|
-
|
|
19514
|
+
}.v-combobox .v-field .v-text-field__prefix,
|
|
19515
|
+
.v-combobox .v-field .v-text-field__suffix,
|
|
19516
|
+
.v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
|
|
19517
|
+
cursor: text;
|
|
19518
|
+
}
|
|
19519
|
+
.v-combobox .v-field .v-field__input > input {
|
|
19520
|
+
flex: 1 1;
|
|
19521
|
+
}
|
|
19522
|
+
.v-combobox .v-field input {
|
|
19523
|
+
min-width: 64px;
|
|
19524
|
+
}
|
|
19525
|
+
.v-combobox .v-field:not(.v-field--focused) input {
|
|
19487
19526
|
min-width: 0;
|
|
19488
|
-
overflow-x: auto;
|
|
19489
|
-
padding: 4px 0;
|
|
19490
19527
|
}
|
|
19491
|
-
.v-
|
|
19492
|
-
margin:
|
|
19528
|
+
.v-combobox .v-field--dirty .v-combobox__selection {
|
|
19529
|
+
margin-inline-end: 2px;
|
|
19493
19530
|
}
|
|
19494
|
-
.v-
|
|
19495
|
-
|
|
19531
|
+
.v-combobox .v-combobox__selection-text {
|
|
19532
|
+
overflow: hidden;
|
|
19533
|
+
text-overflow: ellipsis;
|
|
19534
|
+
white-space: nowrap;
|
|
19496
19535
|
}
|
|
19497
19536
|
|
|
19498
|
-
.v-
|
|
19499
|
-
|
|
19500
|
-
|
|
19501
|
-
|
|
19502
|
-
}
|
|
19503
|
-
|
|
19504
|
-
|
|
19505
|
-
|
|
19506
|
-
|
|
19537
|
+
.v-combobox__content {
|
|
19538
|
+
overflow: hidden;
|
|
19539
|
+
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));
|
|
19540
|
+
border-radius: 4px;
|
|
19541
|
+
}
|
|
19542
|
+
.v-combobox__mask {
|
|
19543
|
+
background: rgb(var(--v-theme-surface-light));
|
|
19544
|
+
}
|
|
19545
|
+
.v-combobox__selection {
|
|
19546
|
+
display: inline-flex;
|
|
19547
|
+
align-items: center;
|
|
19548
|
+
height: 1.5rem;
|
|
19549
|
+
letter-spacing: inherit;
|
|
19550
|
+
line-height: inherit;
|
|
19551
|
+
max-width: calc(100% - 2px - 2px);
|
|
19552
|
+
}
|
|
19553
|
+
.v-combobox__selection:first-child {
|
|
19554
|
+
margin-inline-start: 0;
|
|
19555
|
+
}
|
|
19556
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
|
19557
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
|
19558
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
|
19559
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
19560
|
+
top: 0px;
|
|
19561
|
+
}
|
|
19562
|
+
.v-combobox--selecting-index .v-combobox__selection {
|
|
19563
|
+
opacity: var(--v-medium-emphasis-opacity);
|
|
19564
|
+
}
|
|
19565
|
+
.v-combobox--selecting-index .v-combobox__selection--selected {
|
|
19566
|
+
opacity: 1;
|
|
19567
|
+
}
|
|
19568
|
+
.v-combobox--selecting-index .v-field__input > input {
|
|
19569
|
+
caret-color: transparent;
|
|
19570
|
+
}
|
|
19571
|
+
.v-combobox--single.v-text-field .v-field--focused input {
|
|
19572
|
+
flex: 1 1;
|
|
19573
|
+
position: absolute;
|
|
19574
|
+
left: 0;
|
|
19575
|
+
right: 0;
|
|
19576
|
+
width: 100%;
|
|
19577
|
+
padding-inline: inherit;
|
|
19578
|
+
}
|
|
19579
|
+
.v-combobox--single .v-field--active input {
|
|
19580
|
+
transition: none;
|
|
19581
|
+
}
|
|
19582
|
+
.v-combobox--single .v-field--dirty:not(.v-field--focused) input {
|
|
19583
|
+
opacity: 0;
|
|
19584
|
+
}
|
|
19585
|
+
.v-combobox--single .v-field--focused .v-combobox__selection {
|
|
19586
|
+
opacity: 0;
|
|
19587
|
+
}
|
|
19588
|
+
.v-combobox__menu-icon {
|
|
19589
|
+
margin-inline-start: 4px;
|
|
19590
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
19591
|
+
}
|
|
19592
|
+
.v-combobox--active-menu .v-combobox__menu-icon {
|
|
19593
|
+
opacity: var(--v-high-emphasis-opacity);
|
|
19594
|
+
transform: rotate(180deg);
|
|
19507
19595
|
}.v-container {
|
|
19508
19596
|
width: 100%;
|
|
19509
19597
|
padding: 16px;
|
|
@@ -20176,87 +20264,11 @@ html.overflow-y-hidden {
|
|
|
20176
20264
|
.offset-xxl-11 {
|
|
20177
20265
|
margin-inline-start: 91.6666666667%;
|
|
20178
20266
|
}
|
|
20179
|
-
}.v-
|
|
20180
|
-
|
|
20181
|
-
|
|
20182
|
-
|
|
20183
|
-
|
|
20184
|
-
.v-combobox .v-field .v-field__input > input {
|
|
20185
|
-
flex: 1 1;
|
|
20186
|
-
}
|
|
20187
|
-
.v-combobox .v-field input {
|
|
20188
|
-
min-width: 64px;
|
|
20189
|
-
}
|
|
20190
|
-
.v-combobox .v-field:not(.v-field--focused) input {
|
|
20191
|
-
min-width: 0;
|
|
20192
|
-
}
|
|
20193
|
-
.v-combobox .v-field--dirty .v-combobox__selection {
|
|
20194
|
-
margin-inline-end: 2px;
|
|
20195
|
-
}
|
|
20196
|
-
.v-combobox .v-combobox__selection-text {
|
|
20197
|
-
overflow: hidden;
|
|
20198
|
-
text-overflow: ellipsis;
|
|
20199
|
-
white-space: nowrap;
|
|
20200
|
-
}
|
|
20201
|
-
|
|
20202
|
-
.v-combobox__content {
|
|
20203
|
-
overflow: hidden;
|
|
20204
|
-
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));
|
|
20205
|
-
border-radius: 4px;
|
|
20206
|
-
}
|
|
20207
|
-
.v-combobox__mask {
|
|
20208
|
-
background: rgb(var(--v-theme-surface-light));
|
|
20209
|
-
}
|
|
20210
|
-
.v-combobox__selection {
|
|
20211
|
-
display: inline-flex;
|
|
20212
|
-
align-items: center;
|
|
20213
|
-
height: 1.5rem;
|
|
20214
|
-
letter-spacing: inherit;
|
|
20215
|
-
line-height: inherit;
|
|
20216
|
-
max-width: calc(100% - 2px - 2px);
|
|
20217
|
-
}
|
|
20218
|
-
.v-combobox__selection:first-child {
|
|
20219
|
-
margin-inline-start: 0;
|
|
20220
|
-
}
|
|
20221
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
|
20222
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
|
20223
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
|
20224
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
20225
|
-
top: 0px;
|
|
20226
|
-
}
|
|
20227
|
-
.v-combobox--selecting-index .v-combobox__selection {
|
|
20228
|
-
opacity: var(--v-medium-emphasis-opacity);
|
|
20229
|
-
}
|
|
20230
|
-
.v-combobox--selecting-index .v-combobox__selection--selected {
|
|
20231
|
-
opacity: 1;
|
|
20232
|
-
}
|
|
20233
|
-
.v-combobox--selecting-index .v-field__input > input {
|
|
20234
|
-
caret-color: transparent;
|
|
20235
|
-
}
|
|
20236
|
-
.v-combobox--single.v-text-field .v-field--focused input {
|
|
20237
|
-
flex: 1 1;
|
|
20238
|
-
position: absolute;
|
|
20239
|
-
left: 0;
|
|
20240
|
-
right: 0;
|
|
20241
|
-
width: 100%;
|
|
20242
|
-
padding-inline: inherit;
|
|
20243
|
-
}
|
|
20244
|
-
.v-combobox--single .v-field--active input {
|
|
20245
|
-
transition: none;
|
|
20246
|
-
}
|
|
20247
|
-
.v-combobox--single .v-field--dirty:not(.v-field--focused) input {
|
|
20248
|
-
opacity: 0;
|
|
20249
|
-
}
|
|
20250
|
-
.v-combobox--single .v-field--focused .v-combobox__selection {
|
|
20251
|
-
opacity: 0;
|
|
20252
|
-
}
|
|
20253
|
-
.v-combobox__menu-icon {
|
|
20254
|
-
margin-inline-start: 4px;
|
|
20255
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
20256
|
-
}
|
|
20257
|
-
.v-combobox--active-menu .v-combobox__menu-icon {
|
|
20258
|
-
opacity: var(--v-high-emphasis-opacity);
|
|
20259
|
-
transform: rotate(180deg);
|
|
20267
|
+
}.v-counter {
|
|
20268
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
|
20269
|
+
flex: 0 1 auto;
|
|
20270
|
+
font-size: 12px;
|
|
20271
|
+
transition-duration: 150ms;
|
|
20260
20272
|
}.v-data-table {
|
|
20261
20273
|
width: 100%;
|
|
20262
20274
|
}
|
|
@@ -20425,68 +20437,94 @@ html.overflow-y-hidden {
|
|
|
20425
20437
|
|
|
20426
20438
|
.v-data-table-footer__page {
|
|
20427
20439
|
padding: 0 8px;
|
|
20428
|
-
}.v-
|
|
20429
|
-
display: flex;
|
|
20440
|
+
}.v-dialog {
|
|
20430
20441
|
align-items: center;
|
|
20431
|
-
justify-content:
|
|
20432
|
-
|
|
20433
|
-
padding-top: 4px;
|
|
20434
|
-
padding-bottom: 4px;
|
|
20435
|
-
padding-inline-start: 6px;
|
|
20436
|
-
padding-inline-end: 12px;
|
|
20442
|
+
justify-content: center;
|
|
20443
|
+
margin: auto;
|
|
20437
20444
|
}
|
|
20438
|
-
.v-
|
|
20439
|
-
|
|
20440
|
-
|
|
20441
|
-
|
|
20442
|
-
|
|
20445
|
+
.v-dialog > .v-overlay__content {
|
|
20446
|
+
max-height: calc(100% - 48px);
|
|
20447
|
+
width: calc(100% - 48px);
|
|
20448
|
+
max-width: calc(100% - 48px);
|
|
20449
|
+
margin: 24px;
|
|
20443
20450
|
}
|
|
20444
|
-
.v-
|
|
20445
|
-
|
|
20451
|
+
.v-dialog > .v-overlay__content,
|
|
20452
|
+
.v-dialog > .v-overlay__content > form {
|
|
20453
|
+
display: flex;
|
|
20454
|
+
flex-direction: column;
|
|
20455
|
+
min-height: 0;
|
|
20446
20456
|
}
|
|
20447
|
-
.v-
|
|
20448
|
-
|
|
20457
|
+
.v-dialog > .v-overlay__content > .v-card,
|
|
20458
|
+
.v-dialog > .v-overlay__content > .v-sheet,
|
|
20459
|
+
.v-dialog > .v-overlay__content > form > .v-card,
|
|
20460
|
+
.v-dialog > .v-overlay__content > form > .v-sheet {
|
|
20461
|
+
--v-scrollbar-offset: 0px;
|
|
20462
|
+
border-radius: 4px;
|
|
20463
|
+
overflow-y: auto;
|
|
20464
|
+
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));
|
|
20449
20465
|
}
|
|
20450
|
-
.v-
|
|
20451
|
-
|
|
20466
|
+
.v-dialog > .v-overlay__content > .v-card,
|
|
20467
|
+
.v-dialog > .v-overlay__content > form > .v-card {
|
|
20468
|
+
display: flex;
|
|
20469
|
+
flex-direction: column;
|
|
20452
20470
|
}
|
|
20453
|
-
.v-
|
|
20454
|
-
|
|
20471
|
+
.v-dialog > .v-overlay__content > .v-card > .v-card-item,
|
|
20472
|
+
.v-dialog > .v-overlay__content > form > .v-card > .v-card-item {
|
|
20473
|
+
padding: 14px 24px 0;
|
|
20455
20474
|
}
|
|
20456
|
-
.v-
|
|
20457
|
-
|
|
20475
|
+
.v-dialog > .v-overlay__content > .v-card > .v-card-item + .v-card-text,
|
|
20476
|
+
.v-dialog > .v-overlay__content > form > .v-card > .v-card-item + .v-card-text {
|
|
20477
|
+
padding-top: 10px;
|
|
20458
20478
|
}
|
|
20459
|
-
.v-
|
|
20460
|
-
|
|
20479
|
+
.v-dialog > .v-overlay__content > .v-card > .v-card-text,
|
|
20480
|
+
.v-dialog > .v-overlay__content > form > .v-card > .v-card-text {
|
|
20481
|
+
font-size: inherit;
|
|
20482
|
+
letter-spacing: 0.03125em;
|
|
20483
|
+
line-height: inherit;
|
|
20484
|
+
padding: 16px 24px 10px;
|
|
20461
20485
|
}
|
|
20462
20486
|
|
|
20463
|
-
.v-
|
|
20464
|
-
|
|
20465
|
-
}
|
|
20466
|
-
.v-date-picker-controls--variant-classic .v-date-picker-controls__date {
|
|
20467
|
-
margin: auto;
|
|
20468
|
-
text-align: center;
|
|
20487
|
+
.v-dialog--fullscreen {
|
|
20488
|
+
--v-scrollbar-offset: 0px;
|
|
20469
20489
|
}
|
|
20470
|
-
|
|
20471
|
-
|
|
20472
|
-
|
|
20490
|
+
.v-dialog--fullscreen > .v-overlay__content {
|
|
20491
|
+
border-radius: 0;
|
|
20492
|
+
margin: 0;
|
|
20493
|
+
padding: 0;
|
|
20494
|
+
width: 100%;
|
|
20495
|
+
height: 100%;
|
|
20496
|
+
max-width: 100%;
|
|
20497
|
+
max-height: 100%;
|
|
20498
|
+
overflow-y: auto;
|
|
20499
|
+
top: 0;
|
|
20500
|
+
left: 0;
|
|
20473
20501
|
}
|
|
20474
|
-
.v-
|
|
20475
|
-
|
|
20502
|
+
.v-dialog--fullscreen > .v-overlay__content > .v-card,
|
|
20503
|
+
.v-dialog--fullscreen > .v-overlay__content > .v-sheet,
|
|
20504
|
+
.v-dialog--fullscreen > .v-overlay__content > form > .v-card,
|
|
20505
|
+
.v-dialog--fullscreen > .v-overlay__content > form > .v-sheet {
|
|
20506
|
+
min-height: 100%;
|
|
20507
|
+
min-width: 100%;
|
|
20508
|
+
border-radius: 0;
|
|
20476
20509
|
}
|
|
20477
20510
|
|
|
20478
|
-
.v-
|
|
20479
|
-
|
|
20511
|
+
.v-dialog--scrollable > .v-overlay__content,
|
|
20512
|
+
.v-dialog--scrollable > .v-overlay__content > form {
|
|
20513
|
+
display: flex;
|
|
20480
20514
|
}
|
|
20481
|
-
|
|
20482
|
-
.v-
|
|
20483
|
-
display:
|
|
20484
|
-
|
|
20485
|
-
|
|
20486
|
-
|
|
20515
|
+
.v-dialog--scrollable > .v-overlay__content > .v-card,
|
|
20516
|
+
.v-dialog--scrollable > .v-overlay__content > form > .v-card {
|
|
20517
|
+
display: flex;
|
|
20518
|
+
flex: 1 1 100%;
|
|
20519
|
+
flex-direction: column;
|
|
20520
|
+
max-height: 100%;
|
|
20521
|
+
max-width: 100%;
|
|
20487
20522
|
}
|
|
20488
|
-
.v-
|
|
20489
|
-
|
|
20523
|
+
.v-dialog--scrollable > .v-overlay__content > .v-card > .v-card-text,
|
|
20524
|
+
.v-dialog--scrollable > .v-overlay__content > form > .v-card > .v-card-text {
|
|
20525
|
+
-webkit-backface-visibility: hidden;
|
|
20526
|
+
backface-visibility: hidden;
|
|
20527
|
+
overflow-y: auto;
|
|
20490
20528
|
}.v-date-picker-header {
|
|
20491
20529
|
align-items: flex-end;
|
|
20492
20530
|
height: 70px;
|
|
@@ -20547,25 +20585,6 @@ html.overflow-y-hidden {
|
|
|
20547
20585
|
.date-picker-header-reverse-transition-leave-to {
|
|
20548
20586
|
opacity: 0;
|
|
20549
20587
|
transform: translate(0, 100%);
|
|
20550
|
-
}.v-date-picker-months {
|
|
20551
|
-
height: 288px;
|
|
20552
|
-
}
|
|
20553
|
-
|
|
20554
|
-
.v-date-picker-months__content {
|
|
20555
|
-
align-items: center;
|
|
20556
|
-
display: grid;
|
|
20557
|
-
flex: 1 1;
|
|
20558
|
-
height: inherit;
|
|
20559
|
-
justify-content: space-around;
|
|
20560
|
-
grid-template-columns: repeat(2, 1fr);
|
|
20561
|
-
grid-gap: 0px 24px;
|
|
20562
|
-
padding-inline-start: 36px;
|
|
20563
|
-
padding-inline-end: 36px;
|
|
20564
|
-
}
|
|
20565
|
-
.v-date-picker-months__content .v-btn {
|
|
20566
|
-
text-transform: none;
|
|
20567
|
-
padding-inline-start: 8px;
|
|
20568
|
-
padding-inline-end: 8px;
|
|
20569
20588
|
}.v-date-picker-month {
|
|
20570
20589
|
display: flex;
|
|
20571
20590
|
justify-content: center;
|
|
@@ -20621,6 +20640,87 @@ html.overflow-y-hidden {
|
|
|
20621
20640
|
|
|
20622
20641
|
.v-date-picker-month__day--hide-adjacent {
|
|
20623
20642
|
opacity: 0;
|
|
20643
|
+
}.v-date-picker {
|
|
20644
|
+
overflow: hidden;
|
|
20645
|
+
width: 328px;
|
|
20646
|
+
}
|
|
20647
|
+
.v-date-picker--show-week {
|
|
20648
|
+
width: 368px;
|
|
20649
|
+
}.v-date-picker-controls {
|
|
20650
|
+
display: flex;
|
|
20651
|
+
align-items: center;
|
|
20652
|
+
justify-content: space-between;
|
|
20653
|
+
font-size: 0.875rem;
|
|
20654
|
+
padding-top: 4px;
|
|
20655
|
+
padding-bottom: 4px;
|
|
20656
|
+
padding-inline-start: 6px;
|
|
20657
|
+
padding-inline-end: 12px;
|
|
20658
|
+
}
|
|
20659
|
+
.v-date-picker-controls > .v-btn:first-child {
|
|
20660
|
+
text-transform: none;
|
|
20661
|
+
font-weight: 400;
|
|
20662
|
+
line-height: initial;
|
|
20663
|
+
letter-spacing: initial;
|
|
20664
|
+
}
|
|
20665
|
+
.v-date-picker-controls--variant-classic {
|
|
20666
|
+
padding-inline-start: 12px;
|
|
20667
|
+
}
|
|
20668
|
+
.v-date-picker-controls--variant-modern .v-date-picker__title:not(:hover) {
|
|
20669
|
+
opacity: 0.7;
|
|
20670
|
+
}
|
|
20671
|
+
.v-date-picker--month .v-date-picker-controls--variant-modern .v-date-picker__title {
|
|
20672
|
+
cursor: pointer;
|
|
20673
|
+
}
|
|
20674
|
+
.v-date-picker--year .v-date-picker-controls--variant-modern .v-date-picker__title {
|
|
20675
|
+
opacity: 1;
|
|
20676
|
+
}
|
|
20677
|
+
.v-date-picker-controls .v-btn:last-child {
|
|
20678
|
+
margin-inline-start: 4px;
|
|
20679
|
+
}
|
|
20680
|
+
.v-date-picker--year .v-date-picker-controls .v-date-picker-controls__mode-btn {
|
|
20681
|
+
transform: rotate(180deg);
|
|
20682
|
+
}
|
|
20683
|
+
|
|
20684
|
+
.v-date-picker-controls__date {
|
|
20685
|
+
margin-inline-end: 4px;
|
|
20686
|
+
}
|
|
20687
|
+
.v-date-picker-controls--variant-classic .v-date-picker-controls__date {
|
|
20688
|
+
margin: auto;
|
|
20689
|
+
text-align: center;
|
|
20690
|
+
}
|
|
20691
|
+
|
|
20692
|
+
.v-date-picker-controls__month {
|
|
20693
|
+
display: flex;
|
|
20694
|
+
}
|
|
20695
|
+
.v-locale--is-rtl.v-date-picker-controls__month, .v-locale--is-rtl .v-date-picker-controls__month {
|
|
20696
|
+
flex-direction: row-reverse;
|
|
20697
|
+
}
|
|
20698
|
+
|
|
20699
|
+
.v-date-picker-controls--variant-classic .v-date-picker-controls__month {
|
|
20700
|
+
flex: 1 0 auto;
|
|
20701
|
+
}
|
|
20702
|
+
|
|
20703
|
+
.v-date-picker__title {
|
|
20704
|
+
display: inline-block;
|
|
20705
|
+
}.v-date-picker-months {
|
|
20706
|
+
height: 288px;
|
|
20707
|
+
}
|
|
20708
|
+
|
|
20709
|
+
.v-date-picker-months__content {
|
|
20710
|
+
align-items: center;
|
|
20711
|
+
display: grid;
|
|
20712
|
+
flex: 1 1;
|
|
20713
|
+
height: inherit;
|
|
20714
|
+
justify-content: space-around;
|
|
20715
|
+
grid-template-columns: repeat(2, 1fr);
|
|
20716
|
+
grid-gap: 0px 24px;
|
|
20717
|
+
padding-inline-start: 36px;
|
|
20718
|
+
padding-inline-end: 36px;
|
|
20719
|
+
}
|
|
20720
|
+
.v-date-picker-months__content .v-btn {
|
|
20721
|
+
text-transform: none;
|
|
20722
|
+
padding-inline-start: 8px;
|
|
20723
|
+
padding-inline-end: 8px;
|
|
20624
20724
|
}.v-date-picker-years {
|
|
20625
20725
|
height: 288px;
|
|
20626
20726
|
overflow-y: scroll;
|
|
@@ -20636,94 +20736,245 @@ html.overflow-y-hidden {
|
|
|
20636
20736
|
}
|
|
20637
20737
|
.v-date-picker-years__content .v-btn {
|
|
20638
20738
|
padding-inline: 8px;
|
|
20639
|
-
}.v-
|
|
20640
|
-
|
|
20641
|
-
|
|
20642
|
-
margin: auto;
|
|
20739
|
+
}.v-expansion-panel {
|
|
20740
|
+
background-color: rgb(var(--v-theme-surface));
|
|
20741
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
20643
20742
|
}
|
|
20644
|
-
.v-
|
|
20645
|
-
|
|
20646
|
-
width: calc(100% - 48px);
|
|
20647
|
-
max-width: calc(100% - 48px);
|
|
20648
|
-
margin: 24px;
|
|
20743
|
+
.v-expansion-panel:not(:first-child)::after {
|
|
20744
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
20649
20745
|
}
|
|
20650
|
-
.v-
|
|
20651
|
-
|
|
20652
|
-
display: flex;
|
|
20653
|
-
flex-direction: column;
|
|
20654
|
-
min-height: 0;
|
|
20746
|
+
.v-expansion-panel--disabled .v-expansion-panel-title {
|
|
20747
|
+
color: rgba(var(--v-theme-on-surface), 0.26);
|
|
20655
20748
|
}
|
|
20656
|
-
.v-
|
|
20657
|
-
|
|
20658
|
-
.v-dialog > .v-overlay__content > form > .v-card,
|
|
20659
|
-
.v-dialog > .v-overlay__content > form > .v-sheet {
|
|
20660
|
-
--v-scrollbar-offset: 0px;
|
|
20661
|
-
border-radius: 4px;
|
|
20662
|
-
overflow-y: auto;
|
|
20663
|
-
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));
|
|
20749
|
+
.v-expansion-panel--disabled .v-expansion-panel-title .v-expansion-panel-title__overlay {
|
|
20750
|
+
opacity: 0.4615384615;
|
|
20664
20751
|
}
|
|
20665
|
-
|
|
20666
|
-
.v-
|
|
20752
|
+
|
|
20753
|
+
.v-expansion-panels {
|
|
20667
20754
|
display: flex;
|
|
20668
|
-
flex-
|
|
20755
|
+
flex-wrap: wrap;
|
|
20756
|
+
justify-content: center;
|
|
20757
|
+
list-style-type: none;
|
|
20758
|
+
padding: 0;
|
|
20759
|
+
width: 100%;
|
|
20760
|
+
position: relative;
|
|
20761
|
+
z-index: 1;
|
|
20669
20762
|
}
|
|
20670
|
-
.v-
|
|
20671
|
-
|
|
20672
|
-
|
|
20763
|
+
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
|
|
20764
|
+
border-bottom-left-radius: 0 !important;
|
|
20765
|
+
border-bottom-right-radius: 0 !important;
|
|
20673
20766
|
}
|
|
20674
|
-
.v-
|
|
20675
|
-
|
|
20676
|
-
|
|
20767
|
+
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
|
|
20768
|
+
border-top-left-radius: 0 !important;
|
|
20769
|
+
border-top-right-radius: 0 !important;
|
|
20677
20770
|
}
|
|
20678
|
-
.v-
|
|
20679
|
-
|
|
20680
|
-
|
|
20681
|
-
|
|
20682
|
-
|
|
20683
|
-
|
|
20771
|
+
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :first-child:not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
|
|
20772
|
+
border-bottom-left-radius: 0 !important;
|
|
20773
|
+
border-bottom-right-radius: 0 !important;
|
|
20774
|
+
}
|
|
20775
|
+
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :last-child:not(:first-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
|
|
20776
|
+
border-top-left-radius: 0 !important;
|
|
20777
|
+
border-top-right-radius: 0 !important;
|
|
20778
|
+
}
|
|
20779
|
+
.v-expansion-panels--variant-accordion > :first-child {
|
|
20780
|
+
border-bottom-left-radius: 0 !important;
|
|
20781
|
+
border-bottom-right-radius: 0 !important;
|
|
20782
|
+
}
|
|
20783
|
+
.v-expansion-panels--variant-accordion > :last-child {
|
|
20784
|
+
border-top-left-radius: 0 !important;
|
|
20785
|
+
border-top-right-radius: 0 !important;
|
|
20786
|
+
}
|
|
20787
|
+
.v-expansion-panels--variant-accordion > :last-child .v-expansion-panel-title--active {
|
|
20788
|
+
border-bottom-left-radius: initial;
|
|
20789
|
+
border-bottom-right-radius: initial;
|
|
20790
|
+
}
|
|
20791
|
+
.v-expansion-panels--variant-accordion > :not(:first-child):not(:last-child) {
|
|
20792
|
+
border-radius: 0 !important;
|
|
20793
|
+
}
|
|
20794
|
+
.v-expansion-panels--variant-accordion .v-expansion-panel-title__overlay {
|
|
20795
|
+
transition: 0.3s border-radius cubic-bezier(0.4, 0, 0.2, 1);
|
|
20684
20796
|
}
|
|
20685
20797
|
|
|
20686
|
-
.v-
|
|
20687
|
-
|
|
20798
|
+
.v-expansion-panel {
|
|
20799
|
+
flex: 1 0 100%;
|
|
20800
|
+
max-width: 100%;
|
|
20801
|
+
position: relative;
|
|
20802
|
+
transition: 0.3s all cubic-bezier(0.4, 0, 0.2, 1);
|
|
20803
|
+
transition-property: margin-top, border-radius, border, max-width;
|
|
20804
|
+
border-radius: 4px;
|
|
20688
20805
|
}
|
|
20689
|
-
.v-
|
|
20690
|
-
border-
|
|
20691
|
-
|
|
20692
|
-
|
|
20806
|
+
.v-expansion-panel:not(:first-child)::after {
|
|
20807
|
+
border-top-style: solid;
|
|
20808
|
+
border-top-width: thin;
|
|
20809
|
+
content: "";
|
|
20810
|
+
left: 0;
|
|
20811
|
+
position: absolute;
|
|
20812
|
+
right: 0;
|
|
20813
|
+
top: 0;
|
|
20814
|
+
transition: 0.3s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
|
20815
|
+
}
|
|
20816
|
+
.v-expansion-panel--disabled .v-expansion-panel-title {
|
|
20817
|
+
pointer-events: none;
|
|
20818
|
+
}
|
|
20819
|
+
.v-expansion-panel--active:not(:first-child),
|
|
20820
|
+
.v-expansion-panel--active + .v-expansion-panel {
|
|
20821
|
+
margin-top: 16px;
|
|
20822
|
+
}
|
|
20823
|
+
.v-expansion-panel--active:not(:first-child)::after,
|
|
20824
|
+
.v-expansion-panel--active + .v-expansion-panel::after {
|
|
20825
|
+
opacity: 0;
|
|
20826
|
+
}
|
|
20827
|
+
.v-expansion-panel--active > .v-expansion-panel-title {
|
|
20828
|
+
border-bottom-left-radius: 0;
|
|
20829
|
+
border-bottom-right-radius: 0;
|
|
20830
|
+
}
|
|
20831
|
+
.v-expansion-panel--active > .v-expansion-panel-title:not(.v-expansion-panel-title--static) {
|
|
20832
|
+
min-height: 64px;
|
|
20833
|
+
}
|
|
20834
|
+
|
|
20835
|
+
.v-expansion-panel__shadow {
|
|
20836
|
+
position: absolute;
|
|
20837
|
+
top: 0;
|
|
20838
|
+
left: 0;
|
|
20693
20839
|
width: 100%;
|
|
20694
20840
|
height: 100%;
|
|
20695
|
-
|
|
20696
|
-
|
|
20697
|
-
|
|
20841
|
+
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));
|
|
20842
|
+
border-radius: inherit;
|
|
20843
|
+
z-index: -1;
|
|
20844
|
+
}
|
|
20845
|
+
|
|
20846
|
+
.v-expansion-panel-title {
|
|
20847
|
+
align-items: center;
|
|
20848
|
+
text-align: start;
|
|
20849
|
+
border-radius: inherit;
|
|
20850
|
+
display: flex;
|
|
20851
|
+
font-size: 0.9375rem;
|
|
20852
|
+
line-height: 1;
|
|
20853
|
+
min-height: 48px;
|
|
20854
|
+
outline: none;
|
|
20855
|
+
padding: 16px 24px;
|
|
20856
|
+
position: relative;
|
|
20857
|
+
transition: 0.3s min-height cubic-bezier(0.4, 0, 0.2, 1);
|
|
20858
|
+
width: 100%;
|
|
20859
|
+
justify-content: space-between;
|
|
20860
|
+
}
|
|
20861
|
+
.v-expansion-panel-title:hover > .v-expansion-panel-title__overlay {
|
|
20862
|
+
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
|
20863
|
+
}
|
|
20864
|
+
.v-expansion-panel-title:focus-visible > .v-expansion-panel-title__overlay {
|
|
20865
|
+
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
|
20866
|
+
}
|
|
20867
|
+
@supports not selector(:focus-visible) {
|
|
20868
|
+
.v-expansion-panel-title:focus > .v-expansion-panel-title__overlay {
|
|
20869
|
+
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
|
20870
|
+
}
|
|
20871
|
+
}
|
|
20872
|
+
.v-expansion-panel-title--focusable.v-expansion-panel-title--active .v-expansion-panel-title__overlay {
|
|
20873
|
+
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
|
20874
|
+
}
|
|
20875
|
+
.v-expansion-panel-title--focusable.v-expansion-panel-title--active:hover .v-expansion-panel-title__overlay {
|
|
20876
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
|
20877
|
+
}
|
|
20878
|
+
.v-expansion-panel-title--focusable.v-expansion-panel-title--active:focus-visible .v-expansion-panel-title__overlay {
|
|
20879
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
20880
|
+
}
|
|
20881
|
+
@supports not selector(:focus-visible) {
|
|
20882
|
+
.v-expansion-panel-title--focusable.v-expansion-panel-title--active:focus .v-expansion-panel-title__overlay {
|
|
20883
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
20884
|
+
}
|
|
20885
|
+
}
|
|
20886
|
+
|
|
20887
|
+
.v-expansion-panel-title__overlay {
|
|
20888
|
+
position: absolute;
|
|
20698
20889
|
top: 0;
|
|
20699
20890
|
left: 0;
|
|
20891
|
+
width: 100%;
|
|
20892
|
+
height: 100%;
|
|
20893
|
+
background-color: currentColor;
|
|
20894
|
+
border-radius: inherit;
|
|
20895
|
+
opacity: 0;
|
|
20700
20896
|
}
|
|
20701
|
-
|
|
20702
|
-
.v-
|
|
20703
|
-
|
|
20704
|
-
|
|
20705
|
-
|
|
20706
|
-
|
|
20707
|
-
|
|
20897
|
+
|
|
20898
|
+
.v-expansion-panel-title__icon {
|
|
20899
|
+
display: inline-flex;
|
|
20900
|
+
margin-bottom: -4px;
|
|
20901
|
+
margin-top: -4px;
|
|
20902
|
+
-webkit-user-select: none;
|
|
20903
|
+
user-select: none;
|
|
20904
|
+
margin-inline-start: auto;
|
|
20708
20905
|
}
|
|
20709
20906
|
|
|
20710
|
-
.v-
|
|
20711
|
-
.v-dialog--scrollable > .v-overlay__content > form {
|
|
20907
|
+
.v-expansion-panel-text {
|
|
20712
20908
|
display: flex;
|
|
20713
20909
|
}
|
|
20714
|
-
.v-
|
|
20715
|
-
|
|
20716
|
-
|
|
20910
|
+
.v-expansion-panel-text__wrapper {
|
|
20911
|
+
padding: 8px 24px 16px;
|
|
20912
|
+
flex: 1 1 auto;
|
|
20913
|
+
max-width: 100%;
|
|
20914
|
+
}
|
|
20915
|
+
|
|
20916
|
+
.v-expansion-panels--variant-accordion > .v-expansion-panel {
|
|
20917
|
+
margin-top: 0;
|
|
20918
|
+
}
|
|
20919
|
+
.v-expansion-panels--variant-accordion > .v-expansion-panel::after {
|
|
20920
|
+
opacity: 1;
|
|
20921
|
+
}
|
|
20922
|
+
|
|
20923
|
+
.v-expansion-panels--variant-popout > .v-expansion-panel {
|
|
20924
|
+
max-width: calc(100% - 32px);
|
|
20925
|
+
}
|
|
20926
|
+
.v-expansion-panels--variant-popout > .v-expansion-panel--active {
|
|
20927
|
+
max-width: calc(100% + 16px);
|
|
20928
|
+
}
|
|
20929
|
+
|
|
20930
|
+
.v-expansion-panels--variant-inset > .v-expansion-panel {
|
|
20931
|
+
max-width: 100%;
|
|
20932
|
+
}
|
|
20933
|
+
.v-expansion-panels--variant-inset > .v-expansion-panel--active {
|
|
20934
|
+
max-width: calc(100% - 32px);
|
|
20935
|
+
}
|
|
20936
|
+
|
|
20937
|
+
.v-expansion-panels--flat > .v-expansion-panel::after {
|
|
20938
|
+
border-top: none;
|
|
20939
|
+
}
|
|
20940
|
+
.v-expansion-panels--flat > .v-expansion-panel .v-expansion-panel__shadow {
|
|
20941
|
+
display: none;
|
|
20942
|
+
}
|
|
20943
|
+
|
|
20944
|
+
.v-expansion-panels--tile {
|
|
20945
|
+
border-radius: 0;
|
|
20946
|
+
}
|
|
20947
|
+
.v-expansion-panels--tile > .v-expansion-panel {
|
|
20948
|
+
border-radius: 0;
|
|
20949
|
+
}.v-divider {
|
|
20950
|
+
display: block;
|
|
20717
20951
|
flex: 1 1 100%;
|
|
20718
|
-
|
|
20952
|
+
height: 0px;
|
|
20953
|
+
max-height: 0px;
|
|
20954
|
+
opacity: var(--v-border-opacity);
|
|
20955
|
+
transition: inherit;
|
|
20956
|
+
border-style: solid;
|
|
20957
|
+
border-width: thin 0 0 0;
|
|
20958
|
+
}
|
|
20959
|
+
.v-divider--vertical {
|
|
20960
|
+
align-self: stretch;
|
|
20961
|
+
border-width: 0 thin 0 0;
|
|
20962
|
+
display: inline-flex;
|
|
20963
|
+
height: inherit;
|
|
20964
|
+
margin-left: -1px;
|
|
20719
20965
|
max-height: 100%;
|
|
20720
|
-
max-width:
|
|
20966
|
+
max-width: 0px;
|
|
20967
|
+
vertical-align: text-bottom;
|
|
20968
|
+
width: 0px;
|
|
20721
20969
|
}
|
|
20722
|
-
.v-
|
|
20723
|
-
|
|
20724
|
-
-
|
|
20725
|
-
|
|
20726
|
-
|
|
20970
|
+
.v-divider--inset:not(.v-divider--vertical) {
|
|
20971
|
+
max-width: calc(100% - 72px);
|
|
20972
|
+
margin-inline-start: 72px;
|
|
20973
|
+
}
|
|
20974
|
+
.v-divider--inset.v-divider--vertical {
|
|
20975
|
+
margin-bottom: 8px;
|
|
20976
|
+
margin-top: 8px;
|
|
20977
|
+
max-height: calc(100% - 16px);
|
|
20727
20978
|
}/* region INPUT */
|
|
20728
20979
|
.v-field {
|
|
20729
20980
|
display: grid;
|
|
@@ -21259,282 +21510,40 @@ textarea.v-field__input::placeholder {
|
|
|
21259
21510
|
transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
21260
21511
|
}
|
|
21261
21512
|
.v-field--variant-solo-inverted.v-field--has-background .v-field__overlay {
|
|
21262
|
-
opacity: 0;
|
|
21263
|
-
}
|
|
21264
|
-
@media (hover: hover) {
|
|
21265
|
-
.v-field--variant-solo-inverted:hover .v-field__overlay {
|
|
21266
|
-
opacity: calc((0.04 + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
|
21267
|
-
}
|
|
21268
|
-
}
|
|
21269
|
-
.v-field--variant-solo-inverted.v-field--focused .v-field__overlay {
|
|
21270
|
-
background-color: rgb(var(--v-theme-surface-variant));
|
|
21271
|
-
opacity: 1;
|
|
21272
|
-
}
|
|
21273
|
-
|
|
21274
|
-
/* endregion */
|
|
21275
|
-
/* region MODIFIERS */
|
|
21276
|
-
.v-field--reverse .v-field__field,
|
|
21277
|
-
.v-field--reverse .v-field__input,
|
|
21278
|
-
.v-field--reverse .v-field__outline {
|
|
21279
|
-
flex-direction: row-reverse;
|
|
21280
|
-
}
|
|
21281
|
-
.v-field--reverse .v-field__input, .v-field--reverse input {
|
|
21282
|
-
text-align: end;
|
|
21283
|
-
}
|
|
21284
|
-
|
|
21285
|
-
.v-input--disabled .v-field--variant-filled .v-field__outline::before,
|
|
21286
|
-
.v-input--disabled .v-field--variant-underlined .v-field__outline::before {
|
|
21287
|
-
border-image: repeating-linear-gradient(to right, rgba(var(--v-theme-on-surface), var(--v-disabled-opacity)) 0px, rgba(var(--v-theme-on-surface), var(--v-disabled-opacity)) 2px, transparent 2px, transparent 4px) 1 repeat;
|
|
21288
|
-
}
|
|
21289
|
-
|
|
21290
|
-
.v-field--loading .v-field__outline::after,
|
|
21291
|
-
.v-field--loading .v-field__outline::before {
|
|
21292
|
-
opacity: 0;
|
|
21293
|
-
}
|
|
21294
|
-
|
|
21295
|
-
/* endregion */.v-divider {
|
|
21296
|
-
display: block;
|
|
21297
|
-
flex: 1 1 100%;
|
|
21298
|
-
height: 0px;
|
|
21299
|
-
max-height: 0px;
|
|
21300
|
-
opacity: var(--v-border-opacity);
|
|
21301
|
-
transition: inherit;
|
|
21302
|
-
border-style: solid;
|
|
21303
|
-
border-width: thin 0 0 0;
|
|
21304
|
-
}
|
|
21305
|
-
.v-divider--vertical {
|
|
21306
|
-
align-self: stretch;
|
|
21307
|
-
border-width: 0 thin 0 0;
|
|
21308
|
-
display: inline-flex;
|
|
21309
|
-
height: inherit;
|
|
21310
|
-
margin-left: -1px;
|
|
21311
|
-
max-height: 100%;
|
|
21312
|
-
max-width: 0px;
|
|
21313
|
-
vertical-align: text-bottom;
|
|
21314
|
-
width: 0px;
|
|
21315
|
-
}
|
|
21316
|
-
.v-divider--inset:not(.v-divider--vertical) {
|
|
21317
|
-
max-width: calc(100% - 72px);
|
|
21318
|
-
margin-inline-start: 72px;
|
|
21319
|
-
}
|
|
21320
|
-
.v-divider--inset.v-divider--vertical {
|
|
21321
|
-
margin-bottom: 8px;
|
|
21322
|
-
margin-top: 8px;
|
|
21323
|
-
max-height: calc(100% - 16px);
|
|
21324
|
-
}.v-expansion-panel {
|
|
21325
|
-
background-color: rgb(var(--v-theme-surface));
|
|
21326
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
21327
|
-
}
|
|
21328
|
-
.v-expansion-panel:not(:first-child)::after {
|
|
21329
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
21330
|
-
}
|
|
21331
|
-
.v-expansion-panel--disabled .v-expansion-panel-title {
|
|
21332
|
-
color: rgba(var(--v-theme-on-surface), 0.26);
|
|
21333
|
-
}
|
|
21334
|
-
.v-expansion-panel--disabled .v-expansion-panel-title .v-expansion-panel-title__overlay {
|
|
21335
|
-
opacity: 0.4615384615;
|
|
21336
|
-
}
|
|
21337
|
-
|
|
21338
|
-
.v-expansion-panels {
|
|
21339
|
-
display: flex;
|
|
21340
|
-
flex-wrap: wrap;
|
|
21341
|
-
justify-content: center;
|
|
21342
|
-
list-style-type: none;
|
|
21343
|
-
padding: 0;
|
|
21344
|
-
width: 100%;
|
|
21345
|
-
position: relative;
|
|
21346
|
-
z-index: 1;
|
|
21347
|
-
}
|
|
21348
|
-
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
|
|
21349
|
-
border-bottom-left-radius: 0 !important;
|
|
21350
|
-
border-bottom-right-radius: 0 !important;
|
|
21351
|
-
}
|
|
21352
|
-
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
|
|
21353
|
-
border-top-left-radius: 0 !important;
|
|
21354
|
-
border-top-right-radius: 0 !important;
|
|
21355
|
-
}
|
|
21356
|
-
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :first-child:not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
|
|
21357
|
-
border-bottom-left-radius: 0 !important;
|
|
21358
|
-
border-bottom-right-radius: 0 !important;
|
|
21359
|
-
}
|
|
21360
|
-
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :last-child:not(:first-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
|
|
21361
|
-
border-top-left-radius: 0 !important;
|
|
21362
|
-
border-top-right-radius: 0 !important;
|
|
21363
|
-
}
|
|
21364
|
-
.v-expansion-panels--variant-accordion > :first-child {
|
|
21365
|
-
border-bottom-left-radius: 0 !important;
|
|
21366
|
-
border-bottom-right-radius: 0 !important;
|
|
21367
|
-
}
|
|
21368
|
-
.v-expansion-panels--variant-accordion > :last-child {
|
|
21369
|
-
border-top-left-radius: 0 !important;
|
|
21370
|
-
border-top-right-radius: 0 !important;
|
|
21371
|
-
}
|
|
21372
|
-
.v-expansion-panels--variant-accordion > :last-child .v-expansion-panel-title--active {
|
|
21373
|
-
border-bottom-left-radius: initial;
|
|
21374
|
-
border-bottom-right-radius: initial;
|
|
21375
|
-
}
|
|
21376
|
-
.v-expansion-panels--variant-accordion > :not(:first-child):not(:last-child) {
|
|
21377
|
-
border-radius: 0 !important;
|
|
21378
|
-
}
|
|
21379
|
-
.v-expansion-panels--variant-accordion .v-expansion-panel-title__overlay {
|
|
21380
|
-
transition: 0.3s border-radius cubic-bezier(0.4, 0, 0.2, 1);
|
|
21381
|
-
}
|
|
21382
|
-
|
|
21383
|
-
.v-expansion-panel {
|
|
21384
|
-
flex: 1 0 100%;
|
|
21385
|
-
max-width: 100%;
|
|
21386
|
-
position: relative;
|
|
21387
|
-
transition: 0.3s all cubic-bezier(0.4, 0, 0.2, 1);
|
|
21388
|
-
transition-property: margin-top, border-radius, border, max-width;
|
|
21389
|
-
border-radius: 4px;
|
|
21390
|
-
}
|
|
21391
|
-
.v-expansion-panel:not(:first-child)::after {
|
|
21392
|
-
border-top-style: solid;
|
|
21393
|
-
border-top-width: thin;
|
|
21394
|
-
content: "";
|
|
21395
|
-
left: 0;
|
|
21396
|
-
position: absolute;
|
|
21397
|
-
right: 0;
|
|
21398
|
-
top: 0;
|
|
21399
|
-
transition: 0.3s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
|
21400
|
-
}
|
|
21401
|
-
.v-expansion-panel--disabled .v-expansion-panel-title {
|
|
21402
|
-
pointer-events: none;
|
|
21403
|
-
}
|
|
21404
|
-
.v-expansion-panel--active:not(:first-child),
|
|
21405
|
-
.v-expansion-panel--active + .v-expansion-panel {
|
|
21406
|
-
margin-top: 16px;
|
|
21407
|
-
}
|
|
21408
|
-
.v-expansion-panel--active:not(:first-child)::after,
|
|
21409
|
-
.v-expansion-panel--active + .v-expansion-panel::after {
|
|
21410
|
-
opacity: 0;
|
|
21411
|
-
}
|
|
21412
|
-
.v-expansion-panel--active > .v-expansion-panel-title {
|
|
21413
|
-
border-bottom-left-radius: 0;
|
|
21414
|
-
border-bottom-right-radius: 0;
|
|
21415
|
-
}
|
|
21416
|
-
.v-expansion-panel--active > .v-expansion-panel-title:not(.v-expansion-panel-title--static) {
|
|
21417
|
-
min-height: 64px;
|
|
21418
|
-
}
|
|
21419
|
-
|
|
21420
|
-
.v-expansion-panel__shadow {
|
|
21421
|
-
position: absolute;
|
|
21422
|
-
top: 0;
|
|
21423
|
-
left: 0;
|
|
21424
|
-
width: 100%;
|
|
21425
|
-
height: 100%;
|
|
21426
|
-
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));
|
|
21427
|
-
border-radius: inherit;
|
|
21428
|
-
z-index: -1;
|
|
21429
|
-
}
|
|
21430
|
-
|
|
21431
|
-
.v-expansion-panel-title {
|
|
21432
|
-
align-items: center;
|
|
21433
|
-
text-align: start;
|
|
21434
|
-
border-radius: inherit;
|
|
21435
|
-
display: flex;
|
|
21436
|
-
font-size: 0.9375rem;
|
|
21437
|
-
line-height: 1;
|
|
21438
|
-
min-height: 48px;
|
|
21439
|
-
outline: none;
|
|
21440
|
-
padding: 16px 24px;
|
|
21441
|
-
position: relative;
|
|
21442
|
-
transition: 0.3s min-height cubic-bezier(0.4, 0, 0.2, 1);
|
|
21443
|
-
width: 100%;
|
|
21444
|
-
justify-content: space-between;
|
|
21445
|
-
}
|
|
21446
|
-
.v-expansion-panel-title:hover > .v-expansion-panel-title__overlay {
|
|
21447
|
-
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
|
21448
|
-
}
|
|
21449
|
-
.v-expansion-panel-title:focus-visible > .v-expansion-panel-title__overlay {
|
|
21450
|
-
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
|
21451
|
-
}
|
|
21452
|
-
@supports not selector(:focus-visible) {
|
|
21453
|
-
.v-expansion-panel-title:focus > .v-expansion-panel-title__overlay {
|
|
21454
|
-
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
|
21455
|
-
}
|
|
21456
|
-
}
|
|
21457
|
-
.v-expansion-panel-title--active > .v-expansion-panel-title__overlay, .v-expansion-panel-title[aria-haspopup=menu][aria-expanded=true] > .v-expansion-panel-title__overlay {
|
|
21458
|
-
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
|
21459
|
-
}
|
|
21460
|
-
.v-expansion-panel-title--active:hover > .v-expansion-panel-title__overlay, .v-expansion-panel-title[aria-haspopup=menu][aria-expanded=true]:hover > .v-expansion-panel-title__overlay {
|
|
21461
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
|
21462
|
-
}
|
|
21463
|
-
.v-expansion-panel-title--active:focus-visible > .v-expansion-panel-title__overlay, .v-expansion-panel-title[aria-haspopup=menu][aria-expanded=true]:focus-visible > .v-expansion-panel-title__overlay {
|
|
21464
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
21465
|
-
}
|
|
21466
|
-
@supports not selector(:focus-visible) {
|
|
21467
|
-
.v-expansion-panel-title--active:focus > .v-expansion-panel-title__overlay, .v-expansion-panel-title[aria-haspopup=menu][aria-expanded=true]:focus > .v-expansion-panel-title__overlay {
|
|
21468
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
21469
|
-
}
|
|
21470
|
-
}
|
|
21471
|
-
.v-expansion-panel-title--active::before {
|
|
21472
|
-
opacity: 0.12;
|
|
21473
|
-
}
|
|
21474
|
-
|
|
21475
|
-
.v-expansion-panel-title__overlay {
|
|
21476
|
-
position: absolute;
|
|
21477
|
-
top: 0;
|
|
21478
|
-
left: 0;
|
|
21479
|
-
width: 100%;
|
|
21480
|
-
height: 100%;
|
|
21481
|
-
background-color: currentColor;
|
|
21482
|
-
border-radius: inherit;
|
|
21483
|
-
opacity: 0;
|
|
21484
|
-
}
|
|
21485
|
-
|
|
21486
|
-
.v-expansion-panel-title__icon {
|
|
21487
|
-
display: inline-flex;
|
|
21488
|
-
margin-bottom: -4px;
|
|
21489
|
-
margin-top: -4px;
|
|
21490
|
-
-webkit-user-select: none;
|
|
21491
|
-
user-select: none;
|
|
21492
|
-
margin-inline-start: auto;
|
|
21493
|
-
}
|
|
21494
|
-
|
|
21495
|
-
.v-expansion-panel-text {
|
|
21496
|
-
display: flex;
|
|
21497
|
-
}
|
|
21498
|
-
.v-expansion-panel-text__wrapper {
|
|
21499
|
-
padding: 8px 24px 16px;
|
|
21500
|
-
flex: 1 1 auto;
|
|
21501
|
-
max-width: 100%;
|
|
21513
|
+
opacity: 0;
|
|
21502
21514
|
}
|
|
21503
|
-
|
|
21504
|
-
.v-
|
|
21505
|
-
|
|
21515
|
+
@media (hover: hover) {
|
|
21516
|
+
.v-field--variant-solo-inverted:hover .v-field__overlay {
|
|
21517
|
+
opacity: calc((0.04 + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
|
21518
|
+
}
|
|
21506
21519
|
}
|
|
21507
|
-
.v-
|
|
21520
|
+
.v-field--variant-solo-inverted.v-field--focused .v-field__overlay {
|
|
21521
|
+
background-color: rgb(var(--v-theme-surface-variant));
|
|
21508
21522
|
opacity: 1;
|
|
21509
21523
|
}
|
|
21510
21524
|
|
|
21511
|
-
|
|
21512
|
-
|
|
21525
|
+
/* endregion */
|
|
21526
|
+
/* region MODIFIERS */
|
|
21527
|
+
.v-field--reverse .v-field__field,
|
|
21528
|
+
.v-field--reverse .v-field__input,
|
|
21529
|
+
.v-field--reverse .v-field__outline {
|
|
21530
|
+
flex-direction: row-reverse;
|
|
21513
21531
|
}
|
|
21514
|
-
.v-
|
|
21515
|
-
|
|
21532
|
+
.v-field--reverse .v-field__input, .v-field--reverse input {
|
|
21533
|
+
text-align: end;
|
|
21516
21534
|
}
|
|
21517
21535
|
|
|
21518
|
-
.v-
|
|
21519
|
-
|
|
21520
|
-
|
|
21521
|
-
.v-expansion-panels--variant-inset > .v-expansion-panel--active {
|
|
21522
|
-
max-width: calc(100% - 32px);
|
|
21536
|
+
.v-input--disabled .v-field--variant-filled .v-field__outline::before,
|
|
21537
|
+
.v-input--disabled .v-field--variant-underlined .v-field__outline::before {
|
|
21538
|
+
border-image: repeating-linear-gradient(to right, rgba(var(--v-theme-on-surface), var(--v-disabled-opacity)) 0px, rgba(var(--v-theme-on-surface), var(--v-disabled-opacity)) 2px, transparent 2px, transparent 4px) 1 repeat;
|
|
21523
21539
|
}
|
|
21524
21540
|
|
|
21525
|
-
.v-
|
|
21526
|
-
|
|
21527
|
-
|
|
21528
|
-
.v-expansion-panels--flat > .v-expansion-panel .v-expansion-panel__shadow {
|
|
21529
|
-
display: none;
|
|
21541
|
+
.v-field--loading .v-field__outline::after,
|
|
21542
|
+
.v-field--loading .v-field__outline::before {
|
|
21543
|
+
opacity: 0;
|
|
21530
21544
|
}
|
|
21531
21545
|
|
|
21532
|
-
.v-
|
|
21533
|
-
border-radius: 0;
|
|
21534
|
-
}
|
|
21535
|
-
.v-expansion-panels--tile > .v-expansion-panel {
|
|
21536
|
-
border-radius: 0;
|
|
21537
|
-
}.v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
|
21546
|
+
/* endregion */.v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
|
21538
21547
|
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
|
21539
21548
|
.v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
|
21540
21549
|
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
@@ -21582,6 +21591,42 @@ textarea.v-field__input::placeholder {
|
|
|
21582
21591
|
}
|
|
21583
21592
|
.v-footer--rounded {
|
|
21584
21593
|
border-radius: 4px;
|
|
21594
|
+
}.v-img {
|
|
21595
|
+
--v-theme-overlay-multiplier: 3;
|
|
21596
|
+
z-index: 0;
|
|
21597
|
+
}
|
|
21598
|
+
.v-img--booting .v-responsive__sizer {
|
|
21599
|
+
transition: none;
|
|
21600
|
+
}
|
|
21601
|
+
.v-img--rounded {
|
|
21602
|
+
border-radius: 4px;
|
|
21603
|
+
}
|
|
21604
|
+
|
|
21605
|
+
.v-img__img,
|
|
21606
|
+
.v-img__picture,
|
|
21607
|
+
.v-img__gradient,
|
|
21608
|
+
.v-img__placeholder,
|
|
21609
|
+
.v-img__error {
|
|
21610
|
+
z-index: -1;
|
|
21611
|
+
position: absolute;
|
|
21612
|
+
top: 0;
|
|
21613
|
+
left: 0;
|
|
21614
|
+
width: 100%;
|
|
21615
|
+
height: 100%;
|
|
21616
|
+
}
|
|
21617
|
+
|
|
21618
|
+
.v-img__img--preload {
|
|
21619
|
+
filter: blur(4px);
|
|
21620
|
+
}
|
|
21621
|
+
.v-img__img--contain {
|
|
21622
|
+
object-fit: contain;
|
|
21623
|
+
}
|
|
21624
|
+
.v-img__img--cover {
|
|
21625
|
+
object-fit: cover;
|
|
21626
|
+
}
|
|
21627
|
+
|
|
21628
|
+
.v-img__gradient {
|
|
21629
|
+
background-repeat: no-repeat;
|
|
21585
21630
|
}.v-icon {
|
|
21586
21631
|
--v-icon-size-multiplier: 1;
|
|
21587
21632
|
align-items: center;
|
|
@@ -21631,42 +21676,6 @@ textarea.v-field__input::placeholder {
|
|
|
21631
21676
|
|
|
21632
21677
|
.v-icon--end {
|
|
21633
21678
|
margin-inline-start: 8px;
|
|
21634
|
-
}.v-img {
|
|
21635
|
-
--v-theme-overlay-multiplier: 3;
|
|
21636
|
-
z-index: 0;
|
|
21637
|
-
}
|
|
21638
|
-
.v-img--booting .v-responsive__sizer {
|
|
21639
|
-
transition: none;
|
|
21640
|
-
}
|
|
21641
|
-
.v-img--rounded {
|
|
21642
|
-
border-radius: 4px;
|
|
21643
|
-
}
|
|
21644
|
-
|
|
21645
|
-
.v-img__img,
|
|
21646
|
-
.v-img__picture,
|
|
21647
|
-
.v-img__gradient,
|
|
21648
|
-
.v-img__placeholder,
|
|
21649
|
-
.v-img__error {
|
|
21650
|
-
z-index: -1;
|
|
21651
|
-
position: absolute;
|
|
21652
|
-
top: 0;
|
|
21653
|
-
left: 0;
|
|
21654
|
-
width: 100%;
|
|
21655
|
-
height: 100%;
|
|
21656
|
-
}
|
|
21657
|
-
|
|
21658
|
-
.v-img__img--preload {
|
|
21659
|
-
filter: blur(4px);
|
|
21660
|
-
}
|
|
21661
|
-
.v-img__img--contain {
|
|
21662
|
-
object-fit: contain;
|
|
21663
|
-
}
|
|
21664
|
-
.v-img__img--cover {
|
|
21665
|
-
object-fit: cover;
|
|
21666
|
-
}
|
|
21667
|
-
|
|
21668
|
-
.v-img__gradient {
|
|
21669
|
-
background-repeat: no-repeat;
|
|
21670
21679
|
}.v-infinite-scroll--horizontal {
|
|
21671
21680
|
display: flex;
|
|
21672
21681
|
flex-direction: row;
|
|
@@ -21839,23 +21848,6 @@ textarea.v-field__input::placeholder {
|
|
|
21839
21848
|
max-width: 100%;
|
|
21840
21849
|
position: relative;
|
|
21841
21850
|
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
21842
|
-
}.v-label {
|
|
21843
|
-
align-items: center;
|
|
21844
|
-
color: inherit;
|
|
21845
|
-
display: inline-flex;
|
|
21846
|
-
font-size: 1rem;
|
|
21847
|
-
letter-spacing: 0.009375em;
|
|
21848
|
-
min-width: 0;
|
|
21849
|
-
opacity: var(--v-medium-emphasis-opacity);
|
|
21850
|
-
overflow: hidden;
|
|
21851
|
-
text-overflow: ellipsis;
|
|
21852
|
-
white-space: nowrap;
|
|
21853
|
-
}
|
|
21854
|
-
|
|
21855
|
-
.v-label--clickable {
|
|
21856
|
-
cursor: pointer;
|
|
21857
|
-
}.v-locale-provider {
|
|
21858
|
-
display: contents;
|
|
21859
21851
|
}.v-layout {
|
|
21860
21852
|
--v-scrollbar-offset: 0px;
|
|
21861
21853
|
display: flex;
|
|
@@ -21864,6 +21856,13 @@ textarea.v-field__input::placeholder {
|
|
|
21864
21856
|
.v-layout--full-height {
|
|
21865
21857
|
--v-scrollbar-offset: inherit;
|
|
21866
21858
|
height: 100%;
|
|
21859
|
+
}.v-layout-item {
|
|
21860
|
+
position: absolute;
|
|
21861
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
21862
|
+
}
|
|
21863
|
+
|
|
21864
|
+
.v-layout-item--absolute {
|
|
21865
|
+
position: absolute;
|
|
21867
21866
|
}.v-list {
|
|
21868
21867
|
overflow: auto;
|
|
21869
21868
|
padding: 8px 0;
|
|
@@ -21965,13 +21964,6 @@ textarea.v-field__input::placeholder {
|
|
|
21965
21964
|
right: 0;
|
|
21966
21965
|
top: 0;
|
|
21967
21966
|
transition: opacity 0.2s ease-in-out;
|
|
21968
|
-
}.v-layout-item {
|
|
21969
|
-
position: absolute;
|
|
21970
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
21971
|
-
}
|
|
21972
|
-
|
|
21973
|
-
.v-layout-item--absolute {
|
|
21974
|
-
position: absolute;
|
|
21975
21967
|
}.v-list-item {
|
|
21976
21968
|
align-items: center;
|
|
21977
21969
|
display: grid;
|
|
@@ -22397,60 +22389,175 @@ textarea.v-field__input::placeholder {
|
|
|
22397
22389
|
--parent-padding: var(--indent-padding);
|
|
22398
22390
|
--prepend-width: 40px;
|
|
22399
22391
|
}
|
|
22400
|
-
.v-list--slim .v-list-group {
|
|
22401
|
-
--prepend-width: 28px;
|
|
22392
|
+
.v-list--slim .v-list-group {
|
|
22393
|
+
--prepend-width: 28px;
|
|
22394
|
+
}
|
|
22395
|
+
.v-list-group--fluid {
|
|
22396
|
+
--list-indent-size: 0px;
|
|
22397
|
+
}
|
|
22398
|
+
.v-list-group--prepend {
|
|
22399
|
+
--parent-padding: calc(var(--indent-padding) + var(--prepend-width));
|
|
22400
|
+
}
|
|
22401
|
+
.v-list-group--fluid.v-list-group--prepend {
|
|
22402
|
+
--parent-padding: var(--indent-padding);
|
|
22403
|
+
}
|
|
22404
|
+
|
|
22405
|
+
.v-list-group__items {
|
|
22406
|
+
--indent-padding: calc(var(--parent-padding) + var(--list-indent-size));
|
|
22407
|
+
}
|
|
22408
|
+
|
|
22409
|
+
.v-list-group__items .v-list-item {
|
|
22410
|
+
padding-inline-start: calc(16px + var(--indent-padding)) !important;
|
|
22411
|
+
}
|
|
22412
|
+
|
|
22413
|
+
.v-list-group__header.v-list-item--active:not(:focus-visible) .v-list-item__overlay {
|
|
22414
|
+
opacity: 0;
|
|
22415
|
+
}
|
|
22416
|
+
.v-list-group__header.v-list-item--active:hover .v-list-item__overlay {
|
|
22417
|
+
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
|
22418
|
+
}.v-label {
|
|
22419
|
+
align-items: center;
|
|
22420
|
+
color: inherit;
|
|
22421
|
+
display: inline-flex;
|
|
22422
|
+
font-size: 1rem;
|
|
22423
|
+
letter-spacing: 0.009375em;
|
|
22424
|
+
min-width: 0;
|
|
22425
|
+
opacity: var(--v-medium-emphasis-opacity);
|
|
22426
|
+
overflow: hidden;
|
|
22427
|
+
text-overflow: ellipsis;
|
|
22428
|
+
white-space: nowrap;
|
|
22429
|
+
}
|
|
22430
|
+
|
|
22431
|
+
.v-label--clickable {
|
|
22432
|
+
cursor: pointer;
|
|
22433
|
+
}.v-main {
|
|
22434
|
+
flex: 1 0 auto;
|
|
22435
|
+
max-width: 100%;
|
|
22436
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
22437
|
+
padding-left: var(--v-layout-left);
|
|
22438
|
+
padding-right: var(--v-layout-right);
|
|
22439
|
+
padding-top: var(--v-layout-top);
|
|
22440
|
+
padding-bottom: var(--v-layout-bottom);
|
|
22441
|
+
}
|
|
22442
|
+
.v-main__scroller {
|
|
22443
|
+
max-width: 100%;
|
|
22444
|
+
position: relative;
|
|
22445
|
+
}
|
|
22446
|
+
.v-main--scrollable {
|
|
22447
|
+
display: flex;
|
|
22448
|
+
position: absolute;
|
|
22449
|
+
top: 0;
|
|
22450
|
+
left: 0;
|
|
22451
|
+
width: 100%;
|
|
22452
|
+
height: 100%;
|
|
22453
|
+
}
|
|
22454
|
+
.v-main--scrollable > .v-main__scroller {
|
|
22455
|
+
flex: 1 1 auto;
|
|
22456
|
+
overflow-y: auto;
|
|
22457
|
+
--v-layout-left: 0px;
|
|
22458
|
+
--v-layout-right: 0px;
|
|
22459
|
+
--v-layout-top: 0px;
|
|
22460
|
+
--v-layout-bottom: 0px;
|
|
22461
|
+
}.v-locale-provider {
|
|
22462
|
+
display: contents;
|
|
22463
|
+
}.v-navigation-drawer {
|
|
22464
|
+
-webkit-overflow-scrolling: touch;
|
|
22465
|
+
background: rgb(var(--v-theme-surface));
|
|
22466
|
+
display: flex;
|
|
22467
|
+
flex-direction: column;
|
|
22468
|
+
height: 100%;
|
|
22469
|
+
max-width: 100%;
|
|
22470
|
+
pointer-events: auto;
|
|
22471
|
+
transition-duration: 0.2s;
|
|
22472
|
+
transition-property: box-shadow, transform, visibility, width, height, left, right, top, bottom;
|
|
22473
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
22474
|
+
position: absolute;
|
|
22475
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
22476
|
+
border-style: solid;
|
|
22477
|
+
border-width: 0;
|
|
22478
|
+
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));
|
|
22479
|
+
background: rgb(var(--v-theme-surface));
|
|
22480
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
22481
|
+
}
|
|
22482
|
+
.v-navigation-drawer--border {
|
|
22483
|
+
border-width: thin;
|
|
22484
|
+
box-shadow: none;
|
|
22485
|
+
}
|
|
22486
|
+
.v-navigation-drawer--rounded {
|
|
22487
|
+
border-radius: 4px;
|
|
22488
|
+
}
|
|
22489
|
+
.v-navigation-drawer--top {
|
|
22490
|
+
top: 0;
|
|
22491
|
+
border-bottom-width: thin;
|
|
22492
|
+
}
|
|
22493
|
+
.v-navigation-drawer--bottom {
|
|
22494
|
+
left: 0;
|
|
22495
|
+
border-top-width: thin;
|
|
22496
|
+
}
|
|
22497
|
+
.v-navigation-drawer--left {
|
|
22498
|
+
top: 0;
|
|
22499
|
+
left: 0;
|
|
22500
|
+
right: auto;
|
|
22501
|
+
border-right-width: thin;
|
|
22502
|
+
}
|
|
22503
|
+
.v-navigation-drawer--right {
|
|
22504
|
+
top: 0;
|
|
22505
|
+
left: auto;
|
|
22506
|
+
right: 0;
|
|
22507
|
+
border-left-width: thin;
|
|
22402
22508
|
}
|
|
22403
|
-
.v-
|
|
22404
|
-
|
|
22509
|
+
.v-navigation-drawer--floating {
|
|
22510
|
+
border: none;
|
|
22405
22511
|
}
|
|
22406
|
-
.v-
|
|
22407
|
-
|
|
22512
|
+
.v-navigation-drawer--temporary {
|
|
22513
|
+
box-shadow: 0px 8px 10px -5px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 16px 24px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 6px 30px 5px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
22408
22514
|
}
|
|
22409
|
-
.v-
|
|
22410
|
-
|
|
22515
|
+
.v-navigation-drawer--sticky {
|
|
22516
|
+
height: auto;
|
|
22517
|
+
transition: box-shadow, transform, visibility, width, height, left, right;
|
|
22411
22518
|
}
|
|
22412
|
-
|
|
22413
|
-
|
|
22414
|
-
--indent-padding: calc(var(--parent-padding) + var(--list-indent-size));
|
|
22519
|
+
.v-navigation-drawer .v-list {
|
|
22520
|
+
overflow: hidden;
|
|
22415
22521
|
}
|
|
22416
22522
|
|
|
22417
|
-
.v-
|
|
22418
|
-
|
|
22523
|
+
.v-navigation-drawer__content {
|
|
22524
|
+
flex: 0 1 auto;
|
|
22525
|
+
height: 100%;
|
|
22526
|
+
max-width: 100%;
|
|
22527
|
+
overflow-x: hidden;
|
|
22528
|
+
overflow-y: auto;
|
|
22419
22529
|
}
|
|
22420
22530
|
|
|
22421
|
-
.v-
|
|
22422
|
-
|
|
22423
|
-
|
|
22424
|
-
|
|
22425
|
-
|
|
22426
|
-
|
|
22427
|
-
|
|
22428
|
-
max-width: 100%;
|
|
22429
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
22430
|
-
padding-left: var(--v-layout-left);
|
|
22431
|
-
padding-right: var(--v-layout-right);
|
|
22432
|
-
padding-top: var(--v-layout-top);
|
|
22433
|
-
padding-bottom: var(--v-layout-bottom);
|
|
22531
|
+
.v-navigation-drawer__img {
|
|
22532
|
+
height: 100%;
|
|
22533
|
+
left: 0;
|
|
22534
|
+
position: absolute;
|
|
22535
|
+
top: 0;
|
|
22536
|
+
width: 100%;
|
|
22537
|
+
z-index: -1;
|
|
22434
22538
|
}
|
|
22435
|
-
.v-
|
|
22436
|
-
|
|
22437
|
-
|
|
22539
|
+
.v-navigation-drawer__img img {
|
|
22540
|
+
height: inherit;
|
|
22541
|
+
object-fit: cover;
|
|
22542
|
+
width: inherit;
|
|
22438
22543
|
}
|
|
22439
|
-
|
|
22440
|
-
|
|
22544
|
+
|
|
22545
|
+
.v-navigation-drawer__scrim {
|
|
22441
22546
|
position: absolute;
|
|
22442
22547
|
top: 0;
|
|
22443
22548
|
left: 0;
|
|
22444
22549
|
width: 100%;
|
|
22445
22550
|
height: 100%;
|
|
22551
|
+
background: black;
|
|
22552
|
+
opacity: 0.2;
|
|
22553
|
+
transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
22554
|
+
z-index: 1;
|
|
22446
22555
|
}
|
|
22447
|
-
|
|
22448
|
-
|
|
22449
|
-
|
|
22450
|
-
|
|
22451
|
-
|
|
22452
|
-
--v-layout-top: 0px;
|
|
22453
|
-
--v-layout-bottom: 0px;
|
|
22556
|
+
|
|
22557
|
+
.v-navigation-drawer__prepend,
|
|
22558
|
+
.v-navigation-drawer__append {
|
|
22559
|
+
flex: none;
|
|
22560
|
+
overflow: hidden;
|
|
22454
22561
|
}.v-menu > .v-overlay__content {
|
|
22455
22562
|
display: flex;
|
|
22456
22563
|
flex-direction: column;
|
|
@@ -22607,6 +22714,12 @@ html.v-overlay-scroll-blocked {
|
|
|
22607
22714
|
|
|
22608
22715
|
.v-overlay--scroll-blocked {
|
|
22609
22716
|
padding-inline-end: var(--v-scrollbar-offset);
|
|
22717
|
+
}.v-parallax {
|
|
22718
|
+
position: relative;
|
|
22719
|
+
overflow: hidden;
|
|
22720
|
+
}
|
|
22721
|
+
.v-parallax--active > .v-img__img {
|
|
22722
|
+
will-change: transform;
|
|
22610
22723
|
}.v-progress-linear {
|
|
22611
22724
|
background: transparent;
|
|
22612
22725
|
overflow: hidden;
|
|
@@ -22817,12 +22930,6 @@ html.v-overlay-scroll-blocked {
|
|
|
22817
22930
|
0% {
|
|
22818
22931
|
background-position-x: var(--v-progress-linear-height);
|
|
22819
22932
|
}
|
|
22820
|
-
}.v-parallax {
|
|
22821
|
-
position: relative;
|
|
22822
|
-
overflow: hidden;
|
|
22823
|
-
}
|
|
22824
|
-
.v-parallax--active > .v-img__img {
|
|
22825
|
-
will-change: transform;
|
|
22826
22933
|
}.v-progress-circular {
|
|
22827
22934
|
align-items: center;
|
|
22828
22935
|
display: inline-flex;
|
|
@@ -22865,218 +22972,78 @@ html.v-overlay-scroll-blocked {
|
|
|
22865
22972
|
width: 16px;
|
|
22866
22973
|
}
|
|
22867
22974
|
.v-progress-circular--size-small {
|
|
22868
|
-
height: 24px;
|
|
22869
|
-
width: 24px;
|
|
22870
|
-
}
|
|
22871
|
-
.v-progress-circular--size-default {
|
|
22872
|
-
height: 32px;
|
|
22873
|
-
width: 32px;
|
|
22874
|
-
}
|
|
22875
|
-
.v-progress-circular--size-large {
|
|
22876
|
-
height: 48px;
|
|
22877
|
-
width: 48px;
|
|
22878
|
-
}
|
|
22879
|
-
.v-progress-circular--size-x-large {
|
|
22880
|
-
height: 64px;
|
|
22881
|
-
width: 64px;
|
|
22882
|
-
}
|
|
22883
|
-
|
|
22884
|
-
.v-progress-circular--indeterminate > svg {
|
|
22885
|
-
animation: progress-circular-rotate 1.4s linear infinite;
|
|
22886
|
-
transform-origin: center center;
|
|
22887
|
-
transition: all 0.2s ease-in-out;
|
|
22888
|
-
}
|
|
22889
|
-
.v-progress-circular--indeterminate .v-progress-circular__overlay {
|
|
22890
|
-
animation: progress-circular-dash 1.4s ease-in-out infinite, progress-circular-rotate 1.4s linear infinite;
|
|
22891
|
-
stroke-dasharray: 25, 200;
|
|
22892
|
-
stroke-dashoffset: 0;
|
|
22893
|
-
stroke-linecap: round;
|
|
22894
|
-
transform-origin: center center;
|
|
22895
|
-
transform: rotate(-90deg);
|
|
22896
|
-
}
|
|
22897
|
-
|
|
22898
|
-
.v-progress-circular--disable-shrink > svg {
|
|
22899
|
-
animation-duration: 0.7s;
|
|
22900
|
-
}
|
|
22901
|
-
.v-progress-circular--disable-shrink .v-progress-circular__overlay {
|
|
22902
|
-
animation: none;
|
|
22903
|
-
}
|
|
22904
|
-
|
|
22905
|
-
.v-progress-circular--indeterminate:not(.v-progress-circular--visible) > svg,
|
|
22906
|
-
.v-progress-circular--indeterminate:not(.v-progress-circular--visible) .v-progress-circular__overlay {
|
|
22907
|
-
animation-play-state: paused !important;
|
|
22908
|
-
}
|
|
22909
|
-
|
|
22910
|
-
@keyframes progress-circular-dash {
|
|
22911
|
-
0% {
|
|
22912
|
-
stroke-dasharray: 1, 200;
|
|
22913
|
-
stroke-dashoffset: 0px;
|
|
22914
|
-
}
|
|
22915
|
-
50% {
|
|
22916
|
-
stroke-dasharray: 100, 200;
|
|
22917
|
-
stroke-dashoffset: -15px;
|
|
22918
|
-
}
|
|
22919
|
-
100% {
|
|
22920
|
-
stroke-dasharray: 100, 200;
|
|
22921
|
-
stroke-dashoffset: -124px;
|
|
22922
|
-
}
|
|
22923
|
-
}
|
|
22924
|
-
@keyframes progress-circular-rotate {
|
|
22925
|
-
100% {
|
|
22926
|
-
transform: rotate(270deg);
|
|
22927
|
-
}
|
|
22928
|
-
}.v-navigation-drawer {
|
|
22929
|
-
-webkit-overflow-scrolling: touch;
|
|
22930
|
-
background: rgb(var(--v-theme-surface));
|
|
22931
|
-
display: flex;
|
|
22932
|
-
flex-direction: column;
|
|
22933
|
-
height: 100%;
|
|
22934
|
-
max-width: 100%;
|
|
22935
|
-
pointer-events: auto;
|
|
22936
|
-
transition-duration: 0.2s;
|
|
22937
|
-
transition-property: box-shadow, transform, visibility, width, height, left, right, top, bottom;
|
|
22938
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
22939
|
-
position: absolute;
|
|
22940
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
22941
|
-
border-style: solid;
|
|
22942
|
-
border-width: 0;
|
|
22943
|
-
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));
|
|
22944
|
-
background: rgb(var(--v-theme-surface));
|
|
22945
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
22946
|
-
}
|
|
22947
|
-
.v-navigation-drawer--border {
|
|
22948
|
-
border-width: thin;
|
|
22949
|
-
box-shadow: none;
|
|
22950
|
-
}
|
|
22951
|
-
.v-navigation-drawer--rounded {
|
|
22952
|
-
border-radius: 4px;
|
|
22953
|
-
}
|
|
22954
|
-
.v-navigation-drawer--top {
|
|
22955
|
-
top: 0;
|
|
22956
|
-
border-bottom-width: thin;
|
|
22957
|
-
}
|
|
22958
|
-
.v-navigation-drawer--bottom {
|
|
22959
|
-
left: 0;
|
|
22960
|
-
border-top-width: thin;
|
|
22961
|
-
}
|
|
22962
|
-
.v-navigation-drawer--left {
|
|
22963
|
-
top: 0;
|
|
22964
|
-
left: 0;
|
|
22965
|
-
right: auto;
|
|
22966
|
-
border-right-width: thin;
|
|
22967
|
-
}
|
|
22968
|
-
.v-navigation-drawer--right {
|
|
22969
|
-
top: 0;
|
|
22970
|
-
left: auto;
|
|
22971
|
-
right: 0;
|
|
22972
|
-
border-left-width: thin;
|
|
22973
|
-
}
|
|
22974
|
-
.v-navigation-drawer--floating {
|
|
22975
|
-
border: none;
|
|
22976
|
-
}
|
|
22977
|
-
.v-navigation-drawer--temporary {
|
|
22978
|
-
box-shadow: 0px 8px 10px -5px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 16px 24px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 6px 30px 5px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
22979
|
-
}
|
|
22980
|
-
.v-navigation-drawer--sticky {
|
|
22981
|
-
height: auto;
|
|
22982
|
-
transition: box-shadow, transform, visibility, width, height, left, right;
|
|
22983
|
-
}
|
|
22984
|
-
.v-navigation-drawer .v-list {
|
|
22985
|
-
overflow: hidden;
|
|
22986
|
-
}
|
|
22987
|
-
|
|
22988
|
-
.v-navigation-drawer__content {
|
|
22989
|
-
flex: 0 1 auto;
|
|
22990
|
-
height: 100%;
|
|
22991
|
-
max-width: 100%;
|
|
22992
|
-
overflow-x: hidden;
|
|
22993
|
-
overflow-y: auto;
|
|
22994
|
-
}
|
|
22995
|
-
|
|
22996
|
-
.v-navigation-drawer__img {
|
|
22997
|
-
height: 100%;
|
|
22998
|
-
left: 0;
|
|
22999
|
-
position: absolute;
|
|
23000
|
-
top: 0;
|
|
23001
|
-
width: 100%;
|
|
23002
|
-
z-index: -1;
|
|
23003
|
-
}
|
|
23004
|
-
.v-navigation-drawer__img img {
|
|
23005
|
-
height: inherit;
|
|
23006
|
-
object-fit: cover;
|
|
23007
|
-
width: inherit;
|
|
23008
|
-
}
|
|
23009
|
-
|
|
23010
|
-
.v-navigation-drawer__scrim {
|
|
23011
|
-
position: absolute;
|
|
23012
|
-
top: 0;
|
|
23013
|
-
left: 0;
|
|
23014
|
-
width: 100%;
|
|
23015
|
-
height: 100%;
|
|
23016
|
-
background: black;
|
|
23017
|
-
opacity: 0.2;
|
|
23018
|
-
transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
23019
|
-
z-index: 1;
|
|
23020
|
-
}
|
|
23021
|
-
|
|
23022
|
-
.v-navigation-drawer__prepend,
|
|
23023
|
-
.v-navigation-drawer__append {
|
|
23024
|
-
flex: none;
|
|
23025
|
-
overflow: hidden;
|
|
23026
|
-
}.v-rating {
|
|
23027
|
-
max-width: 100%;
|
|
23028
|
-
display: inline-flex;
|
|
23029
|
-
white-space: nowrap;
|
|
22975
|
+
height: 24px;
|
|
22976
|
+
width: 24px;
|
|
23030
22977
|
}
|
|
23031
|
-
.v-
|
|
23032
|
-
|
|
22978
|
+
.v-progress-circular--size-default {
|
|
22979
|
+
height: 32px;
|
|
22980
|
+
width: 32px;
|
|
23033
22981
|
}
|
|
23034
|
-
|
|
23035
|
-
|
|
23036
|
-
|
|
23037
|
-
display: inline-flex;
|
|
23038
|
-
flex-direction: column;
|
|
22982
|
+
.v-progress-circular--size-large {
|
|
22983
|
+
height: 48px;
|
|
22984
|
+
width: 48px;
|
|
23039
22985
|
}
|
|
23040
|
-
.v-
|
|
23041
|
-
|
|
22986
|
+
.v-progress-circular--size-x-large {
|
|
22987
|
+
height: 64px;
|
|
22988
|
+
width: 64px;
|
|
23042
22989
|
}
|
|
23043
22990
|
|
|
23044
|
-
.v-
|
|
23045
|
-
|
|
23046
|
-
|
|
22991
|
+
.v-progress-circular--indeterminate > svg {
|
|
22992
|
+
animation: progress-circular-rotate 1.4s linear infinite;
|
|
22993
|
+
transform-origin: center center;
|
|
22994
|
+
transition: all 0.2s ease-in-out;
|
|
23047
22995
|
}
|
|
23048
|
-
.v-
|
|
23049
|
-
|
|
22996
|
+
.v-progress-circular--indeterminate .v-progress-circular__overlay {
|
|
22997
|
+
animation: progress-circular-dash 1.4s ease-in-out infinite, progress-circular-rotate 1.4s linear infinite;
|
|
22998
|
+
stroke-dasharray: 25, 200;
|
|
22999
|
+
stroke-dashoffset: 0;
|
|
23000
|
+
stroke-linecap: round;
|
|
23001
|
+
transform-origin: center center;
|
|
23002
|
+
transform: rotate(-90deg);
|
|
23050
23003
|
}
|
|
23051
|
-
|
|
23052
|
-
|
|
23004
|
+
|
|
23005
|
+
.v-progress-circular--disable-shrink > svg {
|
|
23006
|
+
animation-duration: 0.7s;
|
|
23053
23007
|
}
|
|
23054
|
-
.v-
|
|
23055
|
-
|
|
23008
|
+
.v-progress-circular--disable-shrink .v-progress-circular__overlay {
|
|
23009
|
+
animation: none;
|
|
23056
23010
|
}
|
|
23057
|
-
|
|
23058
|
-
|
|
23059
|
-
|
|
23011
|
+
|
|
23012
|
+
.v-progress-circular--indeterminate:not(.v-progress-circular--visible) > svg,
|
|
23013
|
+
.v-progress-circular--indeterminate:not(.v-progress-circular--visible) .v-progress-circular__overlay {
|
|
23014
|
+
animation-play-state: paused !important;
|
|
23060
23015
|
}
|
|
23061
|
-
|
|
23062
|
-
|
|
23016
|
+
|
|
23017
|
+
@keyframes progress-circular-dash {
|
|
23018
|
+
0% {
|
|
23019
|
+
stroke-dasharray: 1, 200;
|
|
23020
|
+
stroke-dashoffset: 0px;
|
|
23021
|
+
}
|
|
23022
|
+
50% {
|
|
23023
|
+
stroke-dasharray: 100, 200;
|
|
23024
|
+
stroke-dashoffset: -15px;
|
|
23025
|
+
}
|
|
23026
|
+
100% {
|
|
23027
|
+
stroke-dasharray: 100, 200;
|
|
23028
|
+
stroke-dashoffset: -124px;
|
|
23029
|
+
}
|
|
23063
23030
|
}
|
|
23064
|
-
|
|
23065
|
-
|
|
23066
|
-
|
|
23067
|
-
|
|
23068
|
-
|
|
23069
|
-
|
|
23031
|
+
@keyframes progress-circular-rotate {
|
|
23032
|
+
100% {
|
|
23033
|
+
transform: rotate(270deg);
|
|
23034
|
+
}
|
|
23035
|
+
}.v-radio-group > .v-input__control {
|
|
23036
|
+
flex-direction: column;
|
|
23070
23037
|
}
|
|
23071
|
-
.v-
|
|
23072
|
-
|
|
23038
|
+
.v-radio-group > .v-input__control > .v-label {
|
|
23039
|
+
margin-inline-start: 16px;
|
|
23073
23040
|
}
|
|
23074
|
-
|
|
23075
|
-
|
|
23076
|
-
|
|
23077
|
-
|
|
23078
|
-
|
|
23079
|
-
|
|
23041
|
+
.v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
|
|
23042
|
+
padding-inline-start: 6px;
|
|
23043
|
+
margin-top: 8px;
|
|
23044
|
+
}
|
|
23045
|
+
.v-radio-group .v-input__details {
|
|
23046
|
+
padding-inline: 16px;
|
|
23080
23047
|
}.v-slider .v-slider__container input {
|
|
23081
23048
|
cursor: default;
|
|
23082
23049
|
padding: 0;
|
|
@@ -23134,18 +23101,6 @@ html.v-overlay-scroll-blocked {
|
|
|
23134
23101
|
|
|
23135
23102
|
.v-slider__label {
|
|
23136
23103
|
margin-inline-end: 12px;
|
|
23137
|
-
}.v-radio-group > .v-input__control {
|
|
23138
|
-
flex-direction: column;
|
|
23139
|
-
}
|
|
23140
|
-
.v-radio-group > .v-input__control > .v-label {
|
|
23141
|
-
margin-inline-start: 16px;
|
|
23142
|
-
}
|
|
23143
|
-
.v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
|
|
23144
|
-
padding-inline-start: 6px;
|
|
23145
|
-
margin-top: 8px;
|
|
23146
|
-
}
|
|
23147
|
-
.v-radio-group .v-input__details {
|
|
23148
|
-
padding-inline: 16px;
|
|
23149
23104
|
}.v-responsive {
|
|
23150
23105
|
display: flex;
|
|
23151
23106
|
flex: 1 0 auto;
|
|
@@ -23172,6 +23127,60 @@ html.v-overlay-scroll-blocked {
|
|
|
23172
23127
|
flex: 1 0 0px;
|
|
23173
23128
|
transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
23174
23129
|
pointer-events: none;
|
|
23130
|
+
}.v-rating {
|
|
23131
|
+
max-width: 100%;
|
|
23132
|
+
display: inline-flex;
|
|
23133
|
+
white-space: nowrap;
|
|
23134
|
+
}
|
|
23135
|
+
.v-rating--readonly {
|
|
23136
|
+
pointer-events: none;
|
|
23137
|
+
}
|
|
23138
|
+
|
|
23139
|
+
.v-rating__wrapper {
|
|
23140
|
+
align-items: center;
|
|
23141
|
+
display: inline-flex;
|
|
23142
|
+
flex-direction: column;
|
|
23143
|
+
}
|
|
23144
|
+
.v-rating__wrapper--bottom {
|
|
23145
|
+
flex-direction: column-reverse;
|
|
23146
|
+
}
|
|
23147
|
+
|
|
23148
|
+
.v-rating__item {
|
|
23149
|
+
display: inline-flex;
|
|
23150
|
+
position: relative;
|
|
23151
|
+
}
|
|
23152
|
+
.v-rating__item label {
|
|
23153
|
+
cursor: pointer;
|
|
23154
|
+
}
|
|
23155
|
+
.v-rating__item .v-btn--variant-plain {
|
|
23156
|
+
opacity: 1;
|
|
23157
|
+
}
|
|
23158
|
+
.v-rating__item .v-btn {
|
|
23159
|
+
transition-property: transform;
|
|
23160
|
+
}
|
|
23161
|
+
.v-rating__item .v-btn .v-icon {
|
|
23162
|
+
transition: inherit;
|
|
23163
|
+
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
23164
|
+
}
|
|
23165
|
+
.v-rating--hover .v-rating__item:hover:not(.v-rating__item--focused) .v-btn {
|
|
23166
|
+
transform: scale(1.25);
|
|
23167
|
+
}
|
|
23168
|
+
.v-rating__item--half {
|
|
23169
|
+
overflow: hidden;
|
|
23170
|
+
position: absolute;
|
|
23171
|
+
-webkit-clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
|
|
23172
|
+
clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
|
|
23173
|
+
z-index: 1;
|
|
23174
|
+
}
|
|
23175
|
+
.v-rating__item--half .v-btn__overlay, .v-rating__item--half:hover .v-btn__overlay {
|
|
23176
|
+
opacity: 0;
|
|
23177
|
+
}
|
|
23178
|
+
|
|
23179
|
+
.v-rating__hidden {
|
|
23180
|
+
height: 0;
|
|
23181
|
+
opacity: 0;
|
|
23182
|
+
position: absolute;
|
|
23183
|
+
width: 0;
|
|
23175
23184
|
}.v-select .v-field .v-text-field__prefix,
|
|
23176
23185
|
.v-select .v-field .v-text-field__suffix,
|
|
23177
23186
|
.v-select .v-field .v-field__input, .v-select .v-field.v-field {
|
|
@@ -23220,14 +23229,6 @@ html.v-overlay-scroll-blocked {
|
|
|
23220
23229
|
.v-select--active-menu .v-select__menu-icon {
|
|
23221
23230
|
opacity: var(--v-high-emphasis-opacity);
|
|
23222
23231
|
transform: rotate(180deg);
|
|
23223
|
-
}.v-selection-control-group {
|
|
23224
|
-
grid-area: control;
|
|
23225
|
-
display: flex;
|
|
23226
|
-
flex-direction: column;
|
|
23227
|
-
}
|
|
23228
|
-
.v-selection-control-group--inline {
|
|
23229
|
-
flex-direction: row;
|
|
23230
|
-
flex-wrap: wrap;
|
|
23231
23232
|
}.v-selection-control {
|
|
23232
23233
|
align-items: center;
|
|
23233
23234
|
contain: layout;
|
|
@@ -23357,6 +23358,14 @@ html.v-overlay-scroll-blocked {
|
|
|
23357
23358
|
}
|
|
23358
23359
|
.v-sheet--rounded {
|
|
23359
23360
|
border-radius: 4px;
|
|
23361
|
+
}.v-selection-control-group {
|
|
23362
|
+
grid-area: control;
|
|
23363
|
+
display: flex;
|
|
23364
|
+
flex-direction: column;
|
|
23365
|
+
}
|
|
23366
|
+
.v-selection-control-group--inline {
|
|
23367
|
+
flex-direction: row;
|
|
23368
|
+
flex-wrap: wrap;
|
|
23360
23369
|
}.v-skeleton-loader {
|
|
23361
23370
|
align-items: center;
|
|
23362
23371
|
background: rgb(var(--v-theme-surface));
|
|
@@ -23576,52 +23585,166 @@ html.v-overlay-scroll-blocked {
|
|
|
23576
23585
|
border-radius: 0;
|
|
23577
23586
|
}
|
|
23578
23587
|
|
|
23579
|
-
@keyframes loading {
|
|
23580
|
-
100% {
|
|
23581
|
-
transform: translateX(100%);
|
|
23582
|
-
}
|
|
23583
|
-
}.v-slide-group {
|
|
23584
|
-
display: flex;
|
|
23585
|
-
overflow: hidden;
|
|
23588
|
+
@keyframes loading {
|
|
23589
|
+
100% {
|
|
23590
|
+
transform: translateX(100%);
|
|
23591
|
+
}
|
|
23592
|
+
}.v-slide-group {
|
|
23593
|
+
display: flex;
|
|
23594
|
+
overflow: hidden;
|
|
23595
|
+
}
|
|
23596
|
+
|
|
23597
|
+
.v-slide-group__next,
|
|
23598
|
+
.v-slide-group__prev {
|
|
23599
|
+
align-items: center;
|
|
23600
|
+
display: flex;
|
|
23601
|
+
flex: 0 1 52px;
|
|
23602
|
+
justify-content: center;
|
|
23603
|
+
min-width: 52px;
|
|
23604
|
+
cursor: pointer;
|
|
23605
|
+
}
|
|
23606
|
+
.v-slide-group__next--disabled,
|
|
23607
|
+
.v-slide-group__prev--disabled {
|
|
23608
|
+
pointer-events: none;
|
|
23609
|
+
opacity: var(--v-disabled-opacity);
|
|
23610
|
+
}
|
|
23611
|
+
|
|
23612
|
+
.v-slide-group__content {
|
|
23613
|
+
display: flex;
|
|
23614
|
+
flex: 1 0 auto;
|
|
23615
|
+
position: relative;
|
|
23616
|
+
transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1);
|
|
23617
|
+
white-space: nowrap;
|
|
23618
|
+
}
|
|
23619
|
+
.v-slide-group__content > * {
|
|
23620
|
+
white-space: initial;
|
|
23621
|
+
}
|
|
23622
|
+
|
|
23623
|
+
.v-slide-group__container {
|
|
23624
|
+
contain: content;
|
|
23625
|
+
display: flex;
|
|
23626
|
+
flex: 1 1 auto;
|
|
23627
|
+
overflow: hidden;
|
|
23628
|
+
}
|
|
23629
|
+
|
|
23630
|
+
.v-slide-group--vertical,
|
|
23631
|
+
.v-slide-group--vertical .v-slide-group__container,
|
|
23632
|
+
.v-slide-group--vertical .v-slide-group__content {
|
|
23633
|
+
flex-direction: column;
|
|
23634
|
+
}.v-switch .v-label {
|
|
23635
|
+
padding-inline-start: 10px;
|
|
23636
|
+
}
|
|
23637
|
+
.v-switch .v-switch__thumb {
|
|
23638
|
+
background-color: rgb(var(--v-theme-surface-bright));
|
|
23639
|
+
color: rgb(var(--v-theme-on-surface-bright));
|
|
23640
|
+
}
|
|
23641
|
+
|
|
23642
|
+
.v-switch__loader {
|
|
23643
|
+
display: flex;
|
|
23644
|
+
}
|
|
23645
|
+
.v-switch__loader .v-progress-circular {
|
|
23646
|
+
color: rgb(var(--v-theme-surface));
|
|
23647
|
+
}
|
|
23648
|
+
|
|
23649
|
+
.v-switch__track,
|
|
23650
|
+
.v-switch__thumb {
|
|
23651
|
+
transition: none;
|
|
23652
|
+
}
|
|
23653
|
+
.v-selection-control--error:not(.v-selection-control--disabled) .v-switch__track,
|
|
23654
|
+
.v-selection-control--error:not(.v-selection-control--disabled) .v-switch__thumb {
|
|
23655
|
+
background-color: rgb(var(--v-theme-error));
|
|
23656
|
+
color: rgb(var(--v-theme-on-error));
|
|
23657
|
+
}
|
|
23658
|
+
|
|
23659
|
+
.v-switch__track-true {
|
|
23660
|
+
margin-inline-end: auto;
|
|
23661
|
+
}
|
|
23662
|
+
.v-selection-control:not(.v-selection-control--dirty) .v-switch__track-true {
|
|
23663
|
+
opacity: 0;
|
|
23664
|
+
}
|
|
23665
|
+
|
|
23666
|
+
.v-switch__track-false {
|
|
23667
|
+
margin-inline-start: auto;
|
|
23668
|
+
}
|
|
23669
|
+
.v-selection-control--dirty .v-switch__track-false {
|
|
23670
|
+
opacity: 0;
|
|
23586
23671
|
}
|
|
23587
23672
|
|
|
23588
|
-
.v-
|
|
23589
|
-
|
|
23673
|
+
.v-switch__track {
|
|
23674
|
+
display: inline-flex;
|
|
23590
23675
|
align-items: center;
|
|
23591
|
-
|
|
23592
|
-
|
|
23593
|
-
|
|
23594
|
-
|
|
23676
|
+
font-size: 0.5rem;
|
|
23677
|
+
padding: 0 5px;
|
|
23678
|
+
background-color: rgb(var(--v-theme-surface-variant));
|
|
23679
|
+
border-radius: 9999px;
|
|
23680
|
+
height: 14px;
|
|
23681
|
+
opacity: 0.6;
|
|
23682
|
+
min-width: 36px;
|
|
23595
23683
|
cursor: pointer;
|
|
23684
|
+
transition: 0.2s background-color cubic-bezier(0.4, 0, 0.2, 1);
|
|
23596
23685
|
}
|
|
23597
|
-
.v-
|
|
23598
|
-
|
|
23599
|
-
|
|
23600
|
-
|
|
23686
|
+
.v-switch--inset .v-switch__track {
|
|
23687
|
+
border-radius: 9999px;
|
|
23688
|
+
font-size: 0.75rem;
|
|
23689
|
+
height: 32px;
|
|
23690
|
+
min-width: 52px;
|
|
23601
23691
|
}
|
|
23602
23692
|
|
|
23603
|
-
.v-
|
|
23693
|
+
.v-switch__thumb {
|
|
23694
|
+
align-items: center;
|
|
23695
|
+
border-radius: 50%;
|
|
23604
23696
|
display: flex;
|
|
23605
|
-
|
|
23697
|
+
font-size: 0.75rem;
|
|
23698
|
+
height: 20px;
|
|
23699
|
+
justify-content: center;
|
|
23700
|
+
width: 20px;
|
|
23701
|
+
pointer-events: none;
|
|
23702
|
+
transition: 0.15s 0.05s transform cubic-bezier(0, 0, 0.2, 1), 0.2s color cubic-bezier(0.4, 0, 0.2, 1), 0.2s background-color cubic-bezier(0.4, 0, 0.2, 1);
|
|
23606
23703
|
position: relative;
|
|
23607
|
-
|
|
23608
|
-
|
|
23704
|
+
overflow: hidden;
|
|
23705
|
+
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));
|
|
23609
23706
|
}
|
|
23610
|
-
.v-
|
|
23611
|
-
|
|
23707
|
+
.v-switch--inset .v-switch__thumb {
|
|
23708
|
+
height: 24px;
|
|
23709
|
+
width: 24px;
|
|
23710
|
+
transform: scale(0.6666666667);
|
|
23711
|
+
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));
|
|
23612
23712
|
}
|
|
23613
|
-
|
|
23614
|
-
|
|
23615
|
-
|
|
23616
|
-
|
|
23617
|
-
|
|
23618
|
-
|
|
23713
|
+
.v-switch--inset .v-switch__thumb--filled {
|
|
23714
|
+
transform: none;
|
|
23715
|
+
}
|
|
23716
|
+
.v-switch--inset .v-selection-control--dirty .v-switch__thumb {
|
|
23717
|
+
transform: none;
|
|
23718
|
+
transition: 0.15s 0.05s transform cubic-bezier(0, 0, 0.2, 1);
|
|
23619
23719
|
}
|
|
23620
23720
|
|
|
23621
|
-
.v-
|
|
23622
|
-
|
|
23623
|
-
|
|
23624
|
-
|
|
23721
|
+
.v-switch.v-input {
|
|
23722
|
+
flex: 0 1 auto;
|
|
23723
|
+
}
|
|
23724
|
+
.v-switch .v-selection-control {
|
|
23725
|
+
min-height: var(--v-input-control-height);
|
|
23726
|
+
}
|
|
23727
|
+
.v-switch .v-selection-control__input {
|
|
23728
|
+
border-radius: 50%;
|
|
23729
|
+
transition: 0.2s transform cubic-bezier(0.4, 0, 0.2, 1);
|
|
23730
|
+
transform: translateX(-10px);
|
|
23731
|
+
position: absolute;
|
|
23732
|
+
}
|
|
23733
|
+
.v-switch .v-selection-control__input .v-icon {
|
|
23734
|
+
position: absolute;
|
|
23735
|
+
}
|
|
23736
|
+
.v-switch .v-selection-control--dirty .v-selection-control__input {
|
|
23737
|
+
transform: translateX(10px);
|
|
23738
|
+
}
|
|
23739
|
+
.v-switch.v-switch--indeterminate .v-selection-control__input {
|
|
23740
|
+
transform: scale(0.8);
|
|
23741
|
+
}
|
|
23742
|
+
.v-switch.v-switch--indeterminate .v-switch__thumb {
|
|
23743
|
+
transform: scale(0.75);
|
|
23744
|
+
box-shadow: none;
|
|
23745
|
+
}
|
|
23746
|
+
.v-switch.v-switch--inset .v-selection-control__wrapper {
|
|
23747
|
+
width: auto;
|
|
23625
23748
|
}.v-snackbar {
|
|
23626
23749
|
justify-content: center;
|
|
23627
23750
|
z-index: 10000;
|
|
@@ -23916,232 +24039,79 @@ html.v-overlay-scroll-blocked {
|
|
|
23916
24039
|
--v-tabs-height: 36px;
|
|
23917
24040
|
}
|
|
23918
24041
|
.v-tabs--density-compact.v-tabs--stacked {
|
|
23919
|
-
--v-tabs-height: 60px;
|
|
23920
|
-
}
|
|
23921
|
-
|
|
23922
|
-
.v-tabs.v-slide-group--vertical {
|
|
23923
|
-
height: auto;
|
|
23924
|
-
flex: none;
|
|
23925
|
-
--v-tabs-height: 48px;
|
|
23926
|
-
}
|
|
23927
|
-
|
|
23928
|
-
.v-tabs--align-tabs-title:not(.v-slide-group--has-affixes) .v-tab:first-child {
|
|
23929
|
-
margin-inline-start: 42px;
|
|
23930
|
-
}
|
|
23931
|
-
|
|
23932
|
-
.v-tabs--fixed-tabs .v-slide-group__content > *:last-child,
|
|
23933
|
-
.v-tabs--align-tabs-center .v-slide-group__content > *:last-child {
|
|
23934
|
-
margin-inline-end: auto;
|
|
23935
|
-
}
|
|
23936
|
-
.v-tabs--fixed-tabs .v-slide-group__content > *:first-child,
|
|
23937
|
-
.v-tabs--align-tabs-center .v-slide-group__content > *:first-child {
|
|
23938
|
-
margin-inline-start: auto;
|
|
23939
|
-
}
|
|
23940
|
-
|
|
23941
|
-
.v-tabs--grow {
|
|
23942
|
-
flex-grow: 1;
|
|
23943
|
-
}
|
|
23944
|
-
.v-tabs--grow .v-tab {
|
|
23945
|
-
flex: 1 0 auto;
|
|
23946
|
-
max-width: none;
|
|
23947
|
-
}
|
|
23948
|
-
|
|
23949
|
-
.v-tabs--align-tabs-end .v-tab:first-child {
|
|
23950
|
-
margin-inline-start: auto;
|
|
23951
|
-
}
|
|
23952
|
-
.v-tabs--align-tabs-end .v-tab:last-child {
|
|
23953
|
-
margin-inline-end: 0;
|
|
23954
|
-
}
|
|
23955
|
-
|
|
23956
|
-
@media (max-width: 1279.98px) {
|
|
23957
|
-
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
|
|
23958
|
-
margin-inline-start: 52px;
|
|
23959
|
-
}
|
|
23960
|
-
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
|
|
23961
|
-
margin-inline-end: 52px;
|
|
23962
|
-
}
|
|
23963
|
-
}.v-tab.v-tab.v-btn {
|
|
23964
|
-
height: var(--v-tabs-height);
|
|
23965
|
-
border-radius: 0;
|
|
23966
|
-
min-width: 90px;
|
|
23967
|
-
}
|
|
23968
|
-
.v-slide-group--horizontal .v-tab {
|
|
23969
|
-
max-width: 360px;
|
|
23970
|
-
}
|
|
23971
|
-
.v-slide-group--vertical .v-tab {
|
|
23972
|
-
justify-content: start;
|
|
23973
|
-
}
|
|
23974
|
-
|
|
23975
|
-
.v-tab__slider {
|
|
23976
|
-
position: absolute;
|
|
23977
|
-
bottom: 0;
|
|
23978
|
-
left: 0;
|
|
23979
|
-
height: 2px;
|
|
23980
|
-
width: 100%;
|
|
23981
|
-
background: currentColor;
|
|
23982
|
-
pointer-events: none;
|
|
23983
|
-
opacity: 0;
|
|
23984
|
-
}
|
|
23985
|
-
.v-tab--selected .v-tab__slider {
|
|
23986
|
-
opacity: 1;
|
|
23987
|
-
}
|
|
23988
|
-
.v-slide-group--vertical .v-tab__slider {
|
|
23989
|
-
top: 0;
|
|
23990
|
-
height: 100%;
|
|
23991
|
-
width: 2px;
|
|
23992
|
-
}.v-switch .v-label {
|
|
23993
|
-
padding-inline-start: 10px;
|
|
23994
|
-
}
|
|
23995
|
-
.v-switch .v-switch__thumb {
|
|
23996
|
-
background-color: rgb(var(--v-theme-surface-bright));
|
|
23997
|
-
color: rgb(var(--v-theme-on-surface-bright));
|
|
23998
|
-
}
|
|
23999
|
-
|
|
24000
|
-
.v-switch__loader {
|
|
24001
|
-
display: flex;
|
|
24002
|
-
}
|
|
24003
|
-
.v-switch__loader .v-progress-circular {
|
|
24004
|
-
color: rgb(var(--v-theme-surface));
|
|
24005
|
-
}
|
|
24006
|
-
|
|
24007
|
-
.v-switch__track,
|
|
24008
|
-
.v-switch__thumb {
|
|
24009
|
-
transition: none;
|
|
24010
|
-
}
|
|
24011
|
-
.v-selection-control--error:not(.v-selection-control--disabled) .v-switch__track,
|
|
24012
|
-
.v-selection-control--error:not(.v-selection-control--disabled) .v-switch__thumb {
|
|
24013
|
-
background-color: rgb(var(--v-theme-error));
|
|
24014
|
-
color: rgb(var(--v-theme-on-error));
|
|
24015
|
-
}
|
|
24016
|
-
|
|
24017
|
-
.v-switch__track-true {
|
|
24018
|
-
margin-inline-end: auto;
|
|
24019
|
-
}
|
|
24020
|
-
.v-selection-control:not(.v-selection-control--dirty) .v-switch__track-true {
|
|
24021
|
-
opacity: 0;
|
|
24022
|
-
}
|
|
24023
|
-
|
|
24024
|
-
.v-switch__track-false {
|
|
24025
|
-
margin-inline-start: auto;
|
|
24026
|
-
}
|
|
24027
|
-
.v-selection-control--dirty .v-switch__track-false {
|
|
24028
|
-
opacity: 0;
|
|
24029
|
-
}
|
|
24030
|
-
|
|
24031
|
-
.v-switch__track {
|
|
24032
|
-
display: inline-flex;
|
|
24033
|
-
align-items: center;
|
|
24034
|
-
font-size: 0.5rem;
|
|
24035
|
-
padding: 0 5px;
|
|
24036
|
-
background-color: rgb(var(--v-theme-surface-variant));
|
|
24037
|
-
border-radius: 9999px;
|
|
24038
|
-
height: 14px;
|
|
24039
|
-
opacity: 0.6;
|
|
24040
|
-
min-width: 36px;
|
|
24041
|
-
cursor: pointer;
|
|
24042
|
-
transition: 0.2s background-color cubic-bezier(0.4, 0, 0.2, 1);
|
|
24043
|
-
}
|
|
24044
|
-
.v-switch--inset .v-switch__track {
|
|
24045
|
-
border-radius: 9999px;
|
|
24046
|
-
font-size: 0.75rem;
|
|
24047
|
-
height: 32px;
|
|
24048
|
-
min-width: 52px;
|
|
24049
|
-
}
|
|
24050
|
-
|
|
24051
|
-
.v-switch__thumb {
|
|
24052
|
-
align-items: center;
|
|
24053
|
-
border-radius: 50%;
|
|
24054
|
-
display: flex;
|
|
24055
|
-
font-size: 0.75rem;
|
|
24056
|
-
height: 20px;
|
|
24057
|
-
justify-content: center;
|
|
24058
|
-
width: 20px;
|
|
24059
|
-
pointer-events: none;
|
|
24060
|
-
transition: 0.15s 0.05s transform cubic-bezier(0, 0, 0.2, 1), 0.2s color cubic-bezier(0.4, 0, 0.2, 1), 0.2s background-color cubic-bezier(0.4, 0, 0.2, 1);
|
|
24061
|
-
position: relative;
|
|
24062
|
-
overflow: hidden;
|
|
24063
|
-
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));
|
|
24064
|
-
}
|
|
24065
|
-
.v-switch--inset .v-switch__thumb {
|
|
24066
|
-
height: 24px;
|
|
24067
|
-
width: 24px;
|
|
24068
|
-
transform: scale(0.6666666667);
|
|
24069
|
-
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));
|
|
24070
|
-
}
|
|
24071
|
-
.v-switch--inset .v-switch__thumb--filled {
|
|
24072
|
-
transform: none;
|
|
24042
|
+
--v-tabs-height: 60px;
|
|
24073
24043
|
}
|
|
24074
|
-
|
|
24075
|
-
|
|
24076
|
-
|
|
24044
|
+
|
|
24045
|
+
.v-tabs.v-slide-group--vertical {
|
|
24046
|
+
height: auto;
|
|
24047
|
+
flex: none;
|
|
24048
|
+
--v-tabs-height: 48px;
|
|
24077
24049
|
}
|
|
24078
24050
|
|
|
24079
|
-
.v-
|
|
24080
|
-
|
|
24051
|
+
.v-tabs--align-tabs-title:not(.v-slide-group--has-affixes) .v-tab:first-child {
|
|
24052
|
+
margin-inline-start: 42px;
|
|
24081
24053
|
}
|
|
24082
|
-
|
|
24083
|
-
|
|
24054
|
+
|
|
24055
|
+
.v-tabs--fixed-tabs .v-slide-group__content > *:last-child,
|
|
24056
|
+
.v-tabs--align-tabs-center .v-slide-group__content > *:last-child {
|
|
24057
|
+
margin-inline-end: auto;
|
|
24084
24058
|
}
|
|
24085
|
-
.v-
|
|
24086
|
-
|
|
24087
|
-
|
|
24088
|
-
transform: translateX(-10px);
|
|
24089
|
-
position: absolute;
|
|
24059
|
+
.v-tabs--fixed-tabs .v-slide-group__content > *:first-child,
|
|
24060
|
+
.v-tabs--align-tabs-center .v-slide-group__content > *:first-child {
|
|
24061
|
+
margin-inline-start: auto;
|
|
24090
24062
|
}
|
|
24091
|
-
|
|
24092
|
-
|
|
24063
|
+
|
|
24064
|
+
.v-tabs--grow {
|
|
24065
|
+
flex-grow: 1;
|
|
24093
24066
|
}
|
|
24094
|
-
.v-
|
|
24095
|
-
|
|
24067
|
+
.v-tabs--grow .v-tab {
|
|
24068
|
+
flex: 1 0 auto;
|
|
24069
|
+
max-width: none;
|
|
24096
24070
|
}
|
|
24097
|
-
|
|
24098
|
-
|
|
24071
|
+
|
|
24072
|
+
.v-tabs--align-tabs-end .v-tab:first-child {
|
|
24073
|
+
margin-inline-start: auto;
|
|
24099
24074
|
}
|
|
24100
|
-
.v-
|
|
24101
|
-
|
|
24102
|
-
box-shadow: none;
|
|
24075
|
+
.v-tabs--align-tabs-end .v-tab:last-child {
|
|
24076
|
+
margin-inline-end: 0;
|
|
24103
24077
|
}
|
|
24104
|
-
|
|
24105
|
-
|
|
24106
|
-
|
|
24107
|
-
|
|
24078
|
+
|
|
24079
|
+
@media (max-width: 1279.98px) {
|
|
24080
|
+
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
|
|
24081
|
+
margin-inline-start: 52px;
|
|
24082
|
+
}
|
|
24083
|
+
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
|
|
24084
|
+
margin-inline-end: 52px;
|
|
24085
|
+
}
|
|
24086
|
+
}.v-tab.v-tab.v-btn {
|
|
24087
|
+
height: var(--v-tabs-height);
|
|
24088
|
+
border-radius: 0;
|
|
24089
|
+
min-width: 90px;
|
|
24108
24090
|
}
|
|
24109
|
-
.v-
|
|
24110
|
-
|
|
24091
|
+
.v-slide-group--horizontal .v-tab {
|
|
24092
|
+
max-width: 360px;
|
|
24111
24093
|
}
|
|
24112
|
-
.v-
|
|
24113
|
-
|
|
24114
|
-
outline: none;
|
|
24115
|
-
-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));
|
|
24116
|
-
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));
|
|
24094
|
+
.v-slide-group--vertical .v-tab {
|
|
24095
|
+
justify-content: start;
|
|
24117
24096
|
}
|
|
24118
|
-
|
|
24119
|
-
|
|
24097
|
+
|
|
24098
|
+
.v-tab__slider {
|
|
24120
24099
|
position: absolute;
|
|
24121
|
-
|
|
24100
|
+
bottom: 0;
|
|
24122
24101
|
left: 0;
|
|
24123
|
-
height:
|
|
24124
|
-
|
|
24102
|
+
height: 2px;
|
|
24103
|
+
width: 100%;
|
|
24104
|
+
background: currentColor;
|
|
24125
24105
|
pointer-events: none;
|
|
24126
|
-
}
|
|
24127
|
-
.v-textarea--no-resize .v-field__input {
|
|
24128
|
-
resize: none;
|
|
24129
|
-
}
|
|
24130
|
-
.v-textarea .v-field--no-label textarea,
|
|
24131
|
-
.v-textarea .v-field--active textarea {
|
|
24132
|
-
opacity: 1;
|
|
24133
|
-
}
|
|
24134
|
-
.v-textarea textarea {
|
|
24135
24106
|
opacity: 0;
|
|
24136
|
-
flex: 1;
|
|
24137
|
-
min-width: 0;
|
|
24138
|
-
transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
|
24139
24107
|
}
|
|
24140
|
-
.v-
|
|
24141
|
-
|
|
24108
|
+
.v-tab--selected .v-tab__slider {
|
|
24109
|
+
opacity: 1;
|
|
24142
24110
|
}
|
|
24143
|
-
.v-
|
|
24144
|
-
|
|
24111
|
+
.v-slide-group--vertical .v-tab__slider {
|
|
24112
|
+
top: 0;
|
|
24113
|
+
height: 100%;
|
|
24114
|
+
width: 2px;
|
|
24145
24115
|
}/* region BLOCK */
|
|
24146
24116
|
.v-text-field input {
|
|
24147
24117
|
color: inherit;
|
|
@@ -24209,7 +24179,46 @@ html.v-overlay-scroll-blocked {
|
|
|
24209
24179
|
padding-inline-end: var(--v-field-padding-end);
|
|
24210
24180
|
}
|
|
24211
24181
|
|
|
24212
|
-
/* endregion */.v-
|
|
24182
|
+
/* endregion */.v-textarea .v-field {
|
|
24183
|
+
--v-textarea-control-height: var(--v-input-control-height);
|
|
24184
|
+
}
|
|
24185
|
+
.v-textarea .v-field__field {
|
|
24186
|
+
--v-input-control-height: var(--v-textarea-control-height);
|
|
24187
|
+
}
|
|
24188
|
+
.v-textarea .v-field__input {
|
|
24189
|
+
flex: 1 1 auto;
|
|
24190
|
+
outline: none;
|
|
24191
|
+
-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));
|
|
24192
|
+
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));
|
|
24193
|
+
}
|
|
24194
|
+
.v-textarea .v-field__input.v-textarea__sizer {
|
|
24195
|
+
visibility: hidden;
|
|
24196
|
+
position: absolute;
|
|
24197
|
+
top: 0;
|
|
24198
|
+
left: 0;
|
|
24199
|
+
height: 0 !important;
|
|
24200
|
+
min-height: 0 !important;
|
|
24201
|
+
pointer-events: none;
|
|
24202
|
+
}
|
|
24203
|
+
.v-textarea--no-resize .v-field__input {
|
|
24204
|
+
resize: none;
|
|
24205
|
+
}
|
|
24206
|
+
.v-textarea .v-field--no-label textarea,
|
|
24207
|
+
.v-textarea .v-field--active textarea {
|
|
24208
|
+
opacity: 1;
|
|
24209
|
+
}
|
|
24210
|
+
.v-textarea textarea {
|
|
24211
|
+
opacity: 0;
|
|
24212
|
+
flex: 1;
|
|
24213
|
+
min-width: 0;
|
|
24214
|
+
transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
|
24215
|
+
}
|
|
24216
|
+
.v-textarea textarea:focus, .v-textarea textarea:active {
|
|
24217
|
+
outline: none;
|
|
24218
|
+
}
|
|
24219
|
+
.v-textarea textarea:invalid {
|
|
24220
|
+
box-shadow: none;
|
|
24221
|
+
}.v-table {
|
|
24213
24222
|
background: rgb(var(--v-theme-surface));
|
|
24214
24223
|
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
24215
24224
|
font-size: 0.875rem;
|
|
@@ -24322,34 +24331,161 @@ html.v-overlay-scroll-blocked {
|
|
|
24322
24331
|
.v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:first-child {
|
|
24323
24332
|
border-bottom-left-radius: 0;
|
|
24324
24333
|
}
|
|
24325
|
-
.v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:last-child {
|
|
24326
|
-
border-bottom-right-radius: 0;
|
|
24334
|
+
.v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:last-child {
|
|
24335
|
+
border-bottom-right-radius: 0;
|
|
24336
|
+
}
|
|
24337
|
+
|
|
24338
|
+
.v-table--fixed-height > .v-table__wrapper {
|
|
24339
|
+
overflow-y: auto;
|
|
24340
|
+
}
|
|
24341
|
+
|
|
24342
|
+
.v-table--fixed-header > .v-table__wrapper > table > thead {
|
|
24343
|
+
position: sticky;
|
|
24344
|
+
top: 0;
|
|
24345
|
+
z-index: 2;
|
|
24346
|
+
}
|
|
24347
|
+
.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
|
|
24348
|
+
border-bottom: 0px !important;
|
|
24349
|
+
}
|
|
24350
|
+
|
|
24351
|
+
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr {
|
|
24352
|
+
position: sticky;
|
|
24353
|
+
bottom: 0;
|
|
24354
|
+
z-index: 1;
|
|
24355
|
+
}
|
|
24356
|
+
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
|
|
24357
|
+
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
|
|
24358
|
+
border-top: 0px !important;
|
|
24359
|
+
}.v-theme-provider {
|
|
24360
|
+
background: rgb(var(--v-theme-background));
|
|
24361
|
+
color: rgb(var(--v-theme-on-background));
|
|
24362
|
+
}.v-toolbar {
|
|
24363
|
+
align-items: flex-start;
|
|
24364
|
+
display: flex;
|
|
24365
|
+
flex: none;
|
|
24366
|
+
flex-direction: column;
|
|
24367
|
+
justify-content: space-between;
|
|
24368
|
+
max-width: 100%;
|
|
24369
|
+
overflow: hidden;
|
|
24370
|
+
position: relative;
|
|
24371
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
24372
|
+
transition-property: height, width, transform, max-width, left, right, top, bottom, box-shadow;
|
|
24373
|
+
width: 100%;
|
|
24374
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
24375
|
+
border-style: solid;
|
|
24376
|
+
border-width: 0;
|
|
24377
|
+
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));
|
|
24378
|
+
border-radius: 0;
|
|
24379
|
+
background: rgb(var(--v-theme-surface-light));
|
|
24380
|
+
color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
|
|
24381
|
+
}
|
|
24382
|
+
.v-toolbar--border {
|
|
24383
|
+
border-width: thin;
|
|
24384
|
+
box-shadow: none;
|
|
24385
|
+
}
|
|
24386
|
+
.v-toolbar--absolute {
|
|
24387
|
+
position: absolute;
|
|
24388
|
+
}
|
|
24389
|
+
.v-toolbar--collapse {
|
|
24390
|
+
max-width: 112px;
|
|
24391
|
+
overflow: hidden;
|
|
24392
|
+
border-end-end-radius: 24px;
|
|
24393
|
+
}
|
|
24394
|
+
.v-toolbar--collapse .v-toolbar-title {
|
|
24395
|
+
display: none;
|
|
24396
|
+
}
|
|
24397
|
+
.v-toolbar--flat {
|
|
24398
|
+
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));
|
|
24399
|
+
}
|
|
24400
|
+
.v-toolbar--floating {
|
|
24401
|
+
display: inline-flex;
|
|
24402
|
+
}
|
|
24403
|
+
.v-toolbar--rounded {
|
|
24404
|
+
border-radius: 4px;
|
|
24405
|
+
}
|
|
24406
|
+
|
|
24407
|
+
.v-toolbar__content,
|
|
24408
|
+
.v-toolbar__extension {
|
|
24409
|
+
align-items: center;
|
|
24410
|
+
display: flex;
|
|
24411
|
+
flex: 0 0 auto;
|
|
24412
|
+
position: relative;
|
|
24413
|
+
transition: inherit;
|
|
24414
|
+
width: 100%;
|
|
24415
|
+
}
|
|
24416
|
+
|
|
24417
|
+
.v-toolbar__content > .v-btn:first-child {
|
|
24418
|
+
margin-inline-start: 10px;
|
|
24419
|
+
}
|
|
24420
|
+
.v-toolbar__content > .v-btn:last-child {
|
|
24421
|
+
margin-inline-end: 10px;
|
|
24422
|
+
}
|
|
24423
|
+
.v-toolbar__content > .v-toolbar-title {
|
|
24424
|
+
margin-inline-start: 16px;
|
|
24425
|
+
}
|
|
24426
|
+
.v-toolbar--density-prominent .v-toolbar__content {
|
|
24427
|
+
align-items: flex-start;
|
|
24428
|
+
}
|
|
24429
|
+
|
|
24430
|
+
.v-toolbar__image {
|
|
24431
|
+
position: absolute;
|
|
24432
|
+
top: 0;
|
|
24433
|
+
left: 0;
|
|
24434
|
+
width: 100%;
|
|
24435
|
+
height: 100%;
|
|
24436
|
+
display: flex;
|
|
24437
|
+
opacity: var(--v-toolbar-image-opacity, 1);
|
|
24438
|
+
transition-property: opacity;
|
|
24439
|
+
}
|
|
24440
|
+
|
|
24441
|
+
.v-toolbar__prepend,
|
|
24442
|
+
.v-toolbar__append {
|
|
24443
|
+
align-items: center;
|
|
24444
|
+
align-self: stretch;
|
|
24445
|
+
display: flex;
|
|
24446
|
+
}
|
|
24447
|
+
|
|
24448
|
+
.v-toolbar__prepend {
|
|
24449
|
+
margin-inline: 10px auto;
|
|
24327
24450
|
}
|
|
24328
24451
|
|
|
24329
|
-
.v-
|
|
24330
|
-
|
|
24452
|
+
.v-toolbar__append {
|
|
24453
|
+
margin-inline: auto 10px;
|
|
24331
24454
|
}
|
|
24332
24455
|
|
|
24333
|
-
.v-
|
|
24334
|
-
|
|
24335
|
-
|
|
24336
|
-
|
|
24456
|
+
.v-toolbar-title {
|
|
24457
|
+
flex: 1 1;
|
|
24458
|
+
font-size: 1.25rem;
|
|
24459
|
+
min-width: 0;
|
|
24460
|
+
font-size: 1.25rem;
|
|
24461
|
+
font-weight: 400;
|
|
24462
|
+
letter-spacing: 0;
|
|
24463
|
+
line-height: 1.75rem;
|
|
24464
|
+
text-transform: none;
|
|
24337
24465
|
}
|
|
24338
|
-
.v-
|
|
24339
|
-
|
|
24466
|
+
.v-toolbar--density-prominent .v-toolbar-title {
|
|
24467
|
+
align-self: flex-end;
|
|
24468
|
+
padding-bottom: 6px;
|
|
24469
|
+
font-size: 1.5rem;
|
|
24470
|
+
font-weight: 400;
|
|
24471
|
+
letter-spacing: 0;
|
|
24472
|
+
line-height: 2.25rem;
|
|
24473
|
+
text-transform: none;
|
|
24340
24474
|
}
|
|
24341
24475
|
|
|
24342
|
-
.v-
|
|
24343
|
-
|
|
24344
|
-
|
|
24345
|
-
|
|
24476
|
+
.v-toolbar-title__placeholder {
|
|
24477
|
+
overflow: hidden;
|
|
24478
|
+
text-overflow: ellipsis;
|
|
24479
|
+
white-space: nowrap;
|
|
24346
24480
|
}
|
|
24347
|
-
|
|
24348
|
-
.v-
|
|
24349
|
-
|
|
24350
|
-
|
|
24351
|
-
|
|
24352
|
-
|
|
24481
|
+
|
|
24482
|
+
.v-toolbar-items {
|
|
24483
|
+
display: flex;
|
|
24484
|
+
height: inherit;
|
|
24485
|
+
align-self: stretch;
|
|
24486
|
+
}
|
|
24487
|
+
.v-toolbar-items > .v-btn {
|
|
24488
|
+
border-radius: 0;
|
|
24353
24489
|
}.v-timeline .v-timeline-divider__dot {
|
|
24354
24490
|
background: rgb(var(--v-theme-surface-light));
|
|
24355
24491
|
}
|
|
@@ -24766,142 +24902,6 @@ html.v-overlay-scroll-blocked {
|
|
|
24766
24902
|
|
|
24767
24903
|
.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 {
|
|
24768
24904
|
padding-inline-end: 0;
|
|
24769
|
-
}.v-toolbar {
|
|
24770
|
-
align-items: flex-start;
|
|
24771
|
-
display: flex;
|
|
24772
|
-
flex: none;
|
|
24773
|
-
flex-direction: column;
|
|
24774
|
-
justify-content: space-between;
|
|
24775
|
-
max-width: 100%;
|
|
24776
|
-
overflow: hidden;
|
|
24777
|
-
position: relative;
|
|
24778
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
24779
|
-
transition-property: height, width, transform, max-width, left, right, top, bottom, box-shadow;
|
|
24780
|
-
width: 100%;
|
|
24781
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
24782
|
-
border-style: solid;
|
|
24783
|
-
border-width: 0;
|
|
24784
|
-
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));
|
|
24785
|
-
border-radius: 0;
|
|
24786
|
-
background: rgb(var(--v-theme-surface-light));
|
|
24787
|
-
color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
|
|
24788
|
-
}
|
|
24789
|
-
.v-toolbar--border {
|
|
24790
|
-
border-width: thin;
|
|
24791
|
-
box-shadow: none;
|
|
24792
|
-
}
|
|
24793
|
-
.v-toolbar--absolute {
|
|
24794
|
-
position: absolute;
|
|
24795
|
-
}
|
|
24796
|
-
.v-toolbar--collapse {
|
|
24797
|
-
max-width: 112px;
|
|
24798
|
-
overflow: hidden;
|
|
24799
|
-
border-end-end-radius: 24px;
|
|
24800
|
-
}
|
|
24801
|
-
.v-toolbar--collapse .v-toolbar-title {
|
|
24802
|
-
display: none;
|
|
24803
|
-
}
|
|
24804
|
-
.v-toolbar--flat {
|
|
24805
|
-
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));
|
|
24806
|
-
}
|
|
24807
|
-
.v-toolbar--floating {
|
|
24808
|
-
display: inline-flex;
|
|
24809
|
-
}
|
|
24810
|
-
.v-toolbar--rounded {
|
|
24811
|
-
border-radius: 4px;
|
|
24812
|
-
}
|
|
24813
|
-
|
|
24814
|
-
.v-toolbar__content,
|
|
24815
|
-
.v-toolbar__extension {
|
|
24816
|
-
align-items: center;
|
|
24817
|
-
display: flex;
|
|
24818
|
-
flex: 0 0 auto;
|
|
24819
|
-
position: relative;
|
|
24820
|
-
transition: inherit;
|
|
24821
|
-
width: 100%;
|
|
24822
|
-
}
|
|
24823
|
-
|
|
24824
|
-
.v-toolbar__content > .v-btn:first-child {
|
|
24825
|
-
margin-inline-start: 10px;
|
|
24826
|
-
}
|
|
24827
|
-
.v-toolbar__content > .v-btn:last-child {
|
|
24828
|
-
margin-inline-end: 10px;
|
|
24829
|
-
}
|
|
24830
|
-
.v-toolbar__content > .v-toolbar-title {
|
|
24831
|
-
margin-inline-start: 16px;
|
|
24832
|
-
}
|
|
24833
|
-
.v-toolbar--density-prominent .v-toolbar__content {
|
|
24834
|
-
align-items: flex-start;
|
|
24835
|
-
}
|
|
24836
|
-
|
|
24837
|
-
.v-toolbar__image {
|
|
24838
|
-
position: absolute;
|
|
24839
|
-
top: 0;
|
|
24840
|
-
left: 0;
|
|
24841
|
-
width: 100%;
|
|
24842
|
-
height: 100%;
|
|
24843
|
-
display: flex;
|
|
24844
|
-
opacity: var(--v-toolbar-image-opacity, 1);
|
|
24845
|
-
transition-property: opacity;
|
|
24846
|
-
}
|
|
24847
|
-
|
|
24848
|
-
.v-toolbar__prepend,
|
|
24849
|
-
.v-toolbar__append {
|
|
24850
|
-
align-items: center;
|
|
24851
|
-
align-self: stretch;
|
|
24852
|
-
display: flex;
|
|
24853
|
-
}
|
|
24854
|
-
|
|
24855
|
-
.v-toolbar__prepend {
|
|
24856
|
-
margin-inline: 10px auto;
|
|
24857
|
-
}
|
|
24858
|
-
|
|
24859
|
-
.v-toolbar__append {
|
|
24860
|
-
margin-inline: auto 10px;
|
|
24861
|
-
}
|
|
24862
|
-
|
|
24863
|
-
.v-toolbar-title {
|
|
24864
|
-
flex: 1 1;
|
|
24865
|
-
font-size: 1.25rem;
|
|
24866
|
-
min-width: 0;
|
|
24867
|
-
font-size: 1.25rem;
|
|
24868
|
-
font-weight: 400;
|
|
24869
|
-
letter-spacing: 0;
|
|
24870
|
-
line-height: 1.75rem;
|
|
24871
|
-
text-transform: none;
|
|
24872
|
-
}
|
|
24873
|
-
.v-toolbar--density-prominent .v-toolbar-title {
|
|
24874
|
-
align-self: flex-end;
|
|
24875
|
-
padding-bottom: 6px;
|
|
24876
|
-
font-size: 1.5rem;
|
|
24877
|
-
font-weight: 400;
|
|
24878
|
-
letter-spacing: 0;
|
|
24879
|
-
line-height: 2.25rem;
|
|
24880
|
-
text-transform: none;
|
|
24881
|
-
}
|
|
24882
|
-
|
|
24883
|
-
.v-toolbar-title__placeholder {
|
|
24884
|
-
overflow: hidden;
|
|
24885
|
-
text-overflow: ellipsis;
|
|
24886
|
-
white-space: nowrap;
|
|
24887
|
-
}
|
|
24888
|
-
|
|
24889
|
-
.v-toolbar-items {
|
|
24890
|
-
display: flex;
|
|
24891
|
-
height: inherit;
|
|
24892
|
-
align-self: stretch;
|
|
24893
|
-
}
|
|
24894
|
-
.v-toolbar-items > .v-btn {
|
|
24895
|
-
border-radius: 0;
|
|
24896
|
-
}.v-virtual-scroll {
|
|
24897
|
-
display: block;
|
|
24898
|
-
flex: 1 1 auto;
|
|
24899
|
-
max-width: 100%;
|
|
24900
|
-
overflow: auto;
|
|
24901
|
-
position: relative;
|
|
24902
|
-
}
|
|
24903
|
-
.v-virtual-scroll__container {
|
|
24904
|
-
display: block;
|
|
24905
24905
|
}.v-tooltip > .v-overlay__content {
|
|
24906
24906
|
background: rgb(var(--v-theme-surface-variant));
|
|
24907
24907
|
color: rgb(var(--v-theme-on-surface-variant));
|
|
@@ -24924,6 +24924,15 @@ html.v-overlay-scroll-blocked {
|
|
|
24924
24924
|
.v-tooltip > .v-overlay__content[class*=leave-active] {
|
|
24925
24925
|
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
|
24926
24926
|
transition-duration: 75ms;
|
|
24927
|
+
}.v-virtual-scroll {
|
|
24928
|
+
display: block;
|
|
24929
|
+
flex: 1 1 auto;
|
|
24930
|
+
max-width: 100%;
|
|
24931
|
+
overflow: auto;
|
|
24932
|
+
position: relative;
|
|
24933
|
+
}
|
|
24934
|
+
.v-virtual-scroll__container {
|
|
24935
|
+
display: block;
|
|
24927
24936
|
}.v-window {
|
|
24928
24937
|
overflow: hidden;
|
|
24929
24938
|
}
|
|
@@ -24993,40 +25002,6 @@ html.v-overlay-scroll-blocked {
|
|
|
24993
25002
|
}
|
|
24994
25003
|
.v-window-y-reverse-transition-leave-to {
|
|
24995
25004
|
transform: translateY(100%);
|
|
24996
|
-
}.v-app-bar {
|
|
24997
|
-
display: flex;
|
|
24998
|
-
}
|
|
24999
|
-
.v-app-bar.v-toolbar {
|
|
25000
|
-
background: rgb(var(--v-theme-surface));
|
|
25001
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
25002
|
-
}
|
|
25003
|
-
.v-app-bar.v-toolbar:not(.v-toolbar--flat) {
|
|
25004
|
-
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));
|
|
25005
|
-
}
|
|
25006
|
-
.v-app-bar:not(.v-toolbar--absolute) {
|
|
25007
|
-
padding-inline-end: var(--v-scrollbar-offset);
|
|
25008
|
-
}.v-color-picker-canvas {
|
|
25009
|
-
display: flex;
|
|
25010
|
-
position: relative;
|
|
25011
|
-
overflow: hidden;
|
|
25012
|
-
contain: content;
|
|
25013
|
-
touch-action: none;
|
|
25014
|
-
}
|
|
25015
|
-
.v-color-picker-canvas__dot {
|
|
25016
|
-
position: absolute;
|
|
25017
|
-
top: 0;
|
|
25018
|
-
left: 0;
|
|
25019
|
-
width: 15px;
|
|
25020
|
-
height: 15px;
|
|
25021
|
-
background: transparent;
|
|
25022
|
-
border-radius: 50%;
|
|
25023
|
-
box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
|
|
25024
|
-
}
|
|
25025
|
-
.v-color-picker-canvas__dot--disabled {
|
|
25026
|
-
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);
|
|
25027
|
-
}
|
|
25028
|
-
.v-color-picker-canvas:hover .v-color-picker-canvas__dot {
|
|
25029
|
-
will-change: transform;
|
|
25030
25005
|
}.v-color-picker-edit {
|
|
25031
25006
|
display: flex;
|
|
25032
25007
|
margin-top: 24px;
|
|
@@ -25055,6 +25030,28 @@ html.v-overlay-scroll-blocked {
|
|
|
25055
25030
|
}
|
|
25056
25031
|
.v-color-picker-edit__input span {
|
|
25057
25032
|
font-size: 0.75rem;
|
|
25033
|
+
}.v-color-picker-canvas {
|
|
25034
|
+
display: flex;
|
|
25035
|
+
position: relative;
|
|
25036
|
+
overflow: hidden;
|
|
25037
|
+
contain: content;
|
|
25038
|
+
touch-action: none;
|
|
25039
|
+
}
|
|
25040
|
+
.v-color-picker-canvas__dot {
|
|
25041
|
+
position: absolute;
|
|
25042
|
+
top: 0;
|
|
25043
|
+
left: 0;
|
|
25044
|
+
width: 15px;
|
|
25045
|
+
height: 15px;
|
|
25046
|
+
background: transparent;
|
|
25047
|
+
border-radius: 50%;
|
|
25048
|
+
box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
|
|
25049
|
+
}
|
|
25050
|
+
.v-color-picker-canvas__dot--disabled {
|
|
25051
|
+
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);
|
|
25052
|
+
}
|
|
25053
|
+
.v-color-picker-canvas:hover .v-color-picker-canvas__dot {
|
|
25054
|
+
will-change: transform;
|
|
25058
25055
|
}.v-color-picker-preview__alpha .v-slider-track__background {
|
|
25059
25056
|
background-color: transparent !important;
|
|
25060
25057
|
}
|