Skip to content

Commit 64fae35

Browse files
committed
fix(md3): use outlined variant for form controls
1 parent 1f7b96c commit 64fae35

File tree

1 file changed

+19
-5
lines changed
  • packages/vuetify/src/blueprints

1 file changed

+19
-5
lines changed

Diff for: packages/vuetify/src/blueprints/md3.ts

+19-5
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export const md3: Blueprint = {
1010
flat: true,
1111
},
1212
VAutocomplete: {
13-
variant: 'filled',
13+
variant: 'outlined',
1414
},
1515
VBanner: {
1616
color: 'primary',
@@ -37,7 +37,10 @@ export const md3: Blueprint = {
3737
rounded: 'sm',
3838
},
3939
VCombobox: {
40-
variant: 'filled',
40+
variant: 'outlined',
41+
},
42+
VDateInput: {
43+
variant: 'outlined',
4144
},
4245
VDatePicker: {
4346
controlHeight: 48,
@@ -52,6 +55,9 @@ export const md3: Blueprint = {
5255
rounded: 'circle',
5356
},
5457
},
58+
VFileInput: {
59+
variant: 'outlined',
60+
},
5561
VNavigationDrawer: {
5662
// VList: {
5763
// nav: true,
@@ -60,8 +66,16 @@ export const md3: Blueprint = {
6066
// },
6167
// },
6268
},
69+
VNumberInput: {
70+
variant: 'outlined',
71+
72+
VBtn: {
73+
color: undefined,
74+
rounded: undefined,
75+
}
76+
},
6377
VSelect: {
64-
variant: 'filled',
78+
variant: 'outlined',
6579
},
6680
VSlider: {
6781
color: 'primary',
@@ -70,10 +84,10 @@ export const md3: Blueprint = {
7084
color: 'primary',
7185
},
7286
VTextarea: {
73-
variant: 'filled',
87+
variant: 'outlined',
7488
},
7589
VTextField: {
76-
variant: 'filled',
90+
variant: 'outlined',
7791
},
7892
VToolbar: {
7993
VBtn: {

0 commit comments

Comments
 (0)