Fix placeholder font in Quicksearch
authorPatrick Figel <pfigel@greenpeace.org>
Wed, 15 May 2019 16:25:05 +0000 (18:25 +0200)
committerPatrick Figel <pfigel@greenpeace.org>
Wed, 15 May 2019 16:25:05 +0000 (18:25 +0200)
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.

css/crm-menubar.css

index 14f27c465db6c4d7af21992027947ef64748cc04..68f143d7df077b5760a8d64ce6e71973b11ac8c4 100644 (file)
@@ -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 {