27 lines
362 B
CSS
27 lines
362 B
CSS
table {
|
|
width: 100%;
|
|
}
|
|
table tbody tr td:first-child {
|
|
padding-right: 3rem !important;
|
|
}
|
|
|
|
.line-stderr {
|
|
background-color: rgba(255, 0, 0, 0.5);
|
|
}
|
|
|
|
.logs-lines {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.task-status_running {
|
|
background-color: blue;
|
|
}
|
|
|
|
.task-status_success {
|
|
background-color: green;
|
|
}
|
|
|
|
.task-status_failed {
|
|
background-color: red;
|
|
}
|