1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-30 16:50:00 +02:00

fixes .placeholder to work as a "grouped selector"

adding the `&` combinator to `.placeholder` makes it work for the global case (in forms.less) as well as within `.navbar-search .search-query`

the result can be seen in the generated bootstrap.css, which include the -ms vendor extension.
This commit is contained in:
Corey Innis
2012-05-27 18:12:08 -07:00
parent 287086758b
commit 8a06339501
3 changed files with 8 additions and 10 deletions

View File

@@ -3713,6 +3713,10 @@ input[type="submit"].btn.btn-mini {
color: #cccccc;
}
.navbar-search .search-query:-ms-input-placeholder {
color: #cccccc;
}
.navbar-search .search-query::-webkit-input-placeholder {
color: #cccccc;
}