Skip to content

Commit

Permalink
Fix placeholder font in Quicksearch
Browse files Browse the repository at this point in the history
This is a fairly trivial change to ensure the placeholder text
shown in the Quicksearch input uses a font that matches the rest
of Civi slightly better than the user agent's default serif font.
  • Loading branch information
pfigel committed May 15, 2019
1 parent ee22e17 commit 9c504e4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions css/crm-menubar.css
Original file line number Diff line number Diff line change
Expand Up @@ -143,16 +143,16 @@ a.highlighted #crm-qsearch-input,
width: 130px;
}
input#crm-qsearch-input:-ms-input-placeholder {
font-family: 'FontAwesome';
font-family: 'FontAwesome', sans-serif;
}
input#crm-qsearch-input::-webkit-input-placeholder {
font-family: 'FontAwesome';
font-family: 'FontAwesome', sans-serif;
}
input#crm-qsearch-input::-moz-placeholder {
font-family: 'FontAwesome';
font-family: 'FontAwesome', sans-serif;
}
input#crm-qsearch-input::placeholder {
font-family: 'FontAwesome';
font-family: 'FontAwesome', sans-serif;
}

ul.crm-quickSearch-results {
Expand Down

0 comments on commit 9c504e4

Please sign in to comment.