vuetifyjs / vuetify

🐉 Vue Component Framework
https://vuetifyjs.com
MIT License
39.89k stars 6.97k forks source link

[Bug Report][3.6.7] VSelect dropdown with attach gets opacity from VField #19937

Closed J-Sek closed 1 month ago

J-Sek commented 5 months ago

Environment

Vuetify Version: 3.6.7 Vue Version: 3.4.27 Browsers: Chrome 125.0.0.0 OS: Linux x86_64

Steps to reproduce

  1. Use attach: true within menu-props for VSelect, VAutocomplete or VCombobox

Expected Behavior

Menu should be fully visible

Actual Behavior

Menu gets opacity from .v-field__input because it is placed inside this div in DOM

Reproduction Link

https://play.vuetifyjs.com/#...

Other comments

I wish I could rely on default attachment behavior but...

As mentioned in #16855 style="z-index: 3000; position: relative" could be potential workaround, but it only fixes the most critical interference from checkboxes. I don't want my app to be incosistent by showing some menus translucent and others fully opaque. Can we move menu outside .v-field__input?

My workaround for now

:menu-props='{ scrollStrategy: 'close' }`
LuisFernando-hub commented 1 month ago

Hello, i have the problem, i used VSelect in dialog, when i used scroll and selected my options stay bugs

My code, this is inside a dialog VDialog

<VSelect v-model="...." label="Filtro de Exportação" :items="items" density="compact" />

image

KaelWD commented 1 month ago

Duplicate of #16855