From 7b5fa25ab1274ca57d1319d5ac31f7284d9834ff Mon Sep 17 00:00:00 2001 From: onyxserpent Date: Thu, 9 Oct 2014 20:28:33 -0700 Subject: [PATCH] Possibly fixing font weight issues in OSX Firefox --- app/assets/stylesheets/themes/default/layout/_hacks.scss | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/themes/default/layout/_hacks.scss b/app/assets/stylesheets/themes/default/layout/_hacks.scss index ca49d1e..c3441bd 100644 --- a/app/assets/stylesheets/themes/default/layout/_hacks.scss +++ b/app/assets/stylesheets/themes/default/layout/_hacks.scss @@ -2,8 +2,13 @@ Firefox select hacks */ +body { + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + select { -moz-appearance: none; text-indent: 0.01px; text-overflow: ''; -} \ No newline at end of file +}