From aa429b085e1edd36650b4200438bc877ea29be0f Mon Sep 17 00:00:00 2001 From: Stas Vilchik Date: Tue, 4 Nov 2014 12:10:12 +0100 Subject: [PATCH] SONAR-5718 Fix fading issues in FF --- server/sonar-web/src/main/less/issues.less | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/sonar-web/src/main/less/issues.less b/server/sonar-web/src/main/less/issues.less index d227c4e89f6..53e5a8078f7 100644 --- a/server/sonar-web/src/main/less/issues.less +++ b/server/sonar-web/src/main/less/issues.less @@ -92,12 +92,12 @@ position: absolute; top: 0; bottom: 0; right: 100%; width: 10px; - background-image: linear-gradient(to right, rgba(255, 255, 255, 0), @barBackgroundColor 75%); + background-image: linear-gradient(to right, fade(@barBackgroundColor, 0%), @barBackgroundColor 75%); } } &.active .facet-stat:before { - background-image: linear-gradient(to right, rgba(255, 255, 255, 0), @lightBlue 75%); + background-image: linear-gradient(to right, fade(@lightBlue, 0%), @lightBlue 75%); } } @@ -238,7 +238,7 @@ position: absolute; top: 0; bottom: 0; right: 100%; width: 10px; - background-image: linear-gradient(to right, rgba(243, 243, 243, 0), @barBackgroundColor 75%); + background-image: linear-gradient(to right, fade(@barBackgroundColor, 0%), @barBackgroundColor 75%); } } -- 2.39.5