Skip to content

Commit 5495cca

Browse files
committed
fix(inputs): restore plain/underlined icon alignment
partially reverts f483092
1 parent f6284d4 commit 5495cca

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

packages/vuetify/src/components/VFileInput/VFileInput.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,7 @@ export const VFileInput = genericComponent<VFileInputSlots>()({
252252
'v-file-input--chips': !!props.chips,
253253
'v-file-input--dragging': isDragging.value,
254254
'v-file-input--hide': props.hideInput,
255+
'v-input--plain-underlined': isPlainOrUnderlined.value,
255256
},
256257
props.class,
257258
]}

packages/vuetify/src/components/VTextField/VTextField.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,7 @@ export const VTextField = genericComponent<VTextFieldSlots>()({
183183
{
184184
'v-text-field--prefixed': props.prefix,
185185
'v-text-field--suffixed': props.suffix,
186+
'v-input--plain-underlined': isPlainOrUnderlined.value,
186187
},
187188
props.class,
188189
]}

packages/vuetify/src/components/VTextarea/VTextarea.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,7 @@ export const VTextarea = genericComponent<VTextareaSlots>()({
263263
'v-text-field--suffixed': props.suffix,
264264
'v-textarea--auto-grow': props.autoGrow,
265265
'v-textarea--no-resize': props.noResize || props.autoGrow,
266+
'v-input--plain-underlined': isPlainOrUnderlined.value,
266267
},
267268
props.class,
268269
]}

0 commit comments

Comments
 (0)