CSS: Use color gray-light for the search placeholder in the menu

This commit is contained in:
Eric Lippmann 2016-11-16 12:34:55 +01:00
parent 6b06e05c04
commit c0e92c2bc5
1 changed files with 16 additions and 0 deletions

View File

@ -225,6 +225,22 @@ input[type=text].search-input {
text-overflow: ellipsis;
}
.search-input:-moz-placeholder { // FF 18-
color: @gray-light;
}
.search-input::-moz-placeholder { // FF 19+
color: @gray-light;
}
.search-input:-ms-input-placeholder {
color: @gray-light;
}
.search-input::-webkit-input-placeholder {
color: @gray-light;
}
.search-input:valid ~ .search-reset {
animation-duration: .4s;
animation-name: search-reset-in;