]> source.dussan.org Git - sonarqube.git/commitdiff
New Issues Page: improve colors of icons, open component dashboard in a new tab.
authorStas Vilchik <vilchiks@gmail.com>
Mon, 17 Feb 2014 05:45:36 +0000 (11:45 +0600)
committerStas Vilchik <vilchiks@gmail.com>
Mon, 17 Feb 2014 05:45:36 +0000 (11:45 +0600)
sonar-server/src/main/webapp/WEB-INF/app/views/issues/templates/_issue_detail.hbs.erb
sonar-server/src/main/webapp/stylesheets/icons.css
sonar-server/src/main/webapp/stylesheets/variables.less

index fc7587ab5d7429c496ce5c56686304376e561482..2c884b1a725fa844fa83bb8690e279fc2bf62599 100644 (file)
@@ -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}}
index 2043baf7270fc4a589118dad38d69fef4a57b40d..c3ae8b442042b16e81ce80814f2d057c1682ecfd 100644 (file)
 }
 .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;
 }
index 23f27fe2c2e363bacdee561e3db3ad520507443a..b500bd544e3bc5464e1afe4d2a93b20ed134e533 100644 (file)
 @severityMinorColor: @green;
 @severityInfoColor: @green;
 
-@statusOpenColor: @green;
-@statusConfirmedColor: @red;
-@statusReopenedColor: @green;
-@statusResolvedColor: @blue;
+@statusOpenColor: @blue;
+@statusConfirmedColor: @blue;
+@statusReopenedColor: @blue;
+@statusResolvedColor: @baseFontColor;
 @statusClosedColor: @baseFontColor;
 
 @resolutionFixedColor: @baseFontColor;