log time style
This commit is contained in:
parent
60f6d33eda
commit
acd04a1c16
@ -159,11 +159,15 @@ if (COCKPIT_ADMIN && !COCKPIT_API_REQUEST) {
|
|||||||
|
|
||||||
$logs = json_decode($logs);
|
$logs = json_decode($logs);
|
||||||
|
|
||||||
|
$lastTime = 0;
|
||||||
foreach ($logs as $l) {
|
foreach ($logs as $l) {
|
||||||
if (preg_match('/^\\+/', $l->out)) {
|
if (preg_match('/^\\+/', $l->out)) {
|
||||||
$logstr .= '<h3>'.htmlspecialchars($l->out).'</h3>';
|
$logstr .= '<h3>'.htmlspecialchars($l->out).'</h3>';
|
||||||
} else {
|
} else {
|
||||||
$logstr .= '<div class="timetext">'.$l->time.'s</div>';
|
if ($l->time != $lastTime) {
|
||||||
|
$logstr .= '<div class="timetext">'.$l->time.'s</div>';
|
||||||
|
$lastTime = $l->time;
|
||||||
|
}
|
||||||
$logstr .= preg_replace(array_keys($colors), $colors, htmlspecialchars($l->out));
|
$logstr .= preg_replace(array_keys($colors), $colors, htmlspecialchars($l->out));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -47,7 +47,13 @@ pre h2.failure {
|
|||||||
|
|
||||||
.stagename, .timetext {
|
.stagename, .timetext {
|
||||||
float: right;
|
float: right;
|
||||||
|
}
|
||||||
|
.stagename {
|
||||||
|
font-size: 0.9em;
|
||||||
|
}
|
||||||
|
.timetext {
|
||||||
font-size: 0.8em;
|
font-size: 0.8em;
|
||||||
|
color: #a3a3a3;
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
Loading…
Reference in New Issue
Block a user