From 40329e12ce6c0ca1377b9783de59d5ea988428f2 Mon Sep 17 00:00:00 2001 From: Taylor Stackpole Date: Thu, 24 Oct 2013 14:47:14 -0700 Subject: [PATCH] Chromium bug work-around. This fixed our issue with chromium not showing the proper icons since chromium only accepts tiffs. --- less/path.less | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/less/path.less b/less/path.less index c5a691246..2df8cc168 100644 --- a/less/path.less +++ b/less/path.less @@ -12,3 +12,10 @@ font-weight: normal; font-style: normal; } + +@media screen and (-webkit-min-device-pixel-ratio: 0) { + @font-face { + font-family: 'FontAwesome'; + src: url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'); + } +}