From: Stas Vilchik Date: Mon, 17 Feb 2014 05:45:36 +0000 (+0600) Subject: New Issues Page: improve colors of icons, open component dashboard in a new tab. X-Git-Tag: 4.2~115 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d9f4624d66c913bac2fd0da1c0393cc009a11ec7;p=sonarqube.git New Issues Page: improve colors of icons, open component dashboard in a new tab. --- diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/issues/templates/_issue_detail.hbs.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/issues/templates/_issue_detail.hbs.erb index fc7587ab5d7..2c884b1a725 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/issues/templates/_issue_detail.hbs.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/issues/templates/_issue_detail.hbs.erb @@ -8,7 +8,7 @@ {{#if componentLongName}} {{#if componentQualifier}} - {{componentLongName}} + {{componentLongName}} {{else}} {{componentLongName}} {{/if}} diff --git a/sonar-server/src/main/webapp/stylesheets/icons.css b/sonar-server/src/main/webapp/stylesheets/icons.css index 2043baf7270..c3ae8b44204 100644 --- a/sonar-server/src/main/webapp/stylesheets/icons.css +++ b/sonar-server/src/main/webapp/stylesheets/icons.css @@ -80,25 +80,25 @@ } .icon-status-open:before { content: "\f010"; - color: #85bb43; + color: #4b9fd5; font-size: 14px; line-height: 12px; } .icon-status-confirmed:before { content: "\f011"; - color: #d4333f; + color: #4b9fd5; font-size: 14px; line-height: 12px; } .icon-status-reopened:before { content: "\f012"; - color: #85bb43; + color: #4b9fd5; font-size: 14px; line-height: 12px; } .icon-status-resolved:before { content: "\f013"; - color: #4b9fd5; + color: #444444; font-size: 14px; line-height: 12px; } diff --git a/sonar-server/src/main/webapp/stylesheets/variables.less b/sonar-server/src/main/webapp/stylesheets/variables.less index 23f27fe2c2e..b500bd544e3 100644 --- a/sonar-server/src/main/webapp/stylesheets/variables.less +++ b/sonar-server/src/main/webapp/stylesheets/variables.less @@ -39,10 +39,10 @@ @severityMinorColor: @green; @severityInfoColor: @green; -@statusOpenColor: @green; -@statusConfirmedColor: @red; -@statusReopenedColor: @green; -@statusResolvedColor: @blue; +@statusOpenColor: @blue; +@statusConfirmedColor: @blue; +@statusReopenedColor: @blue; +@statusResolvedColor: @baseFontColor; @statusClosedColor: @baseFontColor; @resolutionFixedColor: @baseFontColor;