diff --git a/views/elements/enquiry_table.ctp b/views/elements/enquiry_table.ctp index 547e66ce..eff29d2e 100644 --- a/views/elements/enquiry_table.ctp +++ b/views/elements/enquiry_table.ctp @@ -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"'; } diff --git a/webroot/css/quotenik.css b/webroot/css/quotenik.css index 5c117df1..d40e8362 100755 --- a/webroot/css/quotenik.css +++ b/webroot/css/quotenik.css @@ -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; }