vuetify 2.5.13 → 2.6.1
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 +188 -0
- package/dist/json/tags.json +86 -20
- package/dist/json/web-types.json +697 -139
- package/dist/vuetify.css +136 -5
- package/dist/vuetify.css.map +1 -1
- package/dist/vuetify.js +927 -304
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +2 -2
- package/es5/components/VAutocomplete/VAutocomplete.js +1 -0
- package/es5/components/VAutocomplete/VAutocomplete.js.map +1 -1
- package/es5/components/VBanner/VBanner.js +3 -2
- package/es5/components/VBanner/VBanner.js.map +1 -1
- package/es5/components/VBottomSheet/VBottomSheet.js +1 -4
- package/es5/components/VBottomSheet/VBottomSheet.js.map +1 -1
- package/es5/components/VCalendar/VCalendar.js +2 -2
- package/es5/components/VCalendar/VCalendar.js.map +1 -1
- package/es5/components/VCalendar/VCalendarDaily.js +16 -8
- package/es5/components/VCalendar/VCalendarDaily.js.map +1 -1
- package/es5/components/VCalendar/VCalendarWeekly.js +14 -10
- package/es5/components/VCalendar/VCalendarWeekly.js.map +1 -1
- package/es5/components/VCalendar/mixins/calendar-with-events.js +19 -20
- package/es5/components/VCalendar/mixins/calendar-with-events.js.map +1 -1
- package/es5/components/VCalendar/mixins/mouse.js +13 -4
- package/es5/components/VCalendar/mixins/mouse.js.map +1 -1
- package/es5/components/VDataTable/MobileRow.js +2 -2
- package/es5/components/VDataTable/MobileRow.js.map +1 -1
- package/es5/components/VDataTable/Row.js +25 -9
- package/es5/components/VDataTable/Row.js.map +1 -1
- package/es5/components/VDataTable/VDataTableHeaderDesktop.js +1 -1
- package/es5/components/VDataTable/VDataTableHeaderDesktop.js.map +1 -1
- package/es5/components/VDatePicker/mixins/date-picker-table.js +13 -3
- package/es5/components/VDatePicker/mixins/date-picker-table.js.map +1 -1
- package/es5/components/VDialog/VDialog.js +4 -10
- package/es5/components/VDialog/VDialog.js.map +1 -1
- package/es5/components/VInput/VInput.js +3 -1
- package/es5/components/VInput/VInput.js.map +1 -1
- package/es5/components/VItemGroup/VItemGroup.js +8 -4
- package/es5/components/VItemGroup/VItemGroup.js.map +1 -1
- package/es5/components/VMenu/VMenu.js +1 -1
- package/es5/components/VMenu/VMenu.js.map +1 -1
- package/es5/components/VOtpInput/VOtpInput.js +375 -0
- package/es5/components/VOtpInput/VOtpInput.js.map +1 -0
- package/es5/components/VOtpInput/index.js +20 -0
- package/es5/components/VOtpInput/index.js.map +1 -0
- package/es5/components/VRadioGroup/VRadioGroup.js +1 -3
- package/es5/components/VRadioGroup/VRadioGroup.js.map +1 -1
- package/es5/components/VSlideGroup/VSlideGroup.js +8 -1
- package/es5/components/VSlideGroup/VSlideGroup.js.map +1 -1
- package/es5/components/VSnackbar/VSnackbar.js +4 -8
- package/es5/components/VSnackbar/VSnackbar.js.map +1 -1
- package/es5/components/VTabs/VTab.js +3 -2
- package/es5/components/VTabs/VTab.js.map +1 -1
- package/es5/components/VTextField/VTextField.js +6 -1
- package/es5/components/VTextField/VTextField.js.map +1 -1
- package/es5/components/VTooltip/VTooltip.js +0 -1
- package/es5/components/VTooltip/VTooltip.js.map +1 -1
- package/es5/components/VTreeview/VTreeview.js +2 -1
- package/es5/components/VTreeview/VTreeview.js.map +1 -1
- package/es5/components/VTreeview/VTreeviewNode.js +3 -1
- package/es5/components/VTreeview/VTreeviewNode.js.map +1 -1
- package/es5/components/index.js +13 -0
- package/es5/components/index.js.map +1 -1
- package/es5/directives/click-outside/index.js +3 -1
- package/es5/directives/click-outside/index.js.map +1 -1
- package/es5/directives/intersect/index.js +8 -5
- package/es5/directives/intersect/index.js.map +1 -1
- package/es5/directives/mutate/index.js +3 -2
- package/es5/directives/mutate/index.js.map +1 -1
- package/es5/directives/resize/index.js +3 -1
- package/es5/directives/resize/index.js.map +1 -1
- package/es5/directives/ripple/index.js +0 -7
- package/es5/directives/ripple/index.js.map +1 -1
- package/es5/directives/scroll/index.js.map +1 -1
- package/es5/framework.js +1 -1
- package/es5/locale/da.js +77 -0
- package/es5/locale/da.js.map +1 -0
- package/es5/locale/index.js +8 -0
- package/es5/locale/index.js.map +1 -1
- package/es5/locale/it.js +6 -6
- package/es5/locale/it.js.map +1 -1
- package/es5/mixins/intersectable/index.js +6 -0
- package/es5/mixins/intersectable/index.js.map +1 -1
- package/es5/mixins/routable/index.js +2 -5
- package/es5/mixins/routable/index.js.map +1 -1
- package/es5/util/helpers.js +13 -6
- package/es5/util/helpers.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.js +1 -0
- package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
- package/lib/components/VBanner/VBanner.js +3 -2
- package/lib/components/VBanner/VBanner.js.map +1 -1
- package/lib/components/VBottomSheet/VBottomSheet.js +1 -4
- package/lib/components/VBottomSheet/VBottomSheet.js.map +1 -1
- package/lib/components/VCalendar/VCalendar.js +2 -2
- package/lib/components/VCalendar/VCalendar.js.map +1 -1
- package/lib/components/VCalendar/VCalendarDaily.js +20 -8
- package/lib/components/VCalendar/VCalendarDaily.js.map +1 -1
- package/lib/components/VCalendar/VCalendarWeekly.js +10 -2
- package/lib/components/VCalendar/VCalendarWeekly.js.map +1 -1
- package/lib/components/VCalendar/mixins/calendar-with-events.js +6 -3
- package/lib/components/VCalendar/mixins/calendar-with-events.js.map +1 -1
- package/lib/components/VCalendar/mixins/mouse.js +9 -4
- package/lib/components/VCalendar/mixins/mouse.js.map +1 -1
- package/lib/components/VDataTable/MobileRow.js +2 -2
- package/lib/components/VDataTable/MobileRow.js.map +1 -1
- package/lib/components/VDataTable/Row.js +15 -8
- package/lib/components/VDataTable/Row.js.map +1 -1
- package/lib/components/VDataTable/VDataTableHeaderDesktop.js +1 -1
- package/lib/components/VDataTable/VDataTableHeaderDesktop.js.map +1 -1
- package/lib/components/VDatePicker/mixins/date-picker-table.js +12 -2
- package/lib/components/VDatePicker/mixins/date-picker-table.js.map +1 -1
- package/lib/components/VDialog/VDialog.js +4 -10
- package/lib/components/VDialog/VDialog.js.map +1 -1
- package/lib/components/VInput/VInput.js +2 -0
- package/lib/components/VInput/VInput.js.map +1 -1
- package/lib/components/VItemGroup/VItemGroup.js +7 -5
- package/lib/components/VItemGroup/VItemGroup.js.map +1 -1
- package/lib/components/VMenu/VMenu.js +1 -1
- package/lib/components/VMenu/VMenu.js.map +1 -1
- package/lib/components/VOtpInput/VOtpInput.js +342 -0
- package/lib/components/VOtpInput/VOtpInput.js.map +1 -0
- package/lib/components/VOtpInput/index.js +4 -0
- package/lib/components/VOtpInput/index.js.map +1 -0
- package/lib/components/VRadioGroup/VRadioGroup.js +2 -4
- package/lib/components/VRadioGroup/VRadioGroup.js.map +1 -1
- package/lib/components/VSlideGroup/VSlideGroup.js +9 -1
- package/lib/components/VSlideGroup/VSlideGroup.js.map +1 -1
- package/lib/components/VSnackbar/VSnackbar.js +4 -8
- package/lib/components/VSnackbar/VSnackbar.js.map +1 -1
- package/lib/components/VTabs/VTab.js +3 -2
- package/lib/components/VTabs/VTab.js.map +1 -1
- package/lib/components/VTextField/VTextField.js +8 -1
- package/lib/components/VTextField/VTextField.js.map +1 -1
- package/lib/components/VTooltip/VTooltip.js +0 -1
- package/lib/components/VTooltip/VTooltip.js.map +1 -1
- package/lib/components/VTreeview/VTreeview.js +2 -1
- package/lib/components/VTreeview/VTreeview.js.map +1 -1
- package/lib/components/VTreeview/VTreeviewNode.js +3 -1
- package/lib/components/VTreeview/VTreeviewNode.js.map +1 -1
- package/lib/components/index.js +1 -0
- package/lib/components/index.js.map +1 -1
- package/lib/directives/click-outside/index.js +3 -1
- package/lib/directives/click-outside/index.js.map +1 -1
- package/lib/directives/intersect/index.js +7 -5
- package/lib/directives/intersect/index.js.map +1 -1
- package/lib/directives/mutate/index.js +3 -2
- package/lib/directives/mutate/index.js.map +1 -1
- package/lib/directives/resize/index.js +3 -1
- package/lib/directives/resize/index.js.map +1 -1
- package/lib/directives/ripple/index.js +0 -7
- package/lib/directives/ripple/index.js.map +1 -1
- package/lib/directives/scroll/index.js.map +1 -1
- package/lib/framework.js +1 -1
- package/lib/locale/da.js +70 -0
- package/lib/locale/da.js.map +1 -0
- package/lib/locale/index.js +1 -0
- package/lib/locale/index.js.map +1 -1
- package/lib/locale/it.js +6 -6
- package/lib/locale/it.js.map +1 -1
- package/lib/mixins/intersectable/index.js +4 -0
- package/lib/mixins/intersectable/index.js.map +1 -1
- package/lib/mixins/routable/index.js +3 -5
- package/lib/mixins/routable/index.js.map +1 -1
- package/lib/util/helpers.js +13 -6
- package/lib/util/helpers.js.map +1 -1
- package/package.json +2 -2
- package/src/components/VAutocomplete/VAutocomplete.ts +2 -0
- package/src/components/VAutocomplete/__tests__/VAutocomplete3.spec.ts +16 -0
- package/src/components/VBanner/VBanner.ts +16 -10
- package/src/components/VBottomSheet/VBottomSheet.ts +1 -4
- package/src/components/VCalendar/VCalendar.ts +3 -2
- package/src/components/VCalendar/VCalendarCategory.sass +67 -0
- package/src/components/VCalendar/VCalendarDaily.ts +9 -8
- package/src/components/VCalendar/VCalendarWeekly.ts +4 -2
- package/src/components/VCalendar/_variables.scss +4 -0
- package/src/components/VCalendar/mixins/calendar-with-events.ts +4 -3
- package/src/components/VCalendar/mixins/mouse.ts +10 -4
- package/src/components/VDataTable/MobileRow.ts +2 -2
- package/src/components/VDataTable/Row.ts +23 -16
- package/src/components/VDataTable/VDataTableHeaderDesktop.ts +1 -1
- package/src/components/VDatePicker/__tests__/VDatePicker.date.spec.ts +16 -0
- package/src/components/VDatePicker/__tests__/VDatePicker.month.spec.ts +16 -0
- package/src/components/VDatePicker/mixins/date-picker-table.ts +24 -2
- package/src/components/VDialog/VDialog.ts +4 -10
- package/src/components/VInput/VInput.sass +8 -0
- package/src/components/VInput/VInput.ts +2 -0
- package/src/components/VItemGroup/VItemGroup.ts +5 -3
- package/src/components/VItemGroup/__tests__/VItemGroup.spec.ts +19 -2
- package/src/components/VMenu/VMenu.ts +1 -1
- package/src/components/VOtpInput/VOtpInput.sass +37 -0
- package/src/components/VOtpInput/VOtpInput.ts +322 -0
- package/src/components/VOtpInput/__tests__/VOtpInput.spec.ts +294 -0
- package/src/components/VOtpInput/_variables.scss +4 -0
- package/src/components/VOtpInput/index.ts +4 -0
- package/src/components/VRadioGroup/VRadioGroup.ts +0 -4
- package/src/components/VSlideGroup/VSlideGroup.ts +14 -1
- package/src/components/VSnackbar/VSnackbar.ts +3 -7
- package/src/components/VSnackbar/__tests__/VSnackbar.spec.ts +4 -1
- package/src/components/VStepper/VStepper.sass +4 -4
- package/src/components/VTabs/VTab.ts +10 -2
- package/src/components/VTextField/VTextField.ts +8 -3
- package/src/components/VTooltip/VTooltip.sass +4 -1
- package/src/components/VTooltip/VTooltip.ts +0 -1
- package/src/components/VTooltip/_variables.scss +1 -0
- package/src/components/VTreeview/VTreeview.ts +2 -1
- package/src/components/VTreeview/VTreeviewNode.ts +3 -1
- package/src/components/index.ts +1 -0
- package/src/directives/click-outside/index.ts +2 -2
- package/src/directives/intersect/index.ts +6 -5
- package/src/directives/mutate/index.ts +2 -3
- package/src/directives/resize/index.ts +2 -2
- package/src/directives/ripple/VRipple.sass +4 -1
- package/src/directives/ripple/index.ts +0 -7
- package/src/directives/scroll/index.ts +1 -1
- package/src/globals.d.ts +5 -5
- package/src/locale/da.ts +69 -0
- package/src/locale/index.ts +1 -0
- package/src/locale/it.ts +6 -6
- package/src/mixins/intersectable/index.ts +6 -0
- package/src/mixins/routable/index.ts +1 -4
- package/src/styles/settings/_variables.scss +4 -3
- package/src/util/__tests__/__snapshots__/helpers.spec.ts.snap +11 -0
- package/src/util/__tests__/helpers.spec.ts +17 -0
- package/src/util/helpers.ts +14 -7
- package/src/directives/ripple/_variables.scss +0 -6
package/dist/vuetify.css
CHANGED
|
@@ -18144,12 +18144,15 @@ html.overflow-y-hidden {
|
|
|
18144
18144
|
}
|
|
18145
18145
|
.v-ripple__animation--enter {
|
|
18146
18146
|
transition: none;
|
|
18147
|
+
opacity: 0;
|
|
18147
18148
|
}
|
|
18148
18149
|
.v-ripple__animation--in {
|
|
18149
18150
|
transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.1s cubic-bezier(0.4, 0, 0.2, 1);
|
|
18151
|
+
opacity: 0.25;
|
|
18150
18152
|
}
|
|
18151
18153
|
.v-ripple__animation--out {
|
|
18152
18154
|
transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
18155
|
+
opacity: 0;
|
|
18153
18156
|
}
|
|
18154
18157
|
.theme--light.v-icon {
|
|
18155
18158
|
color: rgba(0, 0, 0, 0.54);
|
|
@@ -20755,6 +20758,14 @@ html.overflow-y-hidden {
|
|
|
20755
20758
|
-webkit-animation: v-shake 0.6s cubic-bezier(0.25, 0.8, 0.5, 1);
|
|
20756
20759
|
animation: v-shake 0.6s cubic-bezier(0.25, 0.8, 0.5, 1);
|
|
20757
20760
|
}
|
|
20761
|
+
.v-input--hide-spin-buttons input::-webkit-outer-spin-button,
|
|
20762
|
+
.v-input--hide-spin-buttons input::-webkit-inner-spin-button {
|
|
20763
|
+
-webkit-appearance: none;
|
|
20764
|
+
margin: 0;
|
|
20765
|
+
}
|
|
20766
|
+
.v-input--hide-spin-buttons input[type=number] {
|
|
20767
|
+
-moz-appearance: textfield;
|
|
20768
|
+
}
|
|
20758
20769
|
.theme--light.v-label {
|
|
20759
20770
|
color: rgba(0, 0, 0, 0.6);
|
|
20760
20771
|
}
|
|
@@ -22432,17 +22443,95 @@ html.overflow-y-hidden {
|
|
|
22432
22443
|
border-right: #9e9e9e 1px solid;
|
|
22433
22444
|
}
|
|
22434
22445
|
|
|
22446
|
+
.v-calendar-category {
|
|
22447
|
+
overflow: auto;
|
|
22448
|
+
position: relative;
|
|
22449
|
+
}
|
|
22435
22450
|
.v-calendar-category .v-calendar-category__category {
|
|
22436
22451
|
text-align: center;
|
|
22437
22452
|
}
|
|
22453
|
+
.v-calendar-category .v-calendar-daily__day-container {
|
|
22454
|
+
width: -webkit-min-content;
|
|
22455
|
+
width: -moz-min-content;
|
|
22456
|
+
width: min-content;
|
|
22457
|
+
}
|
|
22438
22458
|
.v-calendar-category .v-calendar-daily__day-container .v-calendar-category__columns {
|
|
22439
22459
|
position: absolute;
|
|
22440
22460
|
height: 100%;
|
|
22441
22461
|
width: 100%;
|
|
22442
22462
|
top: 0;
|
|
22443
22463
|
}
|
|
22464
|
+
.v-calendar-category .v-calendar-daily__day-body {
|
|
22465
|
+
display: flex;
|
|
22466
|
+
flex: 1;
|
|
22467
|
+
width: 100%;
|
|
22468
|
+
height: 100%;
|
|
22469
|
+
}
|
|
22470
|
+
.v-calendar-category .v-calendar-daily__head {
|
|
22471
|
+
flex-direction: row;
|
|
22472
|
+
width: -webkit-min-content;
|
|
22473
|
+
width: -moz-min-content;
|
|
22474
|
+
width: min-content;
|
|
22475
|
+
min-width: 100%;
|
|
22476
|
+
position: -webkit-sticky;
|
|
22477
|
+
position: sticky;
|
|
22478
|
+
top: 0;
|
|
22479
|
+
background: white;
|
|
22480
|
+
z-index: 2;
|
|
22481
|
+
}
|
|
22482
|
+
.v-calendar-category .v-calendar-daily_head-day {
|
|
22483
|
+
width: auto;
|
|
22484
|
+
position: unset;
|
|
22485
|
+
}
|
|
22486
|
+
.v-calendar-category .v-calendar-daily__intervals-head {
|
|
22487
|
+
position: -webkit-sticky;
|
|
22488
|
+
position: sticky;
|
|
22489
|
+
left: 0;
|
|
22490
|
+
top: 0;
|
|
22491
|
+
background: white;
|
|
22492
|
+
z-index: 2;
|
|
22493
|
+
}
|
|
22494
|
+
.v-calendar-category .v-calendar-daily_head-weekday {
|
|
22495
|
+
position: -webkit-sticky;
|
|
22496
|
+
position: sticky;
|
|
22497
|
+
left: 50%;
|
|
22498
|
+
width: 50px;
|
|
22499
|
+
}
|
|
22500
|
+
.v-calendar-category .v-calendar-daily_head-day-label {
|
|
22501
|
+
width: 56px;
|
|
22502
|
+
position: -webkit-sticky;
|
|
22503
|
+
position: sticky;
|
|
22504
|
+
left: 50%;
|
|
22505
|
+
}
|
|
22506
|
+
.v-calendar-category .v-calendar-daily__day {
|
|
22507
|
+
min-width: 200px;
|
|
22508
|
+
}
|
|
22509
|
+
.v-calendar-category .v-calendar-daily__intervals-body {
|
|
22510
|
+
position: -webkit-sticky;
|
|
22511
|
+
position: sticky;
|
|
22512
|
+
left: 0;
|
|
22513
|
+
background: white;
|
|
22514
|
+
z-index: 1;
|
|
22515
|
+
}
|
|
22516
|
+
.v-calendar-category .v-calendar-daily__interval:last-of-type::after {
|
|
22517
|
+
display: none;
|
|
22518
|
+
}
|
|
22519
|
+
.v-calendar-category .v-calendar-daily__body {
|
|
22520
|
+
overflow: visible;
|
|
22521
|
+
}
|
|
22522
|
+
.v-calendar-category .v-calendar-daily__body .v-calendar-daily__scroll-area {
|
|
22523
|
+
overflow-y: visible;
|
|
22524
|
+
flex: none;
|
|
22525
|
+
}
|
|
22526
|
+
.v-calendar-category .v-calendar-daily__pane {
|
|
22527
|
+
overflow-y: visible;
|
|
22528
|
+
}
|
|
22444
22529
|
.v-calendar-category .v-calendar-category__columns {
|
|
22445
22530
|
display: flex;
|
|
22531
|
+
width: -webkit-min-content;
|
|
22532
|
+
width: -moz-min-content;
|
|
22533
|
+
width: min-content;
|
|
22534
|
+
min-width: 100%;
|
|
22446
22535
|
}
|
|
22447
22536
|
.v-calendar-category .v-calendar-category__columns .v-calendar-category__column,
|
|
22448
22537
|
.v-calendar-category .v-calendar-category__columns .v-calendar-category__column-header {
|
|
@@ -22450,6 +22539,9 @@ html.overflow-y-hidden {
|
|
|
22450
22539
|
width: 0;
|
|
22451
22540
|
position: relative;
|
|
22452
22541
|
}
|
|
22542
|
+
.v-calendar-category .v-calendar-category__columns .v-calendar-category__column-header {
|
|
22543
|
+
min-width: 200px;
|
|
22544
|
+
}
|
|
22453
22545
|
.theme--light.v-card {
|
|
22454
22546
|
background-color: #FFFFFF;
|
|
22455
22547
|
color: rgba(0, 0, 0, 0.87);
|
|
@@ -26857,6 +26949,42 @@ html.overflow-y-hidden {
|
|
|
26857
26949
|
.v-navigation-drawer--temporary:not(.v-navigation-drawer--close) {
|
|
26858
26950
|
box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
|
|
26859
26951
|
}
|
|
26952
|
+
.theme--light.v-otp-input .v-input .v-input__control .v-input__slot {
|
|
26953
|
+
background: #FFFFFF;
|
|
26954
|
+
}
|
|
26955
|
+
|
|
26956
|
+
.theme--dark.v-otp-input .v-input .v-input__control .v-input__slot {
|
|
26957
|
+
background: #303030;
|
|
26958
|
+
}
|
|
26959
|
+
|
|
26960
|
+
.v-otp-input {
|
|
26961
|
+
display: flex;
|
|
26962
|
+
flex-wrap: wrap;
|
|
26963
|
+
flex: 1 1 auto;
|
|
26964
|
+
margin-right: -4px;
|
|
26965
|
+
margin-left: -4px;
|
|
26966
|
+
}
|
|
26967
|
+
.v-otp-input input {
|
|
26968
|
+
text-align: center;
|
|
26969
|
+
}
|
|
26970
|
+
.v-otp-input .v-input {
|
|
26971
|
+
margin: 0;
|
|
26972
|
+
flex: 1 0 32px;
|
|
26973
|
+
max-width: 100%;
|
|
26974
|
+
width: 100%;
|
|
26975
|
+
padding: 4px;
|
|
26976
|
+
}
|
|
26977
|
+
.v-otp-input .v-input.v-otp-input--plain fieldset {
|
|
26978
|
+
display: none;
|
|
26979
|
+
}
|
|
26980
|
+
.v-otp-input .v-input input[type=number]::-webkit-outer-spin-button,
|
|
26981
|
+
.v-otp-input .v-input input[type=number]::-webkit-inner-spin-button {
|
|
26982
|
+
-webkit-appearance: none;
|
|
26983
|
+
margin: 0;
|
|
26984
|
+
}
|
|
26985
|
+
.v-otp-input .v-input input[type=number] {
|
|
26986
|
+
-moz-appearance: textfield;
|
|
26987
|
+
}
|
|
26860
26988
|
.theme--light.v-overflow-btn.theme--light.v-overflow-btn > .v-input__control > .v-input__slot {
|
|
26861
26989
|
border-color: rgba(0, 0, 0, 0.12);
|
|
26862
26990
|
}
|
|
@@ -28019,9 +28147,8 @@ html.overflow-y-hidden {
|
|
|
28019
28147
|
color: inherit;
|
|
28020
28148
|
}
|
|
28021
28149
|
.v-stepper__label {
|
|
28022
|
-
|
|
28023
|
-
|
|
28024
|
-
flex-direction: column;
|
|
28150
|
+
display: block;
|
|
28151
|
+
flex-grow: 1;
|
|
28025
28152
|
line-height: 1;
|
|
28026
28153
|
}
|
|
28027
28154
|
.v-application--is-ltr .v-stepper__label {
|
|
@@ -28031,6 +28158,7 @@ html.overflow-y-hidden {
|
|
|
28031
28158
|
text-align: right;
|
|
28032
28159
|
}
|
|
28033
28160
|
.v-stepper__label small {
|
|
28161
|
+
display: block;
|
|
28034
28162
|
font-size: 0.75rem;
|
|
28035
28163
|
font-weight: 300;
|
|
28036
28164
|
text-shadow: none;
|
|
@@ -28095,7 +28223,7 @@ html.overflow-y-hidden {
|
|
|
28095
28223
|
flex-basis: 175px;
|
|
28096
28224
|
}
|
|
28097
28225
|
.v-stepper--alt-labels .v-stepper__step small {
|
|
28098
|
-
align
|
|
28226
|
+
text-align: center;
|
|
28099
28227
|
}
|
|
28100
28228
|
.v-stepper--alt-labels .v-stepper__step__step {
|
|
28101
28229
|
margin-bottom: 11px;
|
|
@@ -29187,9 +29315,12 @@ html.overflow-y-hidden {
|
|
|
29187
29315
|
position: absolute;
|
|
29188
29316
|
text-transform: initial;
|
|
29189
29317
|
width: auto;
|
|
29190
|
-
opacity:
|
|
29318
|
+
opacity: 0;
|
|
29191
29319
|
pointer-events: none;
|
|
29192
29320
|
}
|
|
29321
|
+
.v-tooltip__content.menuable__content__active {
|
|
29322
|
+
opacity: 0.9;
|
|
29323
|
+
}
|
|
29193
29324
|
.v-tooltip__content--fixed {
|
|
29194
29325
|
position: fixed;
|
|
29195
29326
|
}
|