Merge pull request #62 from cubedro/develop
Added bg color to propagation time
This commit is contained in:
commit
8a2bfd578c
@ -22,10 +22,22 @@ body {
|
|||||||
background: #FFD162;
|
background: #FFD162;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.bg-orange {
|
||||||
|
background: #ff8a00;
|
||||||
|
}
|
||||||
|
|
||||||
.bg-danger {
|
.bg-danger {
|
||||||
background: #F74B4B;
|
background: #F74B4B;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.bg-success,
|
||||||
|
.bg-info,
|
||||||
|
.bg-warning,
|
||||||
|
.bg-orange,
|
||||||
|
.bg-danger {
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
.text-gray {
|
.text-gray {
|
||||||
color: #777 !important;
|
color: #777 !important;
|
||||||
}
|
}
|
||||||
|
@ -92,18 +92,18 @@ angular.module('netStatsApp.filters', [])
|
|||||||
return 'text-gray';
|
return 'text-gray';
|
||||||
|
|
||||||
if(stats.block.propagation == 0)
|
if(stats.block.propagation == 0)
|
||||||
return 'text-info';
|
return 'bg-info';
|
||||||
|
|
||||||
if(stats.block.propagation < 1000)
|
if(stats.block.propagation < 1000)
|
||||||
return 'text-success';
|
return 'bg-success';
|
||||||
|
|
||||||
if(stats.block.propagation < 3000)
|
if(stats.block.propagation < 3000)
|
||||||
return 'text-warning';
|
return 'bg-warning';
|
||||||
|
|
||||||
if(stats.block.propagation < 7000)
|
if(stats.block.propagation < 7000)
|
||||||
return 'text-orange';
|
return 'bg-orange';
|
||||||
|
|
||||||
return 'text-danger'
|
return 'bg-danger'
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
.filter('latencyFilter', function() {
|
.filter('latencyFilter', function() {
|
||||||
|
Loading…
Reference in New Issue
Block a user