vuetify 2.5.9 → 2.5.13
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 +58 -66
- package/dist/json/tags.json +0 -2
- package/dist/json/web-types.json +89 -146
- package/dist/vuetify.css +37 -24
- package/dist/vuetify.css.map +1 -1
- package/dist/vuetify.js +374 -177
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +2 -2
- package/es5/components/VAppBar/VAppBar.js +3 -0
- package/es5/components/VAppBar/VAppBar.js.map +1 -1
- package/es5/components/VAutocomplete/VAutocomplete.js +20 -2
- package/es5/components/VAutocomplete/VAutocomplete.js.map +1 -1
- package/es5/components/VCalendar/mixins/calendar-with-events.js +4 -2
- package/es5/components/VCalendar/mixins/calendar-with-events.js.map +1 -1
- package/es5/components/VCalendar/mixins/mouse.js +19 -0
- package/es5/components/VCalendar/mixins/mouse.js.map +1 -1
- package/es5/components/VCalendar/util/timestamp.js +2 -2
- package/es5/components/VCalendar/util/timestamp.js.map +1 -1
- package/es5/components/VCombobox/VCombobox.js +0 -5
- package/es5/components/VCombobox/VCombobox.js.map +1 -1
- package/es5/components/VDataTable/VDataTableHeaderMobile.js +2 -2
- package/es5/components/VDataTable/VDataTableHeaderMobile.js.map +1 -1
- package/es5/components/VDialog/VDialog.js +4 -2
- package/es5/components/VDialog/VDialog.js.map +1 -1
- package/es5/components/VList/VListItem.js +8 -1
- package/es5/components/VList/VListItem.js.map +1 -1
- package/es5/components/VOverlay/VOverlay.js +1 -0
- package/es5/components/VOverlay/VOverlay.js.map +1 -1
- package/es5/components/VRadioGroup/VRadioGroup.js +7 -0
- package/es5/components/VRadioGroup/VRadioGroup.js.map +1 -1
- package/es5/components/VRangeSlider/VRangeSlider.js +4 -1
- package/es5/components/VRangeSlider/VRangeSlider.js.map +1 -1
- package/es5/components/VSelect/VSelect.js +1 -1
- package/es5/components/VSelect/VSelect.js.map +1 -1
- package/es5/components/VSlideGroup/VSlideGroup.js +93 -37
- package/es5/components/VSlideGroup/VSlideGroup.js.map +1 -1
- package/es5/components/VTabs/VTab.js +15 -4
- package/es5/components/VTabs/VTab.js.map +1 -1
- package/es5/components/VTabs/VTabsBar.js +1 -1
- package/es5/components/VTabs/VTabsBar.js.map +1 -1
- package/es5/components/VTextarea/VTextarea.js +11 -2
- package/es5/components/VTextarea/VTextarea.js.map +1 -1
- package/es5/components/VTooltip/VTooltip.js +2 -5
- package/es5/components/VTooltip/VTooltip.js.map +1 -1
- package/es5/components/VTreeview/VTreeview.js +1 -1
- package/es5/components/VTreeview/VTreeview.js.map +1 -1
- package/es5/components/transitions/createTransition.js +1 -5
- package/es5/components/transitions/createTransition.js.map +1 -1
- package/es5/directives/click-outside/index.js +19 -10
- package/es5/directives/click-outside/index.js.map +1 -1
- package/es5/directives/intersect/index.js +12 -11
- package/es5/directives/intersect/index.js.map +1 -1
- package/es5/directives/mutate/index.js +7 -6
- package/es5/directives/mutate/index.js.map +1 -1
- package/es5/directives/resize/index.js +8 -7
- package/es5/directives/resize/index.js.map +1 -1
- package/es5/directives/ripple/index.js +2 -3
- package/es5/directives/ripple/index.js.map +1 -1
- package/es5/directives/scroll/index.js +13 -10
- package/es5/directives/scroll/index.js.map +1 -1
- package/es5/framework.js +1 -1
- package/es5/locale/fr.js +1 -1
- package/es5/locale/fr.js.map +1 -1
- package/es5/mixins/detachable/index.js +32 -14
- package/es5/mixins/detachable/index.js.map +1 -1
- package/es5/mixins/intersectable/index.js +5 -2
- package/es5/mixins/intersectable/index.js.map +1 -1
- package/es5/mixins/menuable/index.js +5 -5
- package/es5/mixins/menuable/index.js.map +1 -1
- package/es5/mixins/overlayable/index.js +22 -35
- package/es5/mixins/overlayable/index.js.map +1 -1
- package/es5/mixins/routable/index.js +9 -3
- package/es5/mixins/routable/index.js.map +1 -1
- package/es5/services/goto/index.js +3 -1
- package/es5/services/goto/index.js.map +1 -1
- package/es5/util/helpers.js +23 -0
- package/es5/util/helpers.js.map +1 -1
- package/lib/components/VAppBar/VAppBar.js +4 -0
- package/lib/components/VAppBar/VAppBar.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.js +18 -2
- package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
- package/lib/components/VCalendar/mixins/calendar-with-events.js +4 -2
- package/lib/components/VCalendar/mixins/calendar-with-events.js.map +1 -1
- package/lib/components/VCalendar/mixins/mouse.js +19 -0
- package/lib/components/VCalendar/mixins/mouse.js.map +1 -1
- package/lib/components/VCalendar/util/timestamp.js +2 -2
- package/lib/components/VCalendar/util/timestamp.js.map +1 -1
- package/lib/components/VCombobox/VCombobox.js +0 -5
- package/lib/components/VCombobox/VCombobox.js.map +1 -1
- package/lib/components/VDataTable/VDataTableHeaderMobile.js +2 -2
- package/lib/components/VDataTable/VDataTableHeaderMobile.js.map +1 -1
- package/lib/components/VDialog/VDialog.js +5 -2
- package/lib/components/VDialog/VDialog.js.map +1 -1
- package/lib/components/VList/VListItem.js +9 -1
- package/lib/components/VList/VListItem.js.map +1 -1
- package/lib/components/VOverlay/VOverlay.js +1 -0
- package/lib/components/VOverlay/VOverlay.js.map +1 -1
- package/lib/components/VRadioGroup/VRadioGroup.js +9 -0
- package/lib/components/VRadioGroup/VRadioGroup.js.map +1 -1
- package/lib/components/VRangeSlider/VRangeSlider.js +4 -1
- package/lib/components/VRangeSlider/VRangeSlider.js.map +1 -1
- package/lib/components/VSelect/VSelect.js +1 -1
- package/lib/components/VSelect/VSelect.js.map +1 -1
- package/lib/components/VSlideGroup/VSlideGroup.js +63 -40
- package/lib/components/VSlideGroup/VSlideGroup.js.map +1 -1
- package/lib/components/VTabs/VTab.js +16 -6
- package/lib/components/VTabs/VTab.js.map +1 -1
- package/lib/components/VTabs/VTabsBar.js +1 -1
- package/lib/components/VTabs/VTabsBar.js.map +1 -1
- package/lib/components/VTextarea/VTextarea.js +8 -0
- package/lib/components/VTextarea/VTextarea.js.map +1 -1
- package/lib/components/VTooltip/VTooltip.js +2 -5
- package/lib/components/VTooltip/VTooltip.js.map +1 -1
- package/lib/components/VTreeview/VTreeview.js +1 -1
- package/lib/components/VTreeview/VTreeview.js.map +1 -1
- package/lib/components/transitions/createTransition.js +1 -5
- package/lib/components/transitions/createTransition.js.map +1 -1
- package/lib/directives/click-outside/index.js +20 -10
- package/lib/directives/click-outside/index.js.map +1 -1
- package/lib/directives/intersect/index.js +12 -10
- package/lib/directives/intersect/index.js.map +1 -1
- package/lib/directives/mutate/index.js +7 -6
- package/lib/directives/mutate/index.js.map +1 -1
- package/lib/directives/resize/index.js +6 -5
- package/lib/directives/resize/index.js.map +1 -1
- package/lib/directives/ripple/index.js +2 -3
- package/lib/directives/ripple/index.js.map +1 -1
- package/lib/directives/scroll/index.js +9 -6
- package/lib/directives/scroll/index.js.map +1 -1
- package/lib/framework.js +1 -1
- package/lib/locale/fr.js +1 -1
- package/lib/locale/fr.js.map +1 -1
- package/lib/mixins/detachable/index.js +28 -13
- package/lib/mixins/detachable/index.js.map +1 -1
- package/lib/mixins/intersectable/index.js +5 -2
- package/lib/mixins/intersectable/index.js.map +1 -1
- package/lib/mixins/menuable/index.js +4 -4
- package/lib/mixins/menuable/index.js.map +1 -1
- package/lib/mixins/overlayable/index.js +23 -36
- package/lib/mixins/overlayable/index.js.map +1 -1
- package/lib/mixins/routable/index.js +12 -3
- package/lib/mixins/routable/index.js.map +1 -1
- package/lib/services/goto/index.js +3 -1
- package/lib/services/goto/index.js.map +1 -1
- package/lib/util/helpers.js +21 -0
- package/lib/util/helpers.js.map +1 -1
- package/package.json +2 -3
- package/src/components/VAppBar/VAppBar.ts +3 -0
- package/src/components/VAutocomplete/VAutocomplete.ts +15 -2
- package/src/components/VCalendar/mixins/calendar-with-events.sass +7 -1
- package/src/components/VCalendar/mixins/calendar-with-events.ts +3 -3
- package/src/components/VCalendar/mixins/mouse.ts +21 -0
- package/src/components/VCalendar/util/__tests__/events.spec.ts +1 -1
- package/src/components/VCalendar/util/timestamp.ts +2 -2
- package/src/components/VCombobox/VCombobox.ts +0 -5
- package/src/components/VCombobox/__tests__/VCombobox-multiple.spec.ts +113 -0
- package/src/components/VCombobox/__tests__/VCombobox.spec.ts +30 -0
- package/src/components/VDataTable/VDataTableHeaderMobile.ts +3 -1
- package/src/components/VDataTable/__tests__/__snapshots__/VDataTable.spec.ts.snap +0 -20
- package/src/components/VDialog/VDialog.ts +4 -2
- package/src/components/VImg/__tests__/VImg.spec.ts +1 -1
- package/src/components/VList/VListItem.sass +2 -1
- package/src/components/VList/VListItem.ts +7 -1
- package/src/components/VList/__tests__/VListItem.spec.ts +16 -0
- package/src/components/VOverlay/VOverlay.ts +1 -0
- package/src/components/VRadioGroup/VRadioGroup.ts +8 -0
- package/src/components/VRangeSlider/VRangeSlider.ts +3 -1
- package/src/components/VSelect/VSelect.ts +1 -1
- package/src/components/VSlideGroup/VSlideGroup.ts +75 -35
- package/src/components/VSlideGroup/__tests__/VSlideGroup.spec.ts +1 -3
- package/src/components/VSnackbar/VSnackbar.sass +2 -0
- package/src/components/VStepper/VStepper.sass +5 -1
- package/src/components/VStepper/_variables.scss +2 -1
- package/src/components/VTabs/VTab.ts +14 -4
- package/src/components/VTabs/VTabs.sass +5 -2
- package/src/components/VTabs/VTabsBar.ts +2 -2
- package/src/components/VTextarea/VTextarea.ts +7 -0
- package/src/components/VTooltip/VTooltip.ts +2 -5
- package/src/components/VTreeview/VTreeview.ts +1 -1
- package/src/components/transitions/createTransition.ts +1 -5
- package/src/directives/click-outside/__tests__/click-outside-shadow-dom.spec.ts +9 -6
- package/src/directives/click-outside/__tests__/click-outside.spec.ts +7 -4
- package/src/directives/click-outside/index.ts +19 -10
- package/src/directives/intersect/__tests__/intersect.spec.ts +13 -10
- package/src/directives/intersect/index.ts +13 -12
- package/src/directives/mutate/__tests__/mutate.spec.ts +36 -17
- package/src/directives/mutate/index.ts +8 -7
- package/src/directives/resize/__tests__/resize.spec.ts +4 -4
- package/src/directives/resize/index.ts +10 -5
- package/src/directives/ripple/index.ts +3 -5
- package/src/directives/scroll/__tests__/scroll.spec.ts +9 -9
- package/src/directives/scroll/index.ts +8 -7
- package/src/globals.d.ts +10 -11
- package/src/locale/fr.ts +1 -1
- package/src/mixins/detachable/index.ts +32 -15
- package/src/mixins/intersectable/index.ts +5 -2
- package/src/mixins/menuable/index.ts +4 -4
- package/src/mixins/overlayable/index.ts +24 -35
- package/src/mixins/routable/__tests__/routable.spec.ts +82 -5
- package/src/mixins/routable/index.ts +10 -3
- package/src/services/goto/index.ts +6 -1
- package/src/styles/components/_selection-controls.sass +4 -7
- package/src/styles/generic/_transitions.scss +219 -215
- package/src/styles/settings/_variables.scss +7 -7
- package/src/util/helpers.ts +22 -0
package/dist/vuetify.css
CHANGED
|
@@ -3365,10 +3365,10 @@ progress {
|
|
|
3365
3365
|
box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12) !important;
|
|
3366
3366
|
}
|
|
3367
3367
|
|
|
3368
|
-
.
|
|
3368
|
+
.carousel-transition-enter {
|
|
3369
3369
|
transform: translate(100%, 0);
|
|
3370
3370
|
}
|
|
3371
|
-
.
|
|
3371
|
+
.carousel-transition-leave, .carousel-transition-leave-to {
|
|
3372
3372
|
position: absolute;
|
|
3373
3373
|
top: 0;
|
|
3374
3374
|
transform: translate(-100%, 0);
|
|
@@ -3383,6 +3383,9 @@ progress {
|
|
|
3383
3383
|
transform: translate(100%, 0);
|
|
3384
3384
|
}
|
|
3385
3385
|
|
|
3386
|
+
.dialog-transition-enter-active, .dialog-transition-leave-active {
|
|
3387
|
+
pointer-events: none !important;
|
|
3388
|
+
}
|
|
3386
3389
|
.dialog-transition-enter, .dialog-transition-leave-to {
|
|
3387
3390
|
transform: scale(0.5);
|
|
3388
3391
|
opacity: 0;
|
|
@@ -3829,17 +3832,17 @@ html.overflow-y-hidden {
|
|
|
3829
3832
|
display: none !important;
|
|
3830
3833
|
}
|
|
3831
3834
|
}
|
|
3832
|
-
@media only screen and (max-width:
|
|
3835
|
+
@media only screen and (max-width: 599.98px) {
|
|
3833
3836
|
.v-application .hidden-xs-only {
|
|
3834
3837
|
display: none !important;
|
|
3835
3838
|
}
|
|
3836
3839
|
}
|
|
3837
|
-
@media only screen and (min-width: 600px) and (max-width:
|
|
3840
|
+
@media only screen and (min-width: 600px) and (max-width: 959.98px) {
|
|
3838
3841
|
.v-application .hidden-sm-only {
|
|
3839
3842
|
display: none !important;
|
|
3840
3843
|
}
|
|
3841
3844
|
}
|
|
3842
|
-
@media only screen and (max-width:
|
|
3845
|
+
@media only screen and (max-width: 959.98px) {
|
|
3843
3846
|
.v-application .hidden-sm-and-down {
|
|
3844
3847
|
display: none !important;
|
|
3845
3848
|
}
|
|
@@ -3849,12 +3852,12 @@ html.overflow-y-hidden {
|
|
|
3849
3852
|
display: none !important;
|
|
3850
3853
|
}
|
|
3851
3854
|
}
|
|
3852
|
-
@media only screen and (min-width: 960px) and (max-width:
|
|
3855
|
+
@media only screen and (min-width: 960px) and (max-width: 1263.98px) {
|
|
3853
3856
|
.v-application .hidden-md-only {
|
|
3854
3857
|
display: none !important;
|
|
3855
3858
|
}
|
|
3856
3859
|
}
|
|
3857
|
-
@media only screen and (max-width:
|
|
3860
|
+
@media only screen and (max-width: 1263.98px) {
|
|
3858
3861
|
.v-application .hidden-md-and-down {
|
|
3859
3862
|
display: none !important;
|
|
3860
3863
|
}
|
|
@@ -3864,12 +3867,12 @@ html.overflow-y-hidden {
|
|
|
3864
3867
|
display: none !important;
|
|
3865
3868
|
}
|
|
3866
3869
|
}
|
|
3867
|
-
@media only screen and (min-width: 1264px) and (max-width:
|
|
3870
|
+
@media only screen and (min-width: 1264px) and (max-width: 1903.98px) {
|
|
3868
3871
|
.v-application .hidden-lg-only {
|
|
3869
3872
|
display: none !important;
|
|
3870
3873
|
}
|
|
3871
3874
|
}
|
|
3872
|
-
@media only screen and (max-width:
|
|
3875
|
+
@media only screen and (max-width: 1903.98px) {
|
|
3873
3876
|
.v-application .hidden-lg-and-down {
|
|
3874
3877
|
display: none !important;
|
|
3875
3878
|
}
|
|
@@ -20250,7 +20253,7 @@ html.overflow-y-hidden {
|
|
|
20250
20253
|
color: rgba(0, 0, 0, 0.38);
|
|
20251
20254
|
}
|
|
20252
20255
|
.theme--light.v-list-item:not(.v-list-item--active):not(.v-list-item--disabled) {
|
|
20253
|
-
color: rgba(0, 0, 0, 0.87)
|
|
20256
|
+
color: rgba(0, 0, 0, 0.87);
|
|
20254
20257
|
}
|
|
20255
20258
|
.theme--light.v-list-item .v-list-item__mask {
|
|
20256
20259
|
color: rgba(0, 0, 0, 0.38);
|
|
@@ -20280,7 +20283,7 @@ html.overflow-y-hidden {
|
|
|
20280
20283
|
color: rgba(255, 255, 255, 0.5);
|
|
20281
20284
|
}
|
|
20282
20285
|
.theme--dark.v-list-item:not(.v-list-item--active):not(.v-list-item--disabled) {
|
|
20283
|
-
color: #FFFFFF
|
|
20286
|
+
color: #FFFFFF;
|
|
20284
20287
|
}
|
|
20285
20288
|
.theme--dark.v-list-item .v-list-item__mask {
|
|
20286
20289
|
color: rgba(255, 255, 255, 0.5);
|
|
@@ -21644,7 +21647,7 @@ html.overflow-y-hidden {
|
|
|
21644
21647
|
.v-bottom-sheet.v-dialog.v-bottom-sheet--inset {
|
|
21645
21648
|
max-width: 70%;
|
|
21646
21649
|
}
|
|
21647
|
-
@media only screen and (max-width:
|
|
21650
|
+
@media only screen and (max-width: 599.98px) {
|
|
21648
21651
|
.v-bottom-sheet.v-dialog.v-bottom-sheet--inset {
|
|
21649
21652
|
max-width: none;
|
|
21650
21653
|
}
|
|
@@ -22029,7 +22032,6 @@ html.overflow-y-hidden {
|
|
|
22029
22032
|
}
|
|
22030
22033
|
.v-calendar .v-event-timed {
|
|
22031
22034
|
position: absolute;
|
|
22032
|
-
overflow: hidden;
|
|
22033
22035
|
white-space: nowrap;
|
|
22034
22036
|
text-overflow: ellipsis;
|
|
22035
22037
|
font-size: 12px;
|
|
@@ -22037,6 +22039,13 @@ html.overflow-y-hidden {
|
|
|
22037
22039
|
border-radius: 4px;
|
|
22038
22040
|
pointer-events: all;
|
|
22039
22041
|
}
|
|
22042
|
+
.v-calendar .v-event-summary {
|
|
22043
|
+
display: inline-block;
|
|
22044
|
+
overflow: hidden;
|
|
22045
|
+
text-overflow: ellipsis;
|
|
22046
|
+
width: 100%;
|
|
22047
|
+
white-space: nowrap;
|
|
22048
|
+
}
|
|
22040
22049
|
.v-calendar.v-calendar-events .v-calendar-weekly__head-weekday {
|
|
22041
22050
|
margin-right: -1px;
|
|
22042
22051
|
}
|
|
@@ -22773,14 +22782,6 @@ html.overflow-y-hidden {
|
|
|
22773
22782
|
.v-input--checkbox.v-input--dense {
|
|
22774
22783
|
margin-top: 4px;
|
|
22775
22784
|
}
|
|
22776
|
-
.theme--light.v-input--selection-controls.v-input--is-disabled:not(.v-input--indeterminate) .v-icon {
|
|
22777
|
-
color: rgba(0, 0, 0, 0.26) !important;
|
|
22778
|
-
}
|
|
22779
|
-
|
|
22780
|
-
.theme--dark.v-input--selection-controls.v-input--is-disabled:not(.v-input--indeterminate) .v-icon {
|
|
22781
|
-
color: rgba(255, 255, 255, 0.3) !important;
|
|
22782
|
-
}
|
|
22783
|
-
|
|
22784
22785
|
.v-input--selection-controls {
|
|
22785
22786
|
margin-top: 16px;
|
|
22786
22787
|
padding-top: 4px;
|
|
@@ -22890,6 +22891,9 @@ html.overflow-y-hidden {
|
|
|
22890
22891
|
background: currentColor;
|
|
22891
22892
|
transform: scale(1.2);
|
|
22892
22893
|
}
|
|
22894
|
+
.v-input--selection-controls.v-input--is-disabled:not(.v-input--indeterminate) .v-icon {
|
|
22895
|
+
color: inherit;
|
|
22896
|
+
}
|
|
22893
22897
|
|
|
22894
22898
|
.v-input--selection-controls__input:hover .v-input--selection-controls__ripple:before {
|
|
22895
22899
|
background: currentColor;
|
|
@@ -27673,6 +27677,7 @@ html.overflow-y-hidden {
|
|
|
27673
27677
|
transition-duration: 0.15s;
|
|
27674
27678
|
transition-property: opacity, transform;
|
|
27675
27679
|
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
27680
|
+
z-index: 1;
|
|
27676
27681
|
}
|
|
27677
27682
|
.v-snack__wrapper.theme--dark {
|
|
27678
27683
|
background-color: #333333;
|
|
@@ -27747,6 +27752,7 @@ html.overflow-y-hidden {
|
|
|
27747
27752
|
position: absolute;
|
|
27748
27753
|
right: 0;
|
|
27749
27754
|
top: 0;
|
|
27755
|
+
z-index: -1;
|
|
27750
27756
|
}
|
|
27751
27757
|
.v-snack--top {
|
|
27752
27758
|
align-items: flex-start;
|
|
@@ -28052,9 +28058,14 @@ html.overflow-y-hidden {
|
|
|
28052
28058
|
padding-bottom: 36px;
|
|
28053
28059
|
}
|
|
28054
28060
|
.v-stepper--vertical .v-stepper__content {
|
|
28055
|
-
padding: 16px 60px 16px 23px;
|
|
28056
28061
|
width: auto;
|
|
28057
28062
|
}
|
|
28063
|
+
.v-application--is-ltr .v-stepper--vertical .v-stepper__content {
|
|
28064
|
+
padding: 16px 60px 16px 23px;
|
|
28065
|
+
}
|
|
28066
|
+
.v-application--is-rtl .v-stepper--vertical .v-stepper__content {
|
|
28067
|
+
padding: 16px 23px 16px 60px;
|
|
28068
|
+
}
|
|
28058
28069
|
.v-application--is-ltr .v-stepper--vertical .v-stepper__content {
|
|
28059
28070
|
margin: -8px -36px -16px 36px;
|
|
28060
28071
|
}
|
|
@@ -28092,7 +28103,7 @@ html.overflow-y-hidden {
|
|
|
28092
28103
|
margin-right: 0;
|
|
28093
28104
|
}
|
|
28094
28105
|
|
|
28095
|
-
@media only screen and (max-width:
|
|
28106
|
+
@media only screen and (max-width: 959.98px) {
|
|
28096
28107
|
.v-stepper:not(.v-stepper--vertical) .v-stepper__label {
|
|
28097
28108
|
display: none;
|
|
28098
28109
|
}
|
|
@@ -28531,9 +28542,11 @@ html.overflow-y-hidden {
|
|
|
28531
28542
|
}
|
|
28532
28543
|
|
|
28533
28544
|
.v-tab--disabled {
|
|
28534
|
-
pointer-events: none;
|
|
28535
28545
|
opacity: 0.5;
|
|
28536
28546
|
}
|
|
28547
|
+
.v-tab--disabled, .v-tab--disabled * {
|
|
28548
|
+
pointer-events: none;
|
|
28549
|
+
}
|
|
28537
28550
|
.v-textarea textarea {
|
|
28538
28551
|
align-self: stretch;
|
|
28539
28552
|
flex: 1 1 auto;
|