From ebe49e6ac6a04ebfc9583abb327dfe1df4ecb968 Mon Sep 17 00:00:00 2001 From: Anthony Ryan Date: Mon, 21 Oct 2013 18:29:36 -0400 Subject: [PATCH] Ensure that highlighted code blocks never get a text-shadow regardless of where they are or what theme is used. --- app/assets/stylesheets/common.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/assets/stylesheets/common.scss b/app/assets/stylesheets/common.scss index 2d9aacbadaf..dbd50b4dcc8 100644 --- a/app/assets/stylesheets/common.scss +++ b/app/assets/stylesheets/common.scss @@ -129,6 +129,10 @@ p.time { } } +.highlight { + text-shadow: none; +} + .highlight_word { border-bottom: 2px solid #F90; }