webif/webif/html/diag/queue/style.css

60 lines
612 B
CSS

/* constrain File column width */
td:nth-child(3), th:nth-child(3)
{
max-width: 50ch;
overflow: hidden;
text-overflow: ellipsis;
}
td.status
{
font-style: italic;
}
td
{
white-space: nowrap;
}
td.status.RUNNING
{
color: red;
}
td.status.COMPLETE
{
color: green;
font-weight: bold;
}
td.status.INTERRUPTED
{
color: #ffa500;
font-weight: bold;
}
div.buttonbar
{
padding-top: 5px;
}
div#loading, div#nodata
{
font-style: italic;
color: #ff4000;
}
#lastscan
{
color: #999;
background: transparent;
font-style: italic;
padding-top: 2px;
}
button.small
{
padding: .1em .5em .1em .1em;
}