mirror of
https://github.com/overte-org/overte.git
synced 2025-08-10 11:13:09 +02:00
add back stale state for stats
This commit is contained in:
parent
842886d0fc
commit
cca13d6c96
3 changed files with 7 additions and 11 deletions
|
@ -71,8 +71,12 @@
|
||||||
margin: 0.2em;
|
margin: 0.2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
th.jh-key{
|
th.jh-key {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
th.jh-key.stale {
|
||||||
|
color: red;
|
||||||
}
|
}
|
||||||
|
|
||||||
.jh-type-object tr, .jh-type-array tr {
|
.jh-type-object tr, .jh-type-array tr {
|
||||||
|
|
|
@ -33,14 +33,6 @@ span.port {
|
||||||
color: #666666;
|
color: #666666;
|
||||||
}
|
}
|
||||||
|
|
||||||
.stats-key {
|
|
||||||
width: 400px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.stale {
|
|
||||||
color: red;
|
|
||||||
}
|
|
||||||
|
|
||||||
.locked {
|
.locked {
|
||||||
color: #428bca;
|
color: #428bca;
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,7 +21,7 @@ $(document).ready(function(){
|
||||||
|
|
||||||
$('#stats-container').html(stats);
|
$('#stats-container').html(stats);
|
||||||
}).fail(function(data) {
|
}).fail(function(data) {
|
||||||
$('#stats-table td').each(function(){
|
$('#stats-container th').each(function(){
|
||||||
$(this).addClass('stale');
|
$(this).addClass('stale');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue