From 9c504e42e935846ad504d95ba15f1cf4c2e8ec8b Mon Sep 17 00:00:00 2001 From: Patrick Figel Date: Wed, 15 May 2019 18:25:05 +0200 Subject: [PATCH] Fix placeholder font in Quicksearch 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 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/css/crm-menubar.css b/css/crm-menubar.css index 14f27c465db6..68f143d7df07 100644 --- a/css/crm-menubar.css +++ b/css/crm-menubar.css @@ -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 {