From d9f4624d66c913bac2fd0da1c0393cc009a11ec7 Mon Sep 17 00:00:00 2001 From: Stas Vilchik Date: Mon, 17 Feb 2014 11:45:36 +0600 Subject: [PATCH] New Issues Page: improve colors of icons, open component dashboard in a new tab. --- .../app/views/issues/templates/_issue_detail.hbs.erb | 2 +- sonar-server/src/main/webapp/stylesheets/icons.css | 8 ++++---- sonar-server/src/main/webapp/stylesheets/variables.less | 8 ++++---- 3 files changed, 9 insertions(+), 9 deletions(-) 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; -- 2.39.5