From: Stas Vilchik Date: Tue, 4 Nov 2014 11:10:12 +0000 (+0100) Subject: SONAR-5718 Fix fading issues in FF X-Git-Tag: 5.0-RC1~422 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=aa429b085e1edd36650b4200438bc877ea29be0f;p=sonarqube.git SONAR-5718 Fix fading issues in FF --- 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%); } }