Changed Info Colour to White, Info Sent Blue

This commit is contained in:
Karl Cordes 2009-01-27 12:59:37 +11:00
parent 51906fbdf1
commit 1a21758167
2 changed files with 6 additions and 0 deletions

View file

@ -47,6 +47,9 @@ foreach ($enquiries as $enquiry):
else if($enquiry['Status']['id'] == 6) {
$class = ' class="information"';
}
else if($enquiry['Status']['id'] == 11) {
$class = ' class="informationsent"';
}
else if($enquiry['Status']['id'] == 5) {
$class = ' class="quoted"';
}

View file

@ -309,6 +309,9 @@ table.mer tr.jobwon td {
background: #55E055;
}
table.mer tr.information td {
background: #FFFFFF;
}
table.mer tr.informationsent td {
background: #ADD8E6;
}