From 1a2175816733cea02a277ea1358bcc53c51759dc Mon Sep 17 00:00:00 2001 From: Karl Cordes Date: Tue, 27 Jan 2009 12:59:37 +1100 Subject: [PATCH] Changed Info Colour to White, Info Sent Blue --- views/elements/enquiry_table.ctp | 3 +++ webroot/css/quotenik.css | 3 +++ 2 files changed, 6 insertions(+) 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; }