-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Placeholder missing when not searchable #222
Comments
I had the same problem. 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. |
@wa05 include opacity: 1
|
@andremiguelaa I would add opacity:1 !important since in my case it was overwritten.
Apart from that it works like a charm! |
In the newest version of the library, there is no |
Fixed in |
* origin/release/v3.0: (67 commits) ensure #222 stays closed (#828) add guide for reduce and taggable (#827) Remove foo bar (#826) WIP: v3 – remove onSearch callback prop (#811) doc content updates overhaul selecting docs, updated navigation and URL structure bump vue-server-renderer (#807) WIP: V3 - Remove index prop, add reduce prop (#800) V3/update list items slot (#799) update vuepress (#797) Update sandbox Add patch from #787 update package deps, remove extra dev options V3 - Remove `mutable` class properties plus other misc changes (#781) refactor deselect method (#768) Sass & Class Renames (#759) fix coveralls coverage reporter (#766) remove: - express - gitbook - json-loader - markdown-loader - normalize.css - prismjs - vue-resource use test-utils beta-20 fix failing test ... # Conflicts: # docs/gitbook/README.md # docs/homepage/home.html # src/components/Select.vue
I just found out that the
placeholder
is not displayed whenv-select
has:searchable="false"
The text was updated successfully, but these errors were encountered: