Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
HAWKULAR-213 Adjust the Response Time metrics graph legend to new cha…
Browse files Browse the repository at this point in the history
…rt colors.
  • Loading branch information
mtho11 committed Jun 22, 2015
1 parent d5e8730 commit 08e13cc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ <h3 class="pull-left">Metrics</h3>
<div class="panel panel-default hk-graph" ng-if="vm.average >= 0">
<h2>Response Time</h2>
<div class="hk-legend text-left" ng-show="vm.chartData.dataPoints.length > 0">
<span><i class="fa fa-circle hk-blue"></i>Response Time</span>
<span><i class="fa fa-circle hk-red"></i>Response Time (above the threshold)</span>
<span><i class="fa fa-circle hk-chart-line-blue"></i>Response Time</span>
<span><i class="fa fa-circle hk-alert-lightred"></i>Response Time (above the threshold)</span>
</div>

<p class="label label-info waiting-label" ng-hide="vm.chartData.dataPoints.length > 0" >We are
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -826,11 +826,18 @@ a:hover .fa-spinner {
.hk-blue {
color: @brand-primary;
}
.hk-chart-line-blue {
color: #1884c7;
}

.hk-red {
color: @brand-danger;
}

.hk-alert-lightred {
color: #feedee;
}

.hk-orange {
color: #f57f20;
}
Expand Down

0 comments on commit 08e13cc

Please sign in to comment.