Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dropdown list is hidden (may be conflict with Bootstrap4) #677

Closed
vicnoob opened this issue Oct 10, 2018 · 4 comments
Closed

Dropdown list is hidden (may be conflict with Bootstrap4) #677

vicnoob opened this issue Oct 10, 2018 · 4 comments

Comments

@vicnoob
Copy link

vicnoob commented Oct 10, 2018

Im using Light Bootstrap Template (https://www.creative-tim.com/product/light-bootstrap-dashboard) which is using Bootstrap 4. When I try to add v-select into my app, the dropdown of v-select is not working.

image

When I try to remove light-bootstrap from my app, the v-select work fines, but I can not remove it since we all developed base on it. So any idea what's going on?

@abinadi
Copy link

abinadi commented Oct 26, 2018

I have the same issue. I am also using a creative-tim template and the vue-select dropdown does not display.

@jonathantisseau
Copy link

I'm using bootstrap 4 and had the same issue. The .dropdown-list was created but stayed hidden. I corrected that with a simple ccs rule :
.v-select.open > .dropdown-list { display: block; }

@sreenadh
Copy link

The following CSS rules solved my issue.

.v-select.dropdown .dropdown-toggle::after {
    content: normal !important;
}
.dropdown .dropdown-menu
{
    transform: scale(1, 1) !important;
}

@sagalbot sagalbot mentioned this issue Feb 17, 2019
23 tasks
@sagalbot
Copy link
Owner

sagalbot commented May 3, 2019

v3 adjusted all of the class names to be very specific. This should no longer be an issue.

@sagalbot sagalbot closed this as completed May 3, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants