From 7ffb6edd1cb4efffc3901773cf2b2c8bbf5595b9 Mon Sep 17 00:00:00 2001 From: Paulo Reis Date: Mon, 20 Feb 2017 11:21:56 +0000 Subject: [PATCH] Use solid color instead of opacity, to avoid rendering issues. --- services/web/public/stylesheets/app/editor/review-panel.less | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/web/public/stylesheets/app/editor/review-panel.less b/services/web/public/stylesheets/app/editor/review-panel.less index 1d1900c90c..9930eaa4a3 100644 --- a/services/web/public/stylesheets/app/editor/review-panel.less +++ b/services/web/public/stylesheets/app/editor/review-panel.less @@ -49,11 +49,11 @@ } &[disabled] { - opacity: 0.5; + background-color: tint(@rp-highlight-blue, 50%); &:hover, &:focus { - background-color: @rp-highlight-blue; + background-color: tint(@rp-highlight-blue, 50%); } } }