diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2014-02-17 11:45:36 +0600 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2014-02-17 11:45:36 +0600 |
commit | d9f4624d66c913bac2fd0da1c0393cc009a11ec7 (patch) | |
tree | 4fcd2d03168fbeeba114679647d00d3b411a45a6 | |
parent | 0d0d98cfe42511d55991bc378ed9700d9f62d1c4 (diff) | |
download | sonarqube-d9f4624d66c913bac2fd0da1c0393cc009a11ec7.tar.gz sonarqube-d9f4624d66c913bac2fd0da1c0393cc009a11ec7.zip |
New Issues Page: improve colors of icons, open component dashboard in a new tab.
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}} - <a href="<%= ApplicationController.root_context -%>{{dashboardUrl component componentQualifier}}">{{componentLongName}}</a> + <a target="_blank" href="<%= ApplicationController.root_context -%>{{dashboardUrl component componentQualifier}}">{{componentLongName}}</a> {{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; |