b701ad4f by Kevin Burton

update to the branding css and payhistory

1 parent 427080de
......@@ -451,6 +451,20 @@ input.dp-applied {
#invoice-table tfoot td { margin:0; padding:4px 2px 4px 10px; text-align: left; border-top:1px solid #ccc;border-right:1px solid #ccc; }
#invoice-table caption { text-align:left; font-size:11px; color:#777; padding-left:11px; text-transform: uppercase; }
.invoice-table { width: 100%; border:0; padding: 0px; margin: 0px; border-collapse: collapse; border:1px solid #ccc; margin: 8px 0px 4px 0px; }
.invoice-table thead th { margin:0; padding:5px 2px 5px 10px; text-align: left; border-bottom:1px solid #ccc; border-right:1px solid #ccc; }
.invoice-table thead td { margin:0; padding:4px 2px 4px 10px; text-align: left; }
.invoice-table tbody th { margin:0; padding:4px 2px 4px 10px; text-align: left; }
.invoice-table tbody td { margin:0; padding:4px 2px 4px 10px; text-align: left; border-right:1px solid #ccc; }
.invoice-table tbody tr.odd td { background-color: #f5f5f5; }
.invoice-table tbody tr.unpaid td { background-color: #efd5d5; color:#c17575; }
.invoice-table tbody tr.unpaid td a {color: #c17575;}
.invoice-table tbody tr.unpaid td a:hover {color: #CC4433;}
.invoice-table tfoot td { margin:0; padding:4px 2px 4px 10px; text-align: left; border-top:1px solid #ccc;border-right:1px solid #ccc; }
.invoice-table caption { text-align:left; font-size:11px; color:#777; padding-left:11px; text-transform: uppercase; }
.status-paid {
width:97px;
height:87px;
......
......@@ -110,7 +110,7 @@ use WP_User;
$invoice_type = get_post_meta($invoice->ID, 'invoice_for', true);
$html .= '<p>';
$html .= '<table cellpadding="0" cellspacing="0" border="0" id="invoice-table">';
$html .= '<table cellpadding="0" cellspacing="0" border="0" class="invoice-table">';
$html .= '<thead>';
$html .= '<tr>';
$html .= '<th>Item / Description</th>';
......@@ -194,7 +194,7 @@ use WP_User;
$html .= '</tbody>';
$html .= '</table>';
//if ($status != "credit") {
$html .= '<table cellpadding="0" cellspacing="0" border="0" class="clean" id="invoice-table">';
$html .= '<table cellpadding="0" cellspacing="0" border="0" class="clean invoice-table">';
$html .= '<tfoot>';
......