vuetify 1.5.11 → 1.5.16
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/LICENSE.md +21 -0
- package/dist/vuetify.css +9 -4
- package/dist/vuetify.css.map +1 -1
- package/dist/vuetify.js +12 -11
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +2 -2
- package/es5/components/VCounter/VCounter.js +1 -1
- package/es5/components/VCounter/VCounter.js.map +1 -1
- package/es5/components/VDialog/VDialog.js +2 -3
- package/es5/components/VDialog/VDialog.js.map +1 -1
- package/es5/components/VLabel/VLabel.js +1 -1
- package/es5/components/VLabel/VLabel.js.map +1 -1
- package/es5/components/VList/VListTile.js +1 -1
- package/es5/components/VList/VListTile.js.map +1 -1
- package/es5/components/VRadioGroup/VRadio.js +1 -1
- package/es5/components/VRadioGroup/VRadio.js.map +1 -1
- package/es5/components/VSelect/VSelectList.js +2 -1
- package/es5/components/VSelect/VSelectList.js.map +1 -1
- package/es5/components/VSpeedDial/VSpeedDial.js +1 -1
- package/es5/components/VSpeedDial/VSpeedDial.js.map +1 -1
- package/es5/components/Vuetify/index.js +1 -1
- package/es5/index.js +1 -1
- package/es5/locale/sl.js +2 -2
- package/es5/locale/sl.js.map +1 -1
- package/es5/util/helpers.js +1 -1
- package/es5/util/helpers.js.map +1 -1
- package/lib/components/VCounter/VCounter.js +1 -1
- package/lib/components/VCounter/VCounter.js.map +1 -1
- package/lib/components/VDialog/VDialog.js +2 -3
- package/lib/components/VDialog/VDialog.js.map +1 -1
- package/lib/components/VLabel/VLabel.js +1 -1
- package/lib/components/VLabel/VLabel.js.map +1 -1
- package/lib/components/VList/VListTile.js +1 -1
- package/lib/components/VList/VListTile.js.map +1 -1
- package/lib/components/VRadioGroup/VRadio.js +1 -1
- package/lib/components/VRadioGroup/VRadio.js.map +1 -1
- package/lib/components/VSelect/VSelectList.js +2 -1
- package/lib/components/VSelect/VSelectList.js.map +1 -1
- package/lib/components/VSpeedDial/VSpeedDial.js +1 -1
- package/lib/components/VSpeedDial/VSpeedDial.js.map +1 -1
- package/lib/components/Vuetify/index.js +1 -1
- package/lib/locale/sl.js +2 -2
- package/lib/locale/sl.js.map +1 -1
- package/lib/util/helpers.js +1 -1
- package/lib/util/helpers.js.map +1 -1
- package/package.json +16 -5
- package/src/components/VCounter/VCounter.ts +3 -3
- package/src/components/VDialog/VDialog.js +2 -2
- package/src/components/VLabel/VLabel.ts +3 -3
- package/src/components/VList/VListTile.ts +1 -2
- package/src/components/VRadioGroup/VRadio.js +1 -1
- package/src/components/VSelect/VSelectList.js +2 -1
- package/src/components/VSpeedDial/VSpeedDial.js +1 -1
- package/src/locale/sl.ts +2 -2
- package/src/stylus/components/_overflow-buttons.styl +7 -1
- package/src/stylus/components/_text-fields.styl +1 -0
- package/src/stylus/elements/_typography.styl +0 -4
- package/src/stylus/settings/_variables.styl +0 -1
- package/src/util/helpers.ts +1 -1
|
@@ -6,7 +6,13 @@ v-overflow-btn($material)
|
|
|
6
6
|
.v-input__slot
|
|
7
7
|
&::before
|
|
8
8
|
background-color: $material.dividers !important // override v-text-field bottom border
|
|
9
|
-
|
|
9
|
+
|
|
10
|
+
&.v-text-field--outline
|
|
11
|
+
.v-input__control,
|
|
12
|
+
.v-input__slot
|
|
13
|
+
&::before
|
|
14
|
+
background-color: transparent !important // override v-text-field top border;
|
|
15
|
+
|
|
10
16
|
&--segmented,
|
|
11
17
|
&--editable:hover,
|
|
12
18
|
&--editable.v-input--is-focused,
|
package/src/util/helpers.ts
CHANGED
|
@@ -251,7 +251,7 @@ export function getZIndex (el?: Element | null): number {
|
|
|
251
251
|
|
|
252
252
|
const index = +window.getComputedStyle(el).getPropertyValue('z-index')
|
|
253
253
|
|
|
254
|
-
if (
|
|
254
|
+
if (!index) return getZIndex(el.parentNode as Element)
|
|
255
255
|
return index
|
|
256
256
|
}
|
|
257
257
|
|