Vue-select: Placeholder missing when not searchable

Created on 23 May 2017  路  8Comments  路  Source: sagalbot/vue-select

I just found out that the placeholder is not displayed when v-select has :searchable="false"

in progress

Most helpful comment

I had the same problem.
Its because the input field with the placeholder is set to max-width: 1px when searchable is false.

Heres a simple temporary fix:

.v-select.unsearchable input[type="search"] {
    max-width: none;
}
.v-select.unsearchable > .dropdown-toggle > .selected-tag + input[type="search"] {
    max-width: 1px;
}

All 8 comments

I had the same problem.
Its because the input field with the placeholder is set to max-width: 1px when searchable is false.

Heres a simple temporary fix:

.v-select.unsearchable input[type="search"] {
    max-width: none;
}
.v-select.unsearchable > .dropdown-toggle > .selected-tag + input[type="search"] {
    max-width: 1px;
}

Hi @ama-gi what version are you using? not working in "^2.2.0"

Hi @ama-gi , already tried your solution but still can't see placeholder.
Any idea why?
I'm using v2.2.0

@wa05 include opacity: 1

.v-select.unsearchable input[type="search"] { max-width: none; opacity: 1; } .v-select.unsearchable > .dropdown-toggle > .selected-tag + input[type="search"] { max-width: 1px; }

@andremiguelaa I would add opacity:1 !important since in my case it was overwritten.

.v-select.unsearchable input[type="search"] { max-width: none; opacity: 1 !important; } .v-select.unsearchable > .dropdown-toggle > .selected-tag + input[type="search"] { max-width: 1px; }

Apart from that it works like a charm!

In the newest version of the library, there is no max-width setting on .v-select.unsearchable input[type="search"], so I changed opacity: 0; to opacity: 1; and it fixed this problem.

Fixed in v2.6.4.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

davidalvarezr picture davidalvarezr  路  3Comments

FrancescoMussi picture FrancescoMussi  路  3Comments

fabianmieller picture fabianmieller  路  3Comments

FrozenIce0617 picture FrozenIce0617  路  3Comments

ducdev picture ducdev  路  3Comments