From 532726005bfd05a81e6477f48478449d0aa07530 Mon Sep 17 00:00:00 2001 From: Robin Ward Date: Tue, 12 Aug 2014 16:35:48 -0400 Subject: [PATCH] FIX: Heatmaps for posts not showing up if you're not colourblind :) --- app/assets/stylesheets/desktop/topic.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/assets/stylesheets/desktop/topic.scss b/app/assets/stylesheets/desktop/topic.scss index 3d42136a5bf..8fb602b2509 100644 --- a/app/assets/stylesheets/desktop/topic.scss +++ b/app/assets/stylesheets/desktop/topic.scss @@ -228,6 +228,9 @@ a:hover.reply-new { .heatmap-high {color: scale-color($danger, $lightness: 20%) !important;} .heatmap-med {color: $danger !important;} .heatmap-low {color: scale-color($danger, $lightness: -20%) !important;} +.heatmap-high a {color: scale-color($danger, $lightness: 20%) !important;} +.heatmap-med a {color: $danger !important;} +.heatmap-low a {color: scale-color($danger, $lightness: -20%) !important;}