By editing StatusStyle.css it is possible to have jobs highlighted in the Daily and Weekly Schedules with special colors based on their status and/or priority. In the following example documents with status 4 (Completed) will have a blue background with white font.

a.docStatus4 h3 #DocNumber

{

    background-color: Blue;

    color: White;

}

 

In the below example the document needs to have both status 5 (yellow) and priority 4 (red).

a.docStatus5.docPriority4 h3 #DocNumber

{

    background-color: Red;

    color: White;

}