CHANGE_UI_FIX - VADIVEL J 2025-08-29

This commit is contained in:
vadivelJ96 2025-08-29 17:56:19 +05:30
parent bb212d64f0
commit 4b6df16555
87 changed files with 163 additions and 174 deletions

View File

@ -184,7 +184,7 @@ class ClientController extends AdminController
public function testMailAttachments($email = 'venkateshraman786@gmail.com') public function testMailAttachments($email = 'venkateshraman786@gmail.com')
{ {
$message = '<style>body{font-family:Arial,sans-serif;color:#333;line-height:1.6;margin:0;padding:0}.email-container{width:100%;max-width:600px;margin:0 auto;padding:20px;border:1px solid #e0e0e0;background-color:#f9f9f9}.header{background-color:#4a90e2;color:#fff;padding:15px;text-align:center}.header h1{margin:0;font-size:24px}.content{padding:20px;background-color:#fff}.content h2{color:#4a90e2;font-size:20px;margin-top:0}.content p{margin:10px 0}.details-table{width:100%;border-collapse:collapse;margin-top:20px}.details-table td,.details-table th{border:1px solid #ddd;padding:10px;text-align:left}.details-table th{background-color:#f2f2f2}.footer{margin-top:20px;font-size:12px;color:#777;text-align:center}.attachment-note{margin-top:20px;padding:10px;background-color:#f7f7f7;border-left:4px solid #4a90e2;font-style:italic}</style><div class=email-container><div class=header><h1>Request for Quotation (RFQ)</h1></div><div class=content><h2>Dear {{RECIPIENT_NAME}},</h2><p>We are reaching out to request a quotation for the following insurance coverage. Please review the details below and provide your quote at your earliest convenience.<h2>RFQ Details</h2><table class=details-table><tr><th>Client name<td>{{CLIENT_NAME}}<tr><th>Coverage Type<td>{{POLICY_LONG_NAME}}<tr><th>Policy Start Date<td>{{POLICY_START_DATE}}<tr><th>Policy Duration<td>{{DURATION}}</table><div class=attachment-note>Please note: Additional terms and details are included in the attachment for your reference.</div><p>Please feel free to reach out if you require any further information to prepare the quote. We look forward to receiving your proposal.<p>Best regards,<p><strong>Nhance India Pvt Ltd</strong><br></div><div class=footer><p>© Nhance India Pvt Ltd. All rights reserved.</div></div>'; $message = '<style>body{font-family:Arial,sans-serif;color:#333;line-height:1.6;margin:0;padding:0}.email-container{width:100%;max-width:600px;margin:0 auto;padding:20px;border:1px solid #e0e0e0;background-color:#f9f9f9}.header{background-color:#4a90e2;color:#fff;padding:15px;text-align:center}.header h1{margin:0;font-size:24px}.content{padding:20px;background-color:#fff}.content h2{color:#4a90e2;font-size:20px;margin-top:0}.content p{margin:10px 0}.details-table{width:100%;border-collapse:collapse;margin-top:20px}.details-table td,.details-table th{border:1px solid #ddd;padding:10px;text-align:left}.details-table th{background-color:#f2f2f2}.footer{margin-top:20px;font-size:12px;color:#777;text-align:center}.attachment-note{margin-top:20px;padding:10px;background-color:#f7f7f7;border-left:4px solid #4a90e2;font-style:italic}</style><div class=email-container><div class=header><h1>Request for Quotation (RFQ)</h1></div><div class=content><h2>Dear {{RECIPIENT_NAME}},</h2><p>We are reaching out to request a quotation for the following insurance coverage. Please review the details below and provide your quote at your earliest convenience.<h2>RFQ Details</h2><table data-custom-table-css="table" class=details-table><tr><th>Client name<td>{{CLIENT_NAME}}<tr><th>Coverage Type<td>{{POLICY_LONG_NAME}}<tr><th>Policy Start Date<td>{{POLICY_START_DATE}}<tr><th>Policy Duration<td>{{DURATION}}</table><div class=attachment-note>Please note: Additional terms and details are included in the attachment for your reference.</div><p>Please feel free to reach out if you require any further information to prepare the quote. We look forward to receiving your proposal.<p>Best regards,<p><strong>Nhance India Pvt Ltd</strong><br></div><div class=footer><p>© Nhance India Pvt Ltd. All rights reserved.</div></div>';
// $attachments = [ // $attachments = [
// ["filePath" => ROOTPATH."public/sample_excel/sample_addition.xls","fileName" => "sample_addition.xls"], // ["filePath" => ROOTPATH."public/sample_excel/sample_addition.xls","fileName" => "sample_addition.xls"],

View File

@ -307,7 +307,7 @@ public function convertToPdf($inputFile = null)
{ {
// Customize this based on your needs // Customize this based on your needs
$html = '<h2>' . htmlspecialchars($worksheet->getTitle()) . '</h2>'; $html = '<h2>' . htmlspecialchars($worksheet->getTitle()) . '</h2>';
$html .= '<table border="1" cellpadding="5">'; $html .= '<table data-custom-table-css="table" border="1" cellpadding="5">';
foreach ($worksheet->getRowIterator() as $row) { foreach ($worksheet->getRowIterator() as $row) {
$html .= '<tr>'; $html .= '<tr>';

View File

@ -2747,7 +2747,7 @@ class LeadsController extends BaseController
$subject = $file_type == 'rfq' ? 'Request for Quotation from ' . $lead_data['client_name'] . ' for ' . $lead_data['policy_type'] : 'Quotation Comparison Report for ' . $lead_data['policy_type']; $subject = $file_type == 'rfq' ? 'Request for Quotation from ' . $lead_data['client_name'] . ' for ' . $lead_data['policy_type'] : 'Quotation Comparison Report for ' . $lead_data['policy_type'];
$original_message = '<div style="width:100%;max-width:600px;margin:0 auto;padding:20px;border:1px solid #e0e0e0;background-color:#f9f9f9;font-family:Arial,sans-serif;color:#333;line-height:1.6"><div style=background-color:#4a90e2;color:#fff;padding:15px;text-align:center><h1 style=margin:0;font-size:24px>Request for Quotation (RFQ)</h1></div><div style=padding:20px;background-color:#fff><h2 style=color:#4a90e2;font-size:20px;margin-top:0>Dear {{RECIPIENT_NAME}},</h2><p>We are reaching out to request a quotation for the following insurance coverage. Please review the details below and provide your quote at your earliest convenience.<h2 style=color:#4a90e2;font-size:20px;margin-top:20px>RFQ Details</h2><table style=width:100%;border-collapse:collapse;margin-top:20px><tr><th style="border:1px solid #ddd;padding:10px;text-align:left;background-color:#f2f2f2">Client name<td style="border:1px solid #ddd;padding:10px;text-align:left">{{CLIENT_NAME}}<tr><th style="border:1px solid #ddd;padding:10px;text-align:left;background-color:#f2f2f2">Coverage Type<td style="border:1px solid #ddd;padding:10px;text-align:left">{{POLICY_LONG_NAME}}<tr><th style="border:1px solid #ddd;padding:10px;text-align:left;background-color:#f2f2f2">Policy Start Date<td style="border:1px solid #ddd;padding:10px;text-align:left">{{POLICY_START_DATE}}<tr><th style="border:1px solid #ddd;padding:10px;text-align:left;background-color:#f2f2f2">Policy Duration<td style="border:1px solid #ddd;padding:10px;text-align:left">{{DURATION}}</table><div style="margin-top:20px;padding:10px;background-color:#f7f7f7;border-left:4px solid #4a90e2;font-style:italic">Please note: Additional terms and details are included in the attachment for your reference.</div><p>Please feel free to reach out if you require any further information to prepare the quote. We look forward to receiving your proposal.<p>Best regards,<p><strong>Nhance India Pvt Ltd</strong><br></div><div style=margin-top:20px;font-size:12px;color:#777;text-align:center><p>© Nhance India Pvt Ltd. All rights reserved.</div></div>'; $original_message = '<div style="width:100%;max-width:600px;margin:0 auto;padding:20px;border:1px solid #e0e0e0;background-color:#f9f9f9;font-family:Arial,sans-serif;color:#333;line-height:1.6"><div style=background-color:#4a90e2;color:#fff;padding:15px;text-align:center><h1 style=margin:0;font-size:24px>Request for Quotation (RFQ)</h1></div><div style=padding:20px;background-color:#fff><h2 style=color:#4a90e2;font-size:20px;margin-top:0>Dear {{RECIPIENT_NAME}},</h2><p>We are reaching out to request a quotation for the following insurance coverage. Please review the details below and provide your quote at your earliest convenience.<h2 style=color:#4a90e2;font-size:20px;margin-top:20px>RFQ Details</h2><table data-custom-table-css="table" style=width:100%;border-collapse:collapse;margin-top:20px><tr><th style="border:1px solid #ddd;padding:10px;text-align:left;background-color:#f2f2f2">Client name<td style="border:1px solid #ddd;padding:10px;text-align:left">{{CLIENT_NAME}}<tr><th style="border:1px solid #ddd;padding:10px;text-align:left;background-color:#f2f2f2">Coverage Type<td style="border:1px solid #ddd;padding:10px;text-align:left">{{POLICY_LONG_NAME}}<tr><th style="border:1px solid #ddd;padding:10px;text-align:left;background-color:#f2f2f2">Policy Start Date<td style="border:1px solid #ddd;padding:10px;text-align:left">{{POLICY_START_DATE}}<tr><th style="border:1px solid #ddd;padding:10px;text-align:left;background-color:#f2f2f2">Policy Duration<td style="border:1px solid #ddd;padding:10px;text-align:left">{{DURATION}}</table><div style="margin-top:20px;padding:10px;background-color:#f7f7f7;border-left:4px solid #4a90e2;font-style:italic">Please note: Additional terms and details are included in the attachment for your reference.</div><p>Please feel free to reach out if you require any further information to prepare the quote. We look forward to receiving your proposal.<p>Best regards,<p><strong>Nhance India Pvt Ltd</strong><br></div><div style=margin-top:20px;font-size:12px;color:#777;text-align:center><p>© Nhance India Pvt Ltd. All rights reserved.</div></div>';
//for mail content //for mail content
if (!empty($mail_content)) { if (!empty($mail_content)) {
@ -4901,7 +4901,7 @@ class LeadsController extends BaseController
// Start table with clean styling // Start table with clean styling
$html .= "<h3 style='color: #333; font-weight: 500; margin-bottom: 15px;'>{$category}</h3>"; $html .= "<h3 style='color: #333; font-weight: 500; margin-bottom: 15px;'>{$category}</h3>";
$html .= "<table style='width: 100%; border-collapse: collapse; font-family: Arial, sans-serif; font-size: 14px;'>"; $html .= "<table data-custom-table-css="table" style='width: 100%; border-collapse: collapse; font-family: Arial, sans-serif; font-size: 14px;'>";
// Table header with light background // Table header with light background
$html .= "<tr>"; $html .= "<tr>";

View File

@ -1798,7 +1798,7 @@ class MasterController extends AdminController
$email_id = CLI::getOption('to') ? CLI::getOption('to') : $email_id; $email_id = CLI::getOption('to') ? CLI::getOption('to') : $email_id;
// print_r($email_id);die(); // print_r($email_id);die();
// $gmailapi = \Config\Services::gmailapi(); // $gmailapi = \Config\Services::gmailapi();
$message = '<style>body{font-family:Arial,sans-serif;color:#333;line-height:1.6;margin:0;padding:0}.email-container{width:100%;max-width:600px;margin:0 auto;padding:20px;border:1px solid #e0e0e0;background-color:#f9f9f9}.header{background-color:#4a90e2;color:#fff;padding:15px;text-align:center}.header h1{margin:0;font-size:24px}.content{padding:20px;background-color:#fff}.content h2{color:#4a90e2;font-size:20px;margin-top:0}.content p{margin:10px 0}.details-table{width:100%;border-collapse:collapse;margin-top:20px}.details-table td,.details-table th{border:1px solid #ddd;padding:10px;text-align:left}.details-table th{background-color:#f2f2f2}.footer{margin-top:20px;font-size:12px;color:#777;text-align:center}.attachment-note{margin-top:20px;padding:10px;background-color:#f7f7f7;border-left:4px solid #4a90e2;font-style:italic}</style><div class=email-container><div class=header><h1>Request for Quotation (RFQ)</h1></div><div class=content><h2>Dear {{RECIPIENT_NAME}},</h2><p>We are reaching out to request a quotation for the following insurance coverage. Please review the details below and provide your quote at your earliest convenience.<h2>RFQ Details</h2><table class=details-table><tr><th>Client name<td>{{CLIENT_NAME}}<tr><th>Coverage Type<td>{{POLICY_LONG_NAME}}<tr><th>Policy Start Date<td>{{POLICY_START_DATE}}<tr><th>Policy Duration<td>{{DURATION}}</table><div class=attachment-note>Please note: Additional terms and details are included in the attachment for your reference.</div><p>Please feel free to reach out if you require any further information to prepare the quote. We look forward to receiving your proposal.<p>Best regards,<p><strong>Nhance India Pvt Ltd</strong><br></div><div class=footer><p>© Nhance India Pvt Ltd. All rights reserved.</div></div>'; $message = '<style>body{font-family:Arial,sans-serif;color:#333;line-height:1.6;margin:0;padding:0}.email-container{width:100%;max-width:600px;margin:0 auto;padding:20px;border:1px solid #e0e0e0;background-color:#f9f9f9}.header{background-color:#4a90e2;color:#fff;padding:15px;text-align:center}.header h1{margin:0;font-size:24px}.content{padding:20px;background-color:#fff}.content h2{color:#4a90e2;font-size:20px;margin-top:0}.content p{margin:10px 0}.details-table{width:100%;border-collapse:collapse;margin-top:20px}.details-table td,.details-table th{border:1px solid #ddd;padding:10px;text-align:left}.details-table th{background-color:#f2f2f2}.footer{margin-top:20px;font-size:12px;color:#777;text-align:center}.attachment-note{margin-top:20px;padding:10px;background-color:#f7f7f7;border-left:4px solid #4a90e2;font-style:italic}</style><div class=email-container><div class=header><h1>Request for Quotation (RFQ)</h1></div><div class=content><h2>Dear {{RECIPIENT_NAME}},</h2><p>We are reaching out to request a quotation for the following insurance coverage. Please review the details below and provide your quote at your earliest convenience.<h2>RFQ Details</h2><table data-custom-table-css="table" class=details-table><tr><th>Client name<td>{{CLIENT_NAME}}<tr><th>Coverage Type<td>{{POLICY_LONG_NAME}}<tr><th>Policy Start Date<td>{{POLICY_START_DATE}}<tr><th>Policy Duration<td>{{DURATION}}</table><div class=attachment-note>Please note: Additional terms and details are included in the attachment for your reference.</div><p>Please feel free to reach out if you require any further information to prepare the quote. We look forward to receiving your proposal.<p>Best regards,<p><strong>Nhance India Pvt Ltd</strong><br></div><div class=footer><p>© Nhance India Pvt Ltd. All rights reserved.</div></div>';
// $attachments = [ // $attachments = [
// ["filePath" => WRITEPATH."uploads/excel/sample/correction.xls","fileName" => "correction.xls"], // ["filePath" => WRITEPATH."uploads/excel/sample/correction.xls","fileName" => "correction.xls"],
@ -1821,7 +1821,7 @@ class MasterController extends AdminController
public function testZeptoSMTP() public function testZeptoSMTP()
{ {
$message = '<style>body{font-family:Arial,sans-serif;color:#333;line-height:1.6;margin:0;padding:0}.email-container{width:100%;max-width:600px;margin:0 auto;padding:20px;border:1px solid #e0e0e0;background-color:#f9f9f9}.header{background-color:#4a90e2;color:#fff;padding:15px;text-align:center}.header h1{margin:0;font-size:24px}.content{padding:20px;background-color:#fff}.content h2{color:#4a90e2;font-size:20px;margin-top:0}.content p{margin:10px 0}.details-table{width:100%;border-collapse:collapse;margin-top:20px}.details-table td,.details-table th{border:1px solid #ddd;padding:10px;text-align:left}.details-table th{background-color:#f2f2f2}.footer{margin-top:20px;font-size:12px;color:#777;text-align:center}.attachment-note{margin-top:20px;padding:10px;background-color:#f7f7f7;border-left:4px solid #4a90e2;font-style:italic}</style><div class=email-container><div class=header><h1>Request for Quotation (RFQ)</h1></div><div class=content><h2>Dear {{RECIPIENT_NAME}},</h2><p>We are reaching out to request a quotation for the following insurance coverage. Please review the details below and provide your quote at your earliest convenience.<h2>RFQ Details</h2><table class=details-table><tr><th>Client name<td>{{CLIENT_NAME}}<tr><th>Coverage Type<td>{{POLICY_LONG_NAME}}<tr><th>Policy Start Date<td>{{POLICY_START_DATE}}<tr><th>Policy Duration<td>{{DURATION}}</table><div class=attachment-note>Please note: Additional terms and details are included in the attachment for your reference.</div><p>Please feel free to reach out if you require any further information to prepare the quote. We look forward to receiving your proposal.<p>Best regards,<p><strong>Nhance India Pvt Ltd</strong><br></div><div class=footer><p>© Nhance India Pvt Ltd. All rights reserved.</div></div>'; $message = '<style>body{font-family:Arial,sans-serif;color:#333;line-height:1.6;margin:0;padding:0}.email-container{width:100%;max-width:600px;margin:0 auto;padding:20px;border:1px solid #e0e0e0;background-color:#f9f9f9}.header{background-color:#4a90e2;color:#fff;padding:15px;text-align:center}.header h1{margin:0;font-size:24px}.content{padding:20px;background-color:#fff}.content h2{color:#4a90e2;font-size:20px;margin-top:0}.content p{margin:10px 0}.details-table{width:100%;border-collapse:collapse;margin-top:20px}.details-table td,.details-table th{border:1px solid #ddd;padding:10px;text-align:left}.details-table th{background-color:#f2f2f2}.footer{margin-top:20px;font-size:12px;color:#777;text-align:center}.attachment-note{margin-top:20px;padding:10px;background-color:#f7f7f7;border-left:4px solid #4a90e2;font-style:italic}</style><div class=email-container><div class=header><h1>Request for Quotation (RFQ)</h1></div><div class=content><h2>Dear {{RECIPIENT_NAME}},</h2><p>We are reaching out to request a quotation for the following insurance coverage. Please review the details below and provide your quote at your earliest convenience.<h2>RFQ Details</h2><table data-custom-table-css="table" class=details-table><tr><th>Client name<td>{{CLIENT_NAME}}<tr><th>Coverage Type<td>{{POLICY_LONG_NAME}}<tr><th>Policy Start Date<td>{{POLICY_START_DATE}}<tr><th>Policy Duration<td>{{DURATION}}</table><div class=attachment-note>Please note: Additional terms and details are included in the attachment for your reference.</div><p>Please feel free to reach out if you require any further information to prepare the quote. We look forward to receiving your proposal.<p>Best regards,<p><strong>Nhance India Pvt Ltd</strong><br></div><div class=footer><p>© Nhance India Pvt Ltd. All rights reserved.</div></div>';
$attachments = [ $attachments = [
["filePath" => ROOTPATH . "public/sample_excel/sample_addition.xls", "fileName" => "sample_addition.xls"], ["filePath" => ROOTPATH . "public/sample_excel/sample_addition.xls", "fileName" => "sample_addition.xls"],
["filePath" => ROOTPATH . "public/sample_excel/sample_inception.xls", "fileName" => "sample_inception.xls"], ["filePath" => ROOTPATH . "public/sample_excel/sample_inception.xls", "fileName" => "sample_inception.xls"],
@ -1973,7 +1973,7 @@ class MasterController extends AdminController
public function sendMutipleToEmails() public function sendMutipleToEmails()
{ {
$message = '<style>body{font-family:Arial,sans-serif;color:#333;line-height:1.6;margin:0;padding:0}.email-container{width:100%;max-width:600px;margin:0 auto;padding:20px;border:1px solid #e0e0e0;background-color:#f9f9f9}.header{background-color:#4a90e2;color:#fff;padding:15px;text-align:center}.header h1{margin:0;font-size:24px}.content{padding:20px;background-color:#fff}.content h2{color:#4a90e2;font-size:20px;margin-top:0}.content p{margin:10px 0}.details-table{width:100%;border-collapse:collapse;margin-top:20px}.details-table td,.details-table th{border:1px solid #ddd;padding:10px;text-align:left}.details-table th{background-color:#f2f2f2}.footer{margin-top:20px;font-size:12px;color:#777;text-align:center}.attachment-note{margin-top:20px;padding:10px;background-color:#f7f7f7;border-left:4px solid #4a90e2;font-style:italic}</style><div class=email-container><div class=header><h1>Request for Quotation (RFQ)</h1></div><div class=content><h2>Dear {{RECIPIENT_NAME}},</h2><p>We are reaching out to request a quotation for the following insurance coverage. Please review the details below and provide your quote at your earliest convenience.<h2>RFQ Details</h2><table class=details-table><tr><th>Client name<td>{{CLIENT_NAME}}<tr><th>Coverage Type<td>{{POLICY_LONG_NAME}}<tr><th>Policy Start Date<td>{{POLICY_START_DATE}}<tr><th>Policy Duration<td>{{DURATION}}</table><div class=attachment-note>Please note: Additional terms and details are included in the attachment for your reference.</div><p>Please feel free to reach out if you require any further information to prepare the quote. We look forward to receiving your proposal.<p>Best regards,<p><strong>Nhance India Pvt Ltd</strong><br></div><div class=footer><p>© Nhance India Pvt Ltd. All rights reserved.</div></div>'; $message = '<style>body{font-family:Arial,sans-serif;color:#333;line-height:1.6;margin:0;padding:0}.email-container{width:100%;max-width:600px;margin:0 auto;padding:20px;border:1px solid #e0e0e0;background-color:#f9f9f9}.header{background-color:#4a90e2;color:#fff;padding:15px;text-align:center}.header h1{margin:0;font-size:24px}.content{padding:20px;background-color:#fff}.content h2{color:#4a90e2;font-size:20px;margin-top:0}.content p{margin:10px 0}.details-table{width:100%;border-collapse:collapse;margin-top:20px}.details-table td,.details-table th{border:1px solid #ddd;padding:10px;text-align:left}.details-table th{background-color:#f2f2f2}.footer{margin-top:20px;font-size:12px;color:#777;text-align:center}.attachment-note{margin-top:20px;padding:10px;background-color:#f7f7f7;border-left:4px solid #4a90e2;font-style:italic}</style><div class=email-container><div class=header><h1>Request for Quotation (RFQ)</h1></div><div class=content><h2>Dear {{RECIPIENT_NAME}},</h2><p>We are reaching out to request a quotation for the following insurance coverage. Please review the details below and provide your quote at your earliest convenience.<h2>RFQ Details</h2><table data-custom-table-css="table" class=details-table><tr><th>Client name<td>{{CLIENT_NAME}}<tr><th>Coverage Type<td>{{POLICY_LONG_NAME}}<tr><th>Policy Start Date<td>{{POLICY_START_DATE}}<tr><th>Policy Duration<td>{{DURATION}}</table><div class=attachment-note>Please note: Additional terms and details are included in the attachment for your reference.</div><p>Please feel free to reach out if you require any further information to prepare the quote. We look forward to receiving your proposal.<p>Best regards,<p><strong>Nhance India Pvt Ltd</strong><br></div><div class=footer><p>© Nhance India Pvt Ltd. All rights reserved.</div></div>';
$attachments = [ $attachments = [
["filePath" => ROOTPATH . "public/sample_excel/sample_addition.xls", "fileName" => "sample_addition.xls"], ["filePath" => ROOTPATH . "public/sample_excel/sample_addition.xls", "fileName" => "sample_addition.xls"],
["filePath" => ROOTPATH . "public/sample_excel/sample_inception.xls", "fileName" => "sample_inception.xls"], ["filePath" => ROOTPATH . "public/sample_excel/sample_inception.xls", "fileName" => "sample_inception.xls"],

View File

@ -393,18 +393,18 @@ class ChatbotHelper
<body class="clean-body u_body" style="margin: 0;padding: 0;-webkit-text-size-adjust: 100%;background-color: #F9F9F9;color: #000000"> <body class="clean-body u_body" style="margin: 0;padding: 0;-webkit-text-size-adjust: 100%;background-color: #F9F9F9;color: #000000">
<!--[if IE]><div class="ie-container"><![endif]--> <!--[if IE]><div class="ie-container"><![endif]-->
<!--[if mso]><div class="mso-container"><![endif]--> <!--[if mso]><div class="mso-container"><![endif]-->
<table style="border-collapse: collapse;table-layout: fixed;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;vertical-align: top;min-width: 320px;Margin: 0 auto;background-color: #F9F9F9;width:100%" cellpadding="0" cellspacing="0"> <table data-custom-table-css="table" style="border-collapse: collapse;table-layout: fixed;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;vertical-align: top;min-width: 320px;Margin: 0 auto;background-color: #F9F9F9;width:100%" cellpadding="0" cellspacing="0">
<tbody> <tbody>
<tr style="vertical-align: top"> <tr style="vertical-align: top">
<td style="word-break: break-word;border-collapse: collapse !important;vertical-align: top"> <td style="word-break: break-word;border-collapse: collapse !important;vertical-align: top">
<!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td align="center" style="background-color: #F9F9F9;"><![endif]--> <!--[if (mso)|(IE)]><table data-custom-table-css="table" width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td align="center" style="background-color: #F9F9F9;"><![endif]-->
<div class="u-row-container" style="padding: 0px;background-color: transparent"> <div class="u-row-container" style="padding: 0px;background-color: transparent">
<div class="u-row" style="margin: 0 auto;min-width: 320px;max-width: 620px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: transparent;"> <div class="u-row" style="margin: 0 auto;min-width: 320px;max-width: 620px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: transparent;">
<div style="border-collapse: collapse;display: table;width: 100%;height: 100%;background-color: transparent;"> <div style="border-collapse: collapse;display: table;width: 100%;height: 100%;background-color: transparent;">
<!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding: 0px;background-color: transparent;" align="center"><table cellpadding="0" cellspacing="0" border="0" style="width:620px;"><tr style="background-color: transparent;"><![endif]--> <!--[if (mso)|(IE)]><table data-custom-table-css="table" width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding: 0px;background-color: transparent;" align="center"><table data-custom-table-css="table" cellpadding="0" cellspacing="0" border="0" style="width:620px;"><tr style="background-color: transparent;"><![endif]-->
<!--[if (mso)|(IE)]><td align="center" width="620" style="width: 620px;padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;border-radius: 0px;-webkit-border-radius: 0px; -moz-border-radius: 0px;" valign="top"><![endif]--> <!--[if (mso)|(IE)]><td align="center" width="620" style="width: 620px;padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;border-radius: 0px;-webkit-border-radius: 0px; -moz-border-radius: 0px;" valign="top"><![endif]-->
<div class="u-col u-col-100" style="max-width: 320px;min-width: 620px;display: table-cell;vertical-align: top;"> <div class="u-col u-col-100" style="max-width: 320px;min-width: 620px;display: table-cell;vertical-align: top;">
@ -412,12 +412,12 @@ class ChatbotHelper
<!--[if (!mso)&(!IE)]><!--> <!--[if (!mso)&(!IE)]><!-->
<div style="box-sizing: border-box; height: 100%; padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;border-radius: 0px;-webkit-border-radius: 0px; -moz-border-radius: 0px;"><!--<![endif]--> <div style="box-sizing: border-box; height: 100%; padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;border-radius: 0px;-webkit-border-radius: 0px; -moz-border-radius: 0px;"><!--<![endif]-->
<table style="font-family:times new roman,times;" role="presentation" cellpadding="0" cellspacing="0" width="100%" border="0"> <table data-custom-table-css="table" style="font-family:times new roman,times;" role="presentation" cellpadding="0" cellspacing="0" width="100%" border="0">
<tbody> <tbody>
<tr> <tr>
<td style="overflow-wrap:break-word;word-break:break-word;padding:10px;font-family:times new roman,times;" align="left"> <td style="overflow-wrap:break-word;word-break:break-word;padding:10px;font-family:times new roman,times;" align="left">
<table width="100%" cellpadding="0" cellspacing="0" border="0"> <table data-custom-table-css="table" width="100%" cellpadding="0" cellspacing="0" border="0">
<tr> <tr>
<td style="padding-right: 0px;padding-left: 0px;" align="center"> <td style="padding-right: 0px;padding-left: 0px;" align="center">
@ -449,7 +449,7 @@ class ChatbotHelper
<div class="u-row-container" style="padding: 0px;background-color: transparent"> <div class="u-row-container" style="padding: 0px;background-color: transparent">
<div class="u-row" style="margin: 0 auto;min-width: 320px;max-width: 620px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: transparent;"> <div class="u-row" style="margin: 0 auto;min-width: 320px;max-width: 620px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: transparent;">
<div style="border-collapse: collapse;display: table;width: 100%;height: 100%;background-color: transparent;"> <div style="border-collapse: collapse;display: table;width: 100%;height: 100%;background-color: transparent;">
<!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding: 0px;background-color: transparent;" align="center"><table cellpadding="0" cellspacing="0" border="0" style="width:620px;"><tr style="background-color: transparent;"><![endif]--> <!--[if (mso)|(IE)]><table data-custom-table-css="table" width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding: 0px;background-color: transparent;" align="center"><table data-custom-table-css="table" cellpadding="0" cellspacing="0" border="0" style="width:620px;"><tr style="background-color: transparent;"><![endif]-->
<!--[if (mso)|(IE)]><td align="center" width="620" style="width: 620px;padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;" valign="top"><![endif]--> <!--[if (mso)|(IE)]><td align="center" width="620" style="width: 620px;padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;" valign="top"><![endif]-->
<div class="u-col u-col-100" style="max-width: 320px;min-width: 620px;display: table-cell;vertical-align: top;"> <div class="u-col u-col-100" style="max-width: 320px;min-width: 620px;display: table-cell;vertical-align: top;">
@ -457,7 +457,7 @@ class ChatbotHelper
<!--[if (!mso)&(!IE)]><!--> <!--[if (!mso)&(!IE)]><!-->
<div style="box-sizing: border-box; height: 100%; padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;"><!--<![endif]--> <div style="box-sizing: border-box; height: 100%; padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;"><!--<![endif]-->
<table style="font-family:times new roman,times;" role="presentation" cellpadding="0" cellspacing="0" width="100%" border="0"> <table data-custom-table-css="table" style="font-family:times new roman,times;" role="presentation" cellpadding="0" cellspacing="0" width="100%" border="0">
<tbody> <tbody>
<tr> <tr>
<td style="overflow-wrap:break-word;word-break:break-word;padding:10px;font-family:times new roman,times;" align="left"> <td style="overflow-wrap:break-word;word-break:break-word;padding:10px;font-family:times new roman,times;" align="left">
@ -492,7 +492,7 @@ class ChatbotHelper
<div class="u-row-container" style="padding: 0px;background-color: transparent"> <div class="u-row-container" style="padding: 0px;background-color: transparent">
<div class="u-row" style="margin: 0 auto;min-width: 320px;max-width: 620px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: transparent;"> <div class="u-row" style="margin: 0 auto;min-width: 320px;max-width: 620px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: transparent;">
<div style="border-collapse: collapse;display: table;width: 100%;height: 100%;background-color: transparent;"> <div style="border-collapse: collapse;display: table;width: 100%;height: 100%;background-color: transparent;">
<!--[if (mso)|(IE)]><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding: 0px;background-color: transparent;" align="center"><table cellpadding="0" cellspacing="0" border="0" style="width:620px;"><tr style="background-color: transparent;"><![endif]--> <!--[if (mso)|(IE)]><table data-custom-table-css="table" width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding: 0px;background-color: transparent;" align="center"><table data-custom-table-css="table" cellpadding="0" cellspacing="0" border="0" style="width:620px;"><tr style="background-color: transparent;"><![endif]-->
<!--[if (mso)|(IE)]><td align="center" width="620" style="width: 620px;padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;border-radius: 0px;-webkit-border-radius: 0px; -moz-border-radius: 0px;" valign="top"><![endif]--> <!--[if (mso)|(IE)]><td align="center" width="620" style="width: 620px;padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;border-radius: 0px;-webkit-border-radius: 0px; -moz-border-radius: 0px;" valign="top"><![endif]-->
<div class="u-col u-col-100" style="max-width: 320px;min-width: 620px;display: table-cell;vertical-align: top;"> <div class="u-col u-col-100" style="max-width: 320px;min-width: 620px;display: table-cell;vertical-align: top;">
@ -500,7 +500,7 @@ class ChatbotHelper
<!--[if (!mso)&(!IE)]><!--> <!--[if (!mso)&(!IE)]><!-->
<div style="box-sizing: border-box; height: 100%; padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;border-radius: 0px;-webkit-border-radius: 0px; -moz-border-radius: 0px;"><!--<![endif]--> <div style="box-sizing: border-box; height: 100%; padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;border-radius: 0px;-webkit-border-radius: 0px; -moz-border-radius: 0px;"><!--<![endif]-->
<table style="font-family:times new roman,times;" role="presentation" cellpadding="0" cellspacing="0" width="100%" border="0"> <table data-custom-table-css="table" style="font-family:times new roman,times;" role="presentation" cellpadding="0" cellspacing="0" width="100%" border="0">
<tbody> <tbody>
<tr> <tr>
<td style="overflow-wrap:break-word;word-break:break-word;padding:10px;font-family:times new roman,times;" align="left"> <td style="overflow-wrap:break-word;word-break:break-word;padding:10px;font-family:times new roman,times;" align="left">
@ -514,7 +514,7 @@ class ChatbotHelper
</tbody> </tbody>
</table> </table>
<table style="font-family:times new roman,times;" role="presentation" cellpadding="0" cellspacing="0" width="100%" border="0"> <table data-custom-table-css="table" style="font-family:times new roman,times;" role="presentation" cellpadding="0" cellspacing="0" width="100%" border="0">
<tbody> <tbody>
<tr> <tr>
<td style="overflow-wrap:break-word;word-break:break-word;padding:10px;font-family:times new roman,times;" align="left"> <td style="overflow-wrap:break-word;word-break:break-word;padding:10px;font-family:times new roman,times;" align="left">

View File

@ -305,7 +305,7 @@ class sendMailNotification
} }
$table_content .= $policy_name_for_policy_type . '</h4></div>'; $table_content .= $policy_name_for_policy_type . '</h4></div>';
$table_content .= '<table border="1" cellpadding="5" cellspacing="0" style="width:100%; border-collapse: collapse; font-size: 12px;">'; $table_content .= '<table data-custom-table-css="table" border="1" cellpadding="5" cellspacing="0" style="width:100%; border-collapse: collapse; font-size: 12px;">';
// Add text-align: center to the table head // Add text-align: center to the table head
$table_content .= '<thead style="background-color: #02a8b5; color: #ffffff; text-align: center;">'; $table_content .= '<thead style="background-color: #02a8b5; color: #ffffff; text-align: center;">';
@ -442,7 +442,7 @@ class sendMailNotification
} }
$table_content .= $policy_name_for_policy_type . ' ( Payable By Employee ) </h4></div>'; $table_content .= $policy_name_for_policy_type . ' ( Payable By Employee ) </h4></div>';
$table_content .= '<table border="1" cellpadding="5" cellspacing="0" style="width:100%; border-collapse: collapse; font-size: 12px;">'; $table_content .= '<table data-custom-table-css="table" border="1" cellpadding="5" cellspacing="0" style="width:100%; border-collapse: collapse; font-size: 12px;">';
// Add text-align: center to the table head // Add text-align: center to the table head
$table_content .= '<thead style="background-color: #02a8b5; color: #ffffff; text-align: center;">'; $table_content .= '<thead style="background-color: #02a8b5; color: #ffffff; text-align: center;">';
@ -479,7 +479,7 @@ class sendMailNotification
if (count($Addon_list) > 0) { if (count($Addon_list) > 0) {
$table_content .= '<br><div style="text-align: left; font-size: 12px;"><div style="text-align:left;">'; $table_content .= '<br><div style="text-align: left; font-size: 12px;"><div style="text-align:left;">';
$table_content .= '<table border="1" cellpadding="5" cellspacing="0" style="width:100%; border-collapse: collapse; font-size: 12px;">'; $table_content .= '<table data-custom-table-css="table" border="1" cellpadding="5" cellspacing="0" style="width:100%; border-collapse: collapse; font-size: 12px;">';
// Center align for table header and body // Center align for table header and body
$table_content .= '<thead style="background-color: #02a8b5; color: #ffffff; text-align: center;">'; $table_content .= '<thead style="background-color: #02a8b5; color: #ffffff; text-align: center;">';
@ -655,7 +655,7 @@ class sendMailNotification
} }
$table_content .= $policy_name_for_policy_type . '</h4></div>'; $table_content .= $policy_name_for_policy_type . '</h4></div>';
$table_content .= '<table border="1" cellpadding="5" cellspacing="0" style="width:100%; border-collapse: collapse; font-size: 12px;">'; $table_content .= '<table data-custom-table-css="table" border="1" cellpadding="5" cellspacing="0" style="width:100%; border-collapse: collapse; font-size: 12px;">';
// Add text-align: center to the table head // Add text-align: center to the table head
$table_content .= '<thead style="background-color: #02a8b5; color: #ffffff; text-align: center;">'; $table_content .= '<thead style="background-color: #02a8b5; color: #ffffff; text-align: center;">';
@ -741,7 +741,7 @@ class sendMailNotification
} }
$table_content .= $policy_name_for_policy_type . ' ( Payable By Employee ) </h4></div>'; $table_content .= $policy_name_for_policy_type . ' ( Payable By Employee ) </h4></div>';
$table_content .= '<table border="1" cellpadding="5" cellspacing="0" style="width:100%; border-collapse: collapse; font-size: 12px;">'; $table_content .= '<table data-custom-table-css="table" border="1" cellpadding="5" cellspacing="0" style="width:100%; border-collapse: collapse; font-size: 12px;">';
// Add text-align: center to the table head // Add text-align: center to the table head
$table_content .= '<thead style="background-color: #02a8b5; color: #ffffff; text-align: center;">'; $table_content .= '<thead style="background-color: #02a8b5; color: #ffffff; text-align: center;">';
@ -779,7 +779,7 @@ class sendMailNotification
if (count($Addon_list) > 0) { if (count($Addon_list) > 0) {
$table_content .= '<br><div style="text-align: left; font-size: 12px;"><div style="text-align:left;">'; $table_content .= '<br><div style="text-align: left; font-size: 12px;"><div style="text-align:left;">';
$table_content .= '<table border="1" cellpadding="5" cellspacing="0" style="width:100%; border-collapse: collapse; font-size: 12px;">'; $table_content .= '<table data-custom-table-css="table" border="1" cellpadding="5" cellspacing="0" style="width:100%; border-collapse: collapse; font-size: 12px;">';
// Center align for table header and body // Center align for table header and body
$table_content .= '<thead style="background-color: #02a8b5; color: #ffffff; text-align: center;">'; $table_content .= '<thead style="background-color: #02a8b5; color: #ffffff; text-align: center;">';
@ -956,7 +956,7 @@ class sendMailNotification
} }
$table_content .= $policy_name_for_policy_type . '</h4></div>'; $table_content .= $policy_name_for_policy_type . '</h4></div>';
$table_content .= '<table border="1" cellpadding="5" cellspacing="0" style="width:100%; border-collapse: collapse; font-size: 12px;">'; $table_content .= '<table data-custom-table-css="table" border="1" cellpadding="5" cellspacing="0" style="width:100%; border-collapse: collapse; font-size: 12px;">';
// Add text-align: center to the table head // Add text-align: center to the table head
$table_content .= '<thead style="background-color: #02a8b5; color: #ffffff; text-align: center;">'; $table_content .= '<thead style="background-color: #02a8b5; color: #ffffff; text-align: center;">';
@ -1042,7 +1042,7 @@ class sendMailNotification
} }
$table_content .= $policy_name_for_policy_type . ' ( Payable By Employee ) </h4></div>'; $table_content .= $policy_name_for_policy_type . ' ( Payable By Employee ) </h4></div>';
$table_content .= '<table border="1" cellpadding="5" cellspacing="0" style="width:100%; border-collapse: collapse; font-size: 12px;">'; $table_content .= '<table data-custom-table-css="table" border="1" cellpadding="5" cellspacing="0" style="width:100%; border-collapse: collapse; font-size: 12px;">';
// Add text-align: center to the table head // Add text-align: center to the table head
$table_content .= '<thead style="background-color: #02a8b5; color: #ffffff; text-align: center;">'; $table_content .= '<thead style="background-color: #02a8b5; color: #ffffff; text-align: center;">';
@ -1079,7 +1079,7 @@ class sendMailNotification
if (count($Addon_list) > 0) { if (count($Addon_list) > 0) {
$table_content .= '<br><div style="text-align: left; font-size: 12px;"><div style="text-align:left;">'; $table_content .= '<br><div style="text-align: left; font-size: 12px;"><div style="text-align:left;">';
$table_content .= '<table border="1" cellpadding="5" cellspacing="0" style="width:100%; border-collapse: collapse; font-size: 12px;">'; $table_content .= '<table data-custom-table-css="table" border="1" cellpadding="5" cellspacing="0" style="width:100%; border-collapse: collapse; font-size: 12px;">';
// Center align for table header and body // Center align for table header and body
$table_content .= '<thead style="background-color: #02a8b5; color: #ffffff; text-align: center;">'; $table_content .= '<thead style="background-color: #02a8b5; color: #ffffff; text-align: center;">';
@ -1332,7 +1332,7 @@ class sendMailNotification
// Start table row // Start table row
$table_content .= $policy_name . '</h4></div>'; $table_content .= $policy_name . '</h4></div>';
$table_content .= '<table border="1" cellpadding="5" cellspacing="0" style="width:100%; border-collapse: collapse; font-size: 12px;">'; $table_content .= '<table data-custom-table-css="table" border="1" cellpadding="5" cellspacing="0" style="width:100%; border-collapse: collapse; font-size: 12px;">';
$table_content .= '<thead style="background-color: #02a8b5; color: #ffffff; text-align: center;">'; $table_content .= '<thead style="background-color: #02a8b5; color: #ffffff; text-align: center;">';
$table_content .= '<tr>'; $table_content .= '<tr>';
$table_content .= '<th>Name</th>'; $table_content .= '<th>Name</th>';
@ -1384,7 +1384,7 @@ class sendMailNotification
// Generate summary table for addon if applicable // Generate summary table for addon if applicable
if (count($Addon_list) > 0) { if (count($Addon_list) > 0) {
$table_content .= '<br><div style="text-align: left; font-size: 12px;"><div style="text-align:left;">'; $table_content .= '<br><div style="text-align: left; font-size: 12px;"><div style="text-align:left;">';
$table_content .= '<table border="1" cellpadding="5" cellspacing="0" style="width:100%; border-collapse: collapse; font-size: 12px;">'; $table_content .= '<table data-custom-table-css="table" border="1" cellpadding="5" cellspacing="0" style="width:100%; border-collapse: collapse; font-size: 12px;">';
$table_content .= '<thead style="background-color: #02a8b5; color: #ffffff; text-align: center;">'; $table_content .= '<thead style="background-color: #02a8b5; color: #ffffff; text-align: center;">';
$table_content .= '<tr>'; $table_content .= '<tr>';
@ -1482,7 +1482,7 @@ class sendMailNotification
// Start table row // Start table row
$table_content .= $policy_name . '</h4></div>'; $table_content .= $policy_name . '</h4></div>';
$table_content .= '<table border="1" cellpadding="5" cellspacing="0" style="width:100%; border-collapse: collapse; font-size: 12px;">'; $table_content .= '<table data-custom-table-css="table" border="1" cellpadding="5" cellspacing="0" style="width:100%; border-collapse: collapse; font-size: 12px;">';
$table_content .= '<thead style="background-color: #02a8b5; color: #ffffff; text-align: center;">'; $table_content .= '<thead style="background-color: #02a8b5; color: #ffffff; text-align: center;">';
$table_content .= '<tr>'; $table_content .= '<tr>';
$table_content .= '<th>Name</th>'; $table_content .= '<th>Name</th>';
@ -1534,7 +1534,7 @@ class sendMailNotification
// Generate summary table for addon if applicable // Generate summary table for addon if applicable
if (count($Addon_list) > 0) { if (count($Addon_list) > 0) {
$table_content .= '<br><div style="text-align: left; font-size: 12px;"><div style="text-align:left;">'; $table_content .= '<br><div style="text-align: left; font-size: 12px;"><div style="text-align:left;">';
$table_content .= '<table border="1" cellpadding="5" cellspacing="0" style="width:100%; border-collapse: collapse; font-size: 12px;">'; $table_content .= '<table data-custom-table-css="table" border="1" cellpadding="5" cellspacing="0" style="width:100%; border-collapse: collapse; font-size: 12px;">';
$table_content .= '<thead style="background-color: #02a8b5; color: #ffffff; text-align: center;">'; $table_content .= '<thead style="background-color: #02a8b5; color: #ffffff; text-align: center;">';
$table_content .= '<tr>'; $table_content .= '<tr>';
@ -1630,7 +1630,7 @@ class sendMailNotification
// Start table row // Start table row
$table_content .= $policy_name . '</h4></div>'; $table_content .= $policy_name . '</h4></div>';
$table_content .= '<table border="1" cellpadding="5" cellspacing="0" style="width:100%; border-collapse: collapse; font-size: 12px;">'; $table_content .= '<table data-custom-table-css="table" border="1" cellpadding="5" cellspacing="0" style="width:100%; border-collapse: collapse; font-size: 12px;">';
$table_content .= '<thead style="background-color: #02a8b5; color: #ffffff; text-align: center;">'; $table_content .= '<thead style="background-color: #02a8b5; color: #ffffff; text-align: center;">';
$table_content .= '<tr>'; $table_content .= '<tr>';
$table_content .= '<th>Name</th>'; $table_content .= '<th>Name</th>';
@ -1683,7 +1683,7 @@ class sendMailNotification
if (count($Addon_list) > 0) { if (count($Addon_list) > 0) {
$table_content .= '<br><div style="text-align: left; font-size: 12px;"><div style="text-align:left;">'; $table_content .= '<br><div style="text-align: left; font-size: 12px;"><div style="text-align:left;">';
$table_content .= '<table border="1" cellpadding="5" cellspacing="0" style="width:100%; border-collapse: collapse; font-size: 12px;">'; $table_content .= '<table data-custom-table-css="table" border="1" cellpadding="5" cellspacing="0" style="width:100%; border-collapse: collapse; font-size: 12px;">';
$table_content .= '<thead style="background-color: #02a8b5; color: #ffffff; text-align: center;">'; $table_content .= '<thead style="background-color: #02a8b5; color: #ffffff; text-align: center;">';
$table_content .= '<tr>'; $table_content .= '<tr>';

View File

@ -249,7 +249,7 @@ table.dataTable tbody td {
<h4 style="position: relative;">User List</h4> <h4 style="position: relative;">User List</h4>
</div> </div>
</div> </div>
<table class="table table-sm table-hover m-0 table-centered dt-responsive nowrap w-100" cellspacing="0" id="tickets-table"> <table data-custom-table-css="table" class="table table-sm table-hover m-0 table-centered dt-responsive nowrap w-100" cellspacing="0" id="tickets-table">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
<th class="font-weight-medium">Name</th> <th class="font-weight-medium">Name</th>
@ -383,7 +383,7 @@ table.dataTable tbody td {
<!-- Tooltip container separate from trigger --> <!-- Tooltip container separate from trigger -->
<div class="tooltip-container" id="tooltipContainer"> <div class="tooltip-container" id="tooltipContainer">
<div class="tooltip" id="accessMatrixTooltip"> <div class="tooltip" id="accessMatrixTooltip">
<table class="tooltip-table" style="color: black;"> <table data-custom-table-css="table" class="tooltip-table" style="color: black;">
<thead> <thead>
<tr> <tr>
<th>Team</th> <th>Team</th>
@ -475,7 +475,7 @@ table.dataTable tbody td {
<div class="tooltip-container" id="roleTooltipContainer"> <div class="tooltip-container" id="roleTooltipContainer">
<div class="tooltip" id="roleAccessMatrixTooltip"> <div class="tooltip" id="roleAccessMatrixTooltip">
<table class="tooltip-table" style="color: black;"> <table data-custom-table-css="table" class="tooltip-table" style="color: black;">
<thead> <thead>
<tr> <tr>
<th>Team</th> <th>Team</th>

View File

@ -30,7 +30,7 @@ table.dataTable thead th {
<a data-toggle="modal" data-target="#bike_make_login-modal" href="#" type="button" id="btnAdd" class="btn btn-primary waves-effect waves-light" data-toggle="" data-placement="top" title="Add" data-trigger="hover">ADD</a> <a data-toggle="modal" data-target="#bike_make_login-modal" href="#" type="button" id="btnAdd" class="btn btn-primary waves-effect waves-light" data-toggle="" data-placement="top" title="Add" data-trigger="hover">ADD</a>
</div> </div>
</div> </div>
<table class="table table-sm table-hover m-0 table-centered dt-responsive nowrap w-100" cellspacing="0" <table data-custom-table-css="table" class="table table-sm table-hover m-0 table-centered dt-responsive nowrap w-100" cellspacing="0"
id="tickets-table"> id="tickets-table">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>

View File

@ -25,7 +25,7 @@
</div> </div>
<div class="table-responsive"> <div class="table-responsive">
<table id="datatable-buttons" class="table table-hover m-0 table-centered dt-responsive w-100"> <table data-custom-table-css="table" id="datatable-buttons" class="table table-hover m-0 table-centered dt-responsive w-100">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
<th class="font-weight-medium">SNO</th> <th class="font-weight-medium">SNO</th>

View File

@ -33,7 +33,7 @@
</div> </div>
<div class="table-responsive"> <div class="table-responsive">
<table id="scroll-horizontal-datatable" class="table w-100 nowrap"> <table data-custom-table-css="table" id="scroll-horizontal-datatable" class="table w-100 nowrap">
<thead> <thead>
<tr> <tr>
<?php <?php

View File

@ -20,7 +20,7 @@ table.dataTable tbody td {
</div> </div>
<div> <div>
<div class="table-responsive"> <div class="table-responsive">
<table id="scroll-horizontal-datatable" class="table w-100 nowrap"> <table data-custom-table-css="table" id="scroll-horizontal-datatable" class="table w-100 nowrap">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
<th> <th>

View File

@ -30,7 +30,7 @@ table.dataTable tbody td {
</div> </div>
</div> </div>
<div class="table-responsive"> <div class="table-responsive">
<table id="scroll-horizontal-datatable" class="table w-100 nowrap"> <table data-custom-table-css="table" id="scroll-horizontal-datatable" class="table w-100 nowrap">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
<th>Insurer</th> <th>Insurer</th>

View File

@ -30,7 +30,7 @@ table.dataTable tbody td {
</div> </div>
</div> </div>
<div class="table-responsive"> <div class="table-responsive">
<table id="scroll-horizontal-datatable" class="table w-100 nowrap"> <table data-custom-table-css="table" id="scroll-horizontal-datatable" class="table w-100 nowrap">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
<th>Insurer</th> <th>Insurer</th>

View File

@ -33,7 +33,7 @@
</div> </div>
<div class="table-responsive"> <div class="table-responsive">
<table id="scroll-horizontal-datatable" class="table w-100 nowrap"> <table data-custom-table-css="table" id="scroll-horizontal-datatable" class="table w-100 nowrap">
<thead> <thead>
<tr> <tr>
<?php <?php

View File

@ -179,7 +179,7 @@ table.dataTable tbody td {
</div> </div>
<div class="table-responsive" style="overflow-x: auto;"> <div class="table-responsive" style="overflow-x: auto;">
<table id="scroll-horizontal-datatable" class="table w-100 nowrap"> <table data-custom-table-css="table" id="scroll-horizontal-datatable" class="table w-100 nowrap">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
<th>S.No</th> <th>S.No</th>

View File

@ -66,7 +66,7 @@ table.dataTable thead th {
data-trigger="hover">ADD</button> --> data-trigger="hover">ADD</button> -->
</div> </div>
</div> </div>
<table id="scroll-horizontal-datatable" class="table w-100 nowrap" > <table data-custom-table-css="table" id="scroll-horizontal-datatable" class="table w-100 nowrap" >
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
<th class="font-weight-medium">S.No.</th> <th class="font-weight-medium">S.No.</th>

View File

@ -68,7 +68,7 @@
</div> </div>
</div> </div>
<table class="table table-hover m-0 table-centered dt-responsive w-100" cellspacing="0" id="tickets-table"> <table data-custom-table-css="table" class="table table-hover m-0 table-centered dt-responsive w-100" cellspacing="0" id="tickets-table">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
<th class="font-weight-medium">SNO</th> <th class="font-weight-medium">SNO</th>

View File

@ -45,7 +45,7 @@
</div> </div>
<div class="table-responsive" style="overflow-x: auto;"> <div class="table-responsive" style="overflow-x: auto;">
<table id="scroll-horizontal-datatable" class="table w-100 nowrap"> <table data-custom-table-css="table" id="scroll-horizontal-datatable" class="table w-100 nowrap">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
<th>S.No</th> <th>S.No</th>

View File

@ -33,7 +33,7 @@
</div> </div>
</div> </div>
<div class="table-responsive"> <div class="table-responsive">
<table id="scroll-horizontal-datatable" class="table w-100 nowrap"> <table data-custom-table-css="table" id="scroll-horizontal-datatable" class="table w-100 nowrap">
<thead class="bg-light"> <thead class="bg-light">
<?php if ($policy_type != 1) {?> <?php if ($policy_type != 1) {?>
<tr> <tr>

View File

@ -29,7 +29,7 @@
</div> </div>
</div> </div>
<div class="table-responsive"> <div class="table-responsive">
<table id="scroll-horizontal-datatable" class="table w-100 nowrap"> <table data-custom-table-css="table" id="scroll-horizontal-datatable" class="table w-100 nowrap">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
<th style="text-align: center;" colspan="8">OPEN</th> <th style="text-align: center;" colspan="8">OPEN</th>

View File

@ -44,7 +44,7 @@
</div> --> </div> -->
</div> </div>
<!-- <div class="table-responsive"> <!-- <div class="table-responsive">
<table class="table table-bordered table-striped"> <table data-custom-table-css="table" class="table table-bordered table-striped">
<tr> <tr>
<td>Get Individual Employee Data</td> <td>Get Individual Employee Data</td>
<td><?= base_url("getEmpData") ?></td> <td><?= base_url("getEmpData") ?></td>

View File

@ -54,7 +54,7 @@
<div class="table-responsive" id="branch_table"> <div class="table-responsive" id="branch_table">
<table class="table table-borderless table-nowrap mb-0"> <table data-custom-table-css="table" class="table table-borderless table-nowrap mb-0">
<thead class="thead-light"> <thead class="thead-light">
<tr> <tr>
<th>Branch Name</th> <th>Branch Name</th>

View File

@ -16,7 +16,7 @@
<a href="<?= base_url("client/client_deposit"); ?>" type="button" id="btnAdd" class="btn btn-primary waves-effect waves-light" data-toggle="" data-placement="top" title="Add" data-trigger="hover">ADD</a> <a href="<?= base_url("client/client_deposit"); ?>" type="button" id="btnAdd" class="btn btn-primary waves-effect waves-light" data-toggle="" data-placement="top" title="Add" data-trigger="hover">ADD</a>
</div> --> </div> -->
</div> </div>
<table class="table table-sm table-hover m-0 table-centered dt-responsive nowrap w-100" cellspacing="0" <table data-custom-table-css="table" class="table table-sm table-hover m-0 table-centered dt-responsive nowrap w-100" cellspacing="0"
id="tickets-table"> id="tickets-table">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>

View File

@ -39,7 +39,7 @@
<!-- <!--
<div class="col-6"> <div class="col-6">
<table> <table data-custom-table-css="table">
<tr> <tr>
<td style="font-size: 18px;"></td> <td style="font-size: 18px;"></td>
</tr> </tr>
@ -48,7 +48,7 @@
<div class="col-6"> <div class="col-6">
<table> <table data-custom-table-css="table">
<tr> <tr>
<td style="font-size: 18px;"> <strong> Relationship Manager </strong></td> <td style="font-size: 18px;"> <strong> Relationship Manager </strong></td>
</tr> </tr>
@ -63,7 +63,7 @@
<div class="row"> <div class="row">
<!-- <div class="col-6"> <!-- <div class="col-6">
<table> <table data-custom-table-css="table">
<tr> <tr>
<td style="padding: 3px;"></td> <td style="padding: 3px;"></td>
</tr> </tr>
@ -74,7 +74,7 @@
</div> --> </div> -->
<div class="col-6"> <div class="col-6">
<table> <table data-custom-table-css="table">
<tr> <tr>
<td style="padding: 3px;"><label> Account Manager : <td style="padding: 3px;"><label> Account Manager :
</label> <?= implode(', ', $account_managers) ?></td> </label> <?= implode(', ', $account_managers) ?></td>
@ -120,7 +120,7 @@
<div id="collapseTwo" class="collapse show" aria-labelledby="headingOne" data-parent="#accordion"> <div id="collapseTwo" class="collapse show" aria-labelledby="headingOne" data-parent="#accordion">
<div class="card-body" style="position: relative;bottom: 25px;"> <div class="card-body" style="position: relative;bottom: 25px;">
<div class="row"> <div class="row">
<table class="table table-hover m-0 table-centered dt-responsive nowrap w-100" <table data-custom-table-css="table" class="table table-hover m-0 table-centered dt-responsive nowrap w-100"
cellspacing="0"> cellspacing="0">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
@ -205,7 +205,7 @@
<div id="collapseThree" class="collapse show" aria-labelledby="headingOne" data-parent="#accordion"> <div id="collapseThree" class="collapse show" aria-labelledby="headingOne" data-parent="#accordion">
<div class="card-body" style="position: relative;bottom: 25px;"> <div class="card-body" style="position: relative;bottom: 25px;">
<div class="row"> <div class="row">
<table id="tb1" class="table table-hover m-0 table-centered dt-responsive nowrap w-100" <table data-custom-table-css="table" id="tb1" class="table table-hover m-0 table-centered dt-responsive nowrap w-100"
cellspacing="0"> cellspacing="0">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>

View File

@ -9,7 +9,7 @@
<div class="card"> <div class="card">
<div class="card-body"> <div class="card-body">
<div class="table-responsive"> <div class="table-responsive">
<table id="kyc_table" class="table table-sm mb-0"> <table data-custom-table-css="table" id="kyc_table" class="table table-sm mb-0">
<thead> <thead>
<tr> <tr>
<th>Document Name</th> <th>Document Name</th>
@ -70,7 +70,7 @@
<div class="card"> <div class="card">
<div class="card-body"> <div class="card-body">
<div class="table-responsive"> <div class="table-responsive">
<table id="kyc_table" class="table table-sm mb-0"> <table data-custom-table-css="table" id="kyc_table" class="table table-sm mb-0">
<thead> <thead>
<tr> <tr>
<th>Document Name</th> <th>Document Name</th>

View File

@ -65,7 +65,7 @@ table.dataTable thead th {
<a href="<?= base_url("client/create"); ?>" type="button" id="btnAdd" class="btn btn-primary waves-effect waves-light" data-toggle="" data-placement="top" title="Add" data-trigger="hover">Add</a> <a href="<?= base_url("client/create"); ?>" type="button" id="btnAdd" class="btn btn-primary waves-effect waves-light" data-toggle="" data-placement="top" title="Add" data-trigger="hover">Add</a>
</div> --> </div> -->
</div> </div>
<table class="table table-sm table-hover m-0 table-centered dt-responsive nowrap w-100" cellspacing="0" <table data-custom-table-css="table" class="table table-sm table-hover m-0 table-centered dt-responsive nowrap w-100" cellspacing="0"
id="tickets-table"> id="tickets-table">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>

View File

@ -28,7 +28,7 @@
</div> </div>
<div class="table-responsive" id="table_list"> <div class="table-responsive" id="table_list">
<table class="table table-borderless table mb-0" id="table-client-policy"> <table data-custom-table-css="table" class="table table-borderless table mb-0" id="table-client-policy">
<thead class="thead-light"> <thead class="thead-light">
<tr> <tr>
<th>Insurer</th> <th>Insurer</th>

View File

@ -99,7 +99,7 @@
</div> </div>
<div class="table-responsive" style="overflow-x: auto;"> <div class="table-responsive" style="overflow-x: auto;">
<table id="scroll-horizontal-datatable" class="table w-100"> <table data-custom-table-css="table" id="scroll-horizontal-datatable" class="table w-100">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
<th>S.No</th> <th>S.No</th>

View File

@ -45,7 +45,7 @@
</div> </div>
<div class="table-responsive" style="overflow-x: auto;"> <div class="table-responsive" style="overflow-x: auto;">
<table id="scroll-horizontal-datatable" class="table w-100 nowrap"> <table data-custom-table-css="table" id="scroll-horizontal-datatable" class="table w-100 nowrap">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
<th>S.No</th> <th>S.No</th>

View File

@ -15,7 +15,7 @@
<body> <body>
<table> <table data-custom-table-css="table">
<?php if(isset($data)) { ?> <?php if(isset($data)) { ?>
<?php foreach ($data as $key => $value) { ?> <?php foreach ($data as $key => $value) { ?>
<tr> <tr>

View File

@ -17,7 +17,7 @@
<body> <body>
<table style="width: 100%;"> <table data-custom-table-css="table" style="width: 100%;">
<?php if(isset($data)) { ?> <?php if(isset($data)) { ?>
<?php foreach ($data as $key => $value) { ?> <?php foreach ($data as $key => $value) { ?>
@ -36,7 +36,7 @@
<div style="display: flex;gap: 20px;"> <div style="display: flex;gap: 20px;">
<table> <table data-custom-table-css="table">
<tr> <tr>
<td> <td>

View File

@ -8,7 +8,7 @@
</head> </head>
<body> <body>
<table style="width: 100%;"> <table data-custom-table-css="table" style="width: 100%;">
<?php if(isset($data)) { ?> <?php if(isset($data)) { ?>
<?php foreach ($data as $key => $value) { ?> <?php foreach ($data as $key => $value) { ?>
@ -25,7 +25,7 @@
<div style="display: flex;gap: 20px; padding-top: 10px;"> <div style="display: flex;gap: 20px; padding-top: 10px;">
<table> <table data-custom-table-css="table">
<tr> <tr>
<td> <td>

View File

@ -12,7 +12,7 @@
POLICY</span></div> POLICY</span></div>
</div> </div>
<table <table data-custom-table-css="table"
style="font-family: sans-serif;font-size: 14px;width: 100%;margin-top: 20px;margin-left: 20px;line-height: 20px;"> style="font-family: sans-serif;font-size: 14px;width: 100%;margin-top: 20px;margin-left: 20px;line-height: 20px;">
<tbody> <tbody>
<tr> <tr>
@ -40,7 +40,7 @@
<div style="border: 1px solid black;width: 400px;max-height: 300px;padding: 5px;"> <div style="border: 1px solid black;width: 400px;max-height: 300px;padding: 5px;">
<div style="font-size: 11px;text-align: center;">The card is for identification purpose only</div> <div style="font-size: 11px;text-align: center;">The card is for identification purpose only</div>
<table style="width: 100%;text-align: center;font-size: 11px;"> <table data-custom-table-css="table" style="width: 100%;text-align: center;font-size: 11px;">
<tbody> <tbody>
<tr> <tr>
<td>General & Claim Enquiry Helpline</td> <td>General & Claim Enquiry Helpline</td>
@ -50,7 +50,7 @@
</table> </table>
<table style="font-size: 11px;width: 100%;text-align: center;"> <table data-custom-table-css="table" style="font-size: 11px;width: 100%;text-align: center;">
<tbody> <tbody>
<tr> <tr>
<td style="border: 1px solid black;">Toll Free : 1800-209-7777 <br>Email : <td style="border: 1px solid black;">Toll Free : 1800-209-7777 <br>Email :
@ -63,7 +63,7 @@
<div style="font-size: 14px;text-align: center;">CITI MDIndia branch contact</div> <div style="font-size: 14px;text-align: center;">CITI MDIndia branch contact</div>
<div> <div>
<table style="text-align: center;width: 100%;font-size: 12px;"> <table data-custom-table-css="table" style="text-align: center;width: 100%;font-size: 12px;">
<thead> <thead>
<tr> <tr>
<th style="border: 1px solid black;">Center</th> <th style="border: 1px solid black;">Center</th>

View File

@ -89,7 +89,7 @@
<h4 style="position: relative;">Employees</h4> <h4 style="position: relative;">Employees</h4>
</div> </div>
</div> </div>
<table class="table table-striped mb-0 nowrap" cellspacing="0" id="tickets-table"> <table data-custom-table-css="table" class="table table-striped mb-0 nowrap" cellspacing="0" id="tickets-table">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
<th class="font-weight-medium">SNO</th> <th class="font-weight-medium">SNO</th>
@ -670,7 +670,7 @@
let historyTable = ` let historyTable = `
<div class="card-body"> <div class="card-body">
<div class="table-responsive"> <div class="table-responsive">
<table class="table w-100"> <table data-custom-table-css="table" class="table w-100">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
<th>Field</th> <th>Field</th>

View File

@ -374,7 +374,7 @@ function getPendingActionClientDataForDashboard(input, headerName, type)
var link = '<?=base_url()?>'; var link = '<?=base_url()?>';
if (res.data.length !== 0) { if (res.data.length !== 0) {
// table = `<table class="table table-striped table-sm table-centered mb-0"><tbody>`; // table = `<table data-custom-table-css="table" class="table table-striped table-sm table-centered mb-0"><tbody>`;
div = `<div class="row">`; div = `<div class="row">`;
$.each(res.data, function(index, item) { $.each(res.data, function(index, item) {

View File

@ -87,7 +87,7 @@
</div> </div>
</div> </div>
<table class="table table-hover m-0 table-centered dt-responsive w-100" cellspacing="0" id="tickets-table"> <table data-custom-table-css="table" class="table table-hover m-0 table-centered dt-responsive w-100" cellspacing="0" id="tickets-table">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
<th class="font-weight-medium">SNO</th> <th class="font-weight-medium">SNO</th>
@ -163,7 +163,7 @@
</div> </div>
<div class="modal-body" id="modal_body"> <div class="modal-body" id="modal_body">
<div class="table-responsive"> <div class="table-responsive">
<table class="table table-hover mb-0"> <table data-custom-table-css="table" class="table table-hover mb-0">
<thead id="table_head_data"> <thead id="table_head_data">
</thead> </thead>

View File

@ -181,7 +181,7 @@
<div class="col-12"> <div class="col-12">
<div class="card"> <div class="card">
<div class="card-body"> <div class="card-body">
<table class="table table-hover m-0 table-centered dt-responsive w-100" cellspacing="0" id="tickets-table"> <table data-custom-table-css="table" class="table table-hover m-0 table-centered dt-responsive w-100" cellspacing="0" id="tickets-table">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
<th class="font-weight-medium">SNO</th> <th class="font-weight-medium">SNO</th>

View File

@ -86,7 +86,7 @@ $errorId = uniqid('error', true);
<?php $argsId = $errorId . 'args' . $index ?> <?php $argsId = $errorId . 'args' . $index ?>
( <a href="#" onclick="return toggle('<?= esc($argsId, 'attr') ?>');">arguments</a> ) ( <a href="#" onclick="return toggle('<?= esc($argsId, 'attr') ?>');">arguments</a> )
<div class="args" id="<?= esc($argsId, 'attr') ?>"> <div class="args" id="<?= esc($argsId, 'attr') ?>">
<table cellspacing="0"> <table data-custom-table-css="table" cellspacing="0">
<?php <?php
$params = null; $params = null;
@ -138,7 +138,7 @@ $errorId = uniqid('error', true);
<h3>$<?= esc($var) ?></h3> <h3>$<?= esc($var) ?></h3>
<table> <table data-custom-table-css="table">
<thead> <thead>
<tr> <tr>
<th>Key</th> <th>Key</th>
@ -168,7 +168,7 @@ $errorId = uniqid('error', true);
<?php if (! empty($constants['user'])) : ?> <?php if (! empty($constants['user'])) : ?>
<h3>Constants</h3> <h3>Constants</h3>
<table> <table data-custom-table-css="table">
<thead> <thead>
<tr> <tr>
<th>Key</th> <th>Key</th>
@ -197,7 +197,7 @@ $errorId = uniqid('error', true);
<div class="content" id="request"> <div class="content" id="request">
<?php $request = Services::request(); ?> <?php $request = Services::request(); ?>
<table> <table data-custom-table-css="table">
<tbody> <tbody>
<tr> <tr>
<td style="width: 10em">Path</td> <td style="width: 10em">Path</td>
@ -243,7 +243,7 @@ $errorId = uniqid('error', true);
<h3>$<?= esc($var) ?></h3> <h3>$<?= esc($var) ?></h3>
<table style="width: 100%"> <table data-custom-table-css="table" style="width: 100%">
<thead> <thead>
<tr> <tr>
<th>Key</th> <th>Key</th>
@ -281,7 +281,7 @@ $errorId = uniqid('error', true);
<h3>Headers</h3> <h3>Headers</h3>
<table> <table data-custom-table-css="table">
<thead> <thead>
<tr> <tr>
<th>Header</th> <th>Header</th>
@ -307,7 +307,7 @@ $errorId = uniqid('error', true);
$response->setStatusCode(http_response_code()); $response->setStatusCode(http_response_code());
?> ?>
<div class="content" id="response"> <div class="content" id="response">
<table> <table data-custom-table-css="table">
<tr> <tr>
<td style="width: 15em">Response Status</td> <td style="width: 15em">Response Status</td>
<td><?= esc($response->getStatusCode() . ' - ' . $response->getReasonPhrase()) ?></td> <td><?= esc($response->getStatusCode() . ' - ' . $response->getReasonPhrase()) ?></td>
@ -320,7 +320,7 @@ $errorId = uniqid('error', true);
<h3>Headers</h3> <h3>Headers</h3>
<table> <table data-custom-table-css="table">
<thead> <thead>
<tr> <tr>
<th>Header</th> <th>Header</th>
@ -354,7 +354,7 @@ $errorId = uniqid('error', true);
<!-- Memory --> <!-- Memory -->
<div class="content" id="memory"> <div class="content" id="memory">
<table> <table data-custom-table-css="table">
<tbody> <tbody>
<tr> <tr>
<td>Memory Usage</td> <td>Memory Usage</td>

View File

@ -68,7 +68,7 @@ table.dataTable tbody td {
<!-- <button><a href="">download full file</a></button> --> <!-- <button><a href="">download full file</a></button> -->
<div class="container"> <div class="container">
<table class="table table-sm table-hover m-0 table-centered dt-responsive nowrap w-100" cellspacing="0" id="tickets-table"> <table data-custom-table-css="table" class="table table-sm table-hover m-0 table-centered dt-responsive nowrap w-100" cellspacing="0" id="tickets-table">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
<?php foreach ($excel_header as $header): ?> <?php foreach ($excel_header as $header): ?>

View File

@ -68,7 +68,7 @@ table.dataTable tbody td {
<!-- <button><a href="">download full file</a></button> --> <!-- <button><a href="">download full file</a></button> -->
<div class="container"> <div class="container">
<table class="table table-sm table-hover m-0 table-centered dt-responsive nowrap w-100" cellspacing="0" id="tickets-table"> <table data-custom-table-css="table" class="table table-sm table-hover m-0 table-centered dt-responsive nowrap w-100" cellspacing="0" id="tickets-table">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
<?php foreach ($excel_header as $header): ?> <?php foreach ($excel_header as $header): ?>

View File

@ -19,7 +19,7 @@
</div> </div>
</div> </div>
<table class="table table-hover m-0 table-centered dt-responsive w-100" cellspacing="0" <table data-custom-table-css="table" class="table table-hover m-0 table-centered dt-responsive w-100" cellspacing="0"
id="tickets-table"> id="tickets-table">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>

View File

@ -179,7 +179,7 @@ table.dataTable tbody td {
</div> </div>
<div class="table-responsive" style="overflow-x: auto;"> <div class="table-responsive" style="overflow-x: auto;">
<table id="scroll-horizontal-datatable" class="table w-100 nowrap"> <table data-custom-table-css="table" id="scroll-horizontal-datatable" class="table w-100 nowrap">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
<th>S.No</th> <th>S.No</th>

View File

@ -38,7 +38,7 @@ table.dataTable tbody td {
</div> </div>
</div> </div>
<table id="scroll-horizontal-datatable" class="table w-100 nowrap"> <table data-custom-table-css="table" id="scroll-horizontal-datatable" class="table w-100 nowrap">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
<th>S. No</th> <th>S. No</th>

View File

@ -99,7 +99,7 @@
</div> </div>
</div> </div>
<table class="table table-hover m-0 table-centered dt-responsive w-100" cellspacing="0" <table data-custom-table-css="table" class="table table-hover m-0 table-centered dt-responsive w-100" cellspacing="0"
id="hr_tickets_table"> id="hr_tickets_table">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>

View File

@ -6,7 +6,7 @@
<div class="table-responsive" id="branch_table" > <div class="table-responsive" id="branch_table" >
<table class="table table-borderless table-nowrap mb-0"> <table data-custom-table-css="table" class="table table-borderless table-nowrap mb-0">
<thead class="thead-light"> <thead class="thead-light">
<tr> <tr>
<th>Branch Name</th> <th>Branch Name</th>

View File

@ -74,7 +74,7 @@
<div class="table-responsive" id="branch_table" > <div class="table-responsive" id="branch_table" >
<table class="table table-borderless table-nowrap mb-0"> <table data-custom-table-css="table" class="table table-borderless table-nowrap mb-0">
<thead class="thead-light"> <thead class="thead-light">
<tr> <tr>
<th>S.NO</th> <th>S.NO</th>

View File

@ -49,7 +49,7 @@
<h4 style="position: relative;">Insurer List</h4> <h4 style="position: relative;">Insurer List</h4>
</div> </div>
</div> </div>
<table class="table table-sm table-hover m-0 table-centered dt-responsive nowrap w-100" cellspacing="0" <table data-custom-table-css="table" class="table table-sm table-hover m-0 table-centered dt-responsive nowrap w-100" cellspacing="0"
id="tickets-table"> id="tickets-table">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>

View File

@ -175,7 +175,7 @@ table.dataTable tbody td {
</div><div class="dataTables_length d-flex align-items-center"> </div><div class="dataTables_length d-flex align-items-center">
</div> </div>
<div> <div>
<table class="table table-striped mb-0 nowrap" cellspacing="0" id="tickets-table"> <table data-custom-table-css="table" class="table table-striped mb-0 nowrap" cellspacing="0" id="tickets-table">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
<th></th> <th></th>
@ -425,7 +425,7 @@ table.dataTable tbody td {
<button type="button" id="add_row_btn" class="btn btn-secondary float-right"><i class="fa fa-plus"></i></button> <button type="button" id="add_row_btn" class="btn btn-secondary float-right"><i class="fa fa-plus"></i></button>
<table class="table table-bordered" id="payment_table_modal"> <table data-custom-table-css="table" class="table table-bordered" id="payment_table_modal">
<thead> <thead>
<tr> <tr>
<th style="display: none;">pk</th> <th style="display: none;">pk</th>

View File

@ -32,7 +32,7 @@ table.dataTable tbody td {
</div> </div>
<div class="table-responsive"> <div class="table-responsive">
<table id="scroll-horizontal-datatable" class="table w-100 nowrap"> <table data-custom-table-css="table" id="scroll-horizontal-datatable" class="table w-100 nowrap">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
<th></th> <th></th>

View File

@ -32,7 +32,7 @@ table.dataTable tbody td {
</div> </div>
<div class="table-responsive"> <div class="table-responsive">
<table id="scroll-horizontal-datatable" class="table w-100 nowrap"> <table data-custom-table-css="table" id="scroll-horizontal-datatable" class="table w-100 nowrap">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
<th>S. No</th> <th>S. No</th>

View File

@ -6,7 +6,7 @@
<div class="table-responsive" id="branch_table" > <div class="table-responsive" id="branch_table" >
<table class="table table-borderless table-nowrap mb-0" id="table-kyc-docs"> <table data-custom-table-css="table" class="table table-borderless table-nowrap mb-0" id="table-kyc-docs">
<thead class="thead-light"> <thead class="thead-light">
<tr> <tr>
<th>File Name</th> <th>File Name</th>

View File

@ -49,7 +49,7 @@
<h4 style="position: relative;">KYC List</h4> <h4 style="position: relative;">KYC List</h4>
</div> </div>
</div> </div>
<table class="table table-sm table-hover m-0 table-centered dt-responsive nowrap w-100" cellspacing="0" <table data-custom-table-css="table" class="table table-sm table-hover m-0 table-centered dt-responsive nowrap w-100" cellspacing="0"
id="tickets-table"> id="tickets-table">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>

View File

@ -546,6 +546,7 @@ rgba(0, 153, 158, 0.5) (transparent)
font-size: 30px; font-size: 30px;
line-height: 1; line-height: 1;
letter-spacing: 0; letter-spacing: 0;
color:black;
} }
.sub-title-text { .sub-title-text {
font-weight: 500; font-weight: 500;
@ -670,69 +671,66 @@ a.app-badge-secondary:focus, a.app-badge-secondary.focus {
outline: 0; outline: 0;
box-shadow: 0 0 0 0.15rem rgba(226, 103, 40, 0.5); } box-shadow: 0 0 0 0.15rem rgba(226, 103, 40, 0.5); }
.app-table-head th { thead th {
background-color: #00999E; background-color: #00999E;
color: #fff !important; color: #fff !important;
border-top: 0px solid #fff !important; border-top: 0px solid #fff !important;
border-bottom: 0px solid #fff !important; border-bottom: 0px solid #fff !important;
} }
.app-table-body td { tbody td {
background: #F5FFFF; background: #F5FFFF;
padding: 12px; padding: 12px;
border-top: 0px solid #fff !important; border-top: 0px solid #fff !important;
border-bottom: 0px solid #fff !important; border-bottom: 2px solid #C3EDEE !important;
} }
.app-table-head th:first-child { thead th:first-child {
border-top-left-radius: 15px !important; border-top-left-radius: 15px !important;
border-bottom-left-radius: 15px !important; border-bottom-left-radius: 15px !important;
} }
.app-table-head th:last-child { thead th:last-child {
border-top-right-radius: 15px !important; border-top-right-radius: 15px !important;
border-bottom-right-radius: 15px !important; border-bottom-right-radius: 15px !important;
} }
.app-table-body tr td:first-child { tbody tr td:first-child {
border-top-left-radius: 15px !important; border-top-left-radius: 15px !important;
border-bottom-left-radius: 15px !important; border-bottom-left-radius: 15px !important;
} }
.app-table-body tr td:last-child { tbody tr td:last-child {
border-top-right-radius: 15px !important; border-top-right-radius: 15px !important;
border-bottom-right-radius: 15px !important; border-bottom-right-radius: 15px !important;
} }
.app-table-body tr:hover td { tbody tr:hover td {
background-color: #e0e0e0; background-color: #e0e0e0;
} }
.app-datatable { table[data-custom-table-css="table"] {
border-collapse: separate !important; border-collapse: separate !important;
border-spacing: 0 8px !important; /* space between rows */ border-spacing: 0 8px !important;
width: 100%; width: 100%;
} }
</style> </style>
<style> <style>
label{ label{
font-weight: 500 !important; font-weight: 500 !important;
font-size:0.875rem !important; font-size:0.875rem !important;
} }
</style>
<style>
.dataTables_info , .text , #client_logo{ .dataTables_info , .text , #client_logo{
font-weight: 500 !important; font-weight: 500 !important;
color:#000 !important; color:#000 !important;
} }
</style>
<style>
.right-bar{ .right-bar{
right : -300px; right : -300px;
} }
</style>
<style>
.dash-tab-font{ .dash-tab-font{
font-weight: 500 !important; font-weight: 500 !important;
font-size:0.875rem !important; font-size:0.875rem !important;

View File

@ -160,7 +160,7 @@ table.dataTable tbody td {
</div> </div>
<div> <div>
<div class="table-responsive"> <div class="table-responsive">
<table class="table table-striped mb-0 nowrap" cellspacing="0" id="tickets-table"> <table data-custom-table-css="table" class="table table-striped mb-0 nowrap" cellspacing="0" id="tickets-table">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
@ -485,7 +485,7 @@ document.addEventListener("click", function(e) {
console.log("******** 1" + response.status); console.log("******** 1" + response.status);
let table = ` let table = `
<div class="table-responsive"> <div class="table-responsive">
<table id="historytable" class="table table-striped mb-0 nowrap" cellspacing="0" id="tickets-table"> <table data-custom-table-css="table" id="historytable" class="table table-striped mb-0 nowrap" cellspacing="0" id="tickets-table">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>

View File

@ -20,7 +20,7 @@ table.dataTable tbody td {
<p style="color: red;"><?= session()->getFlashdata('error') ?></p> <p style="color: red;"><?= session()->getFlashdata('error') ?></p>
<?php endif; ?> <?php endif; ?>
<table class="table table-striped mb-0 nowrap" cellspacing="0" id="tickets-table"> <table data-custom-table-css="table" class="table table-striped mb-0 nowrap" cellspacing="0" id="tickets-table">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
<th>S.No.</th> <th>S.No.</th>

View File

@ -276,7 +276,7 @@
<input type="file" id="Question_title_fileInput" style="display: none;"> <input type="file" id="Question_title_fileInput" style="display: none;">
<table id="attachment_table" class="table table-sm mb-0" style="margin-top: 30px;"> <table data-custom-table-css="table" id="attachment_table" class="table table-sm mb-0" style="margin-top: 30px;">
<thead> <thead>
<tr> <tr>
<th>Attachments</th> <th>Attachments</th>
@ -446,7 +446,7 @@
<input type="file" id="Question_title_fileInput" style="display: none;"> <input type="file" id="Question_title_fileInput" style="display: none;">
<table id="attachment_table_ecard" class="table table-sm mb-0" style="margin-top: 30px;"> <table data-custom-table-css="table" id="attachment_table_ecard" class="table table-sm mb-0" style="margin-top: 30px;">
<thead> <thead>
<tr> <tr>
<th>Attachments</th> <th>Attachments</th>

View File

@ -271,7 +271,7 @@
<input type="file" id="Question_title_fileInput" style="display: none;"> <input type="file" id="Question_title_fileInput" style="display: none;">
<table id="attachment_table" class="table table-sm mb-0" style="margin-top: 30px;"> <table data-custom-table-css="table" id="attachment_table" class="table table-sm mb-0" style="margin-top: 30px;">
<thead> <thead>
<tr> <tr>
<th>Attachments</th> <th>Attachments</th>
@ -450,7 +450,7 @@
<input type="file" id="Question_title_fileInput" style="display: none;"> <input type="file" id="Question_title_fileInput" style="display: none;">
<table id="attachment_table_ecard" class="table table-sm mb-0" style="margin-top: 30px;"> <table data-custom-table-css="table" id="attachment_table_ecard" class="table table-sm mb-0" style="margin-top: 30px;">
<thead> <thead>
<tr> <tr>
<th>Attachments</th> <th>Attachments</th>

View File

@ -167,7 +167,7 @@ table.dataTable tbody td {
</div> </div>
<div class="table-responsive"> <div class="table-responsive">
<table id="scroll-horizontal-datatable" class="table w-100 nowrap"> <table data-custom-table-css="table" id="scroll-horizontal-datatable" class="table w-100 nowrap">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
<th>S.No</th> <th>S.No</th>

View File

@ -6,7 +6,7 @@
<div class="table-responsive" id="branch_table" > <div class="table-responsive" id="branch_table" >
<table class="table table-borderless table-nowrap mb-0" id="table-policies"> <table data-custom-table-css="table" class="table table-borderless table-nowrap mb-0" id="table-policies">
<thead class="thead-light"> <thead class="thead-light">
<tr> <tr>
<th>Insurer</th> <th>Insurer</th>

View File

@ -155,7 +155,7 @@
<div class="col-md-8" style="margin-bottom:10px"> <div class="col-md-8" style="margin-bottom:10px">
<table> <table data-custom-table-css="table">
<tbody> <tbody>
<tr> <tr>
<td style="width: 11%;"><span style="margin-right:20px;color:black;">Self:</span></td> <td style="width: 11%;"><span style="margin-right:20px;color:black;">Self:</span></td>
@ -283,7 +283,7 @@
</div> </div>
<div style="margin-top:10px"> <div style="margin-top:10px">
<table> <table data-custom-table-css="table">
<tbody> <tbody>
<tr> <tr>
<td style="width: 22%;"> <td style="width: 22%;">

View File

@ -136,7 +136,7 @@
<label for=""></label> <label for=""></label>
</div> </div>
<div class="col-md-6"> <div class="col-md-6">
<table> <table data-custom-table-css="table">
<tbody> <tbody>
<tr> <tr>
<td></td> <td></td>

View File

@ -2917,7 +2917,7 @@ function createCheckboxes(obj, additional_relationship = [], unique_id = null, p
<div class="form-group col-md-12"> <div class="form-group col-md-12">
<label>Choose applicable family members</label> <label>Choose applicable family members</label>
<table style="border-collapse: collapse;"> <table data-custom-table-css="table" style="border-collapse: collapse;">
<tbody>`; <tbody>`;

View File

@ -339,7 +339,7 @@ function generateTable(unique_id) {
} }
} }
var table = $('<table class="table table-striped compact-table" />'); var table = $('<table data-custom-table-css="table" class="table table-striped compact-table" />');
var uniqueRows = new Set(); var uniqueRows = new Set();
var emptyCellCount = 0; var emptyCellCount = 0;

View File

@ -349,7 +349,7 @@
</div> </div>
<div id="insurerTableContainer" style="overflow: auto;"> <div id="insurerTableContainer" style="overflow: auto;">
<table class="table table-bordered co_share_table" id="insurerTable"> <table data-custom-table-css="table" class="table table-bordered co_share_table" id="insurerTable">
<thead> <thead>
<tr> <tr>
<th>Premium Details</th> <th>Premium Details</th>

View File

@ -305,7 +305,7 @@ custom-dropdown-menu {
</div> </div>
</div> </div>
<div> <div>
<table class="table table-striped mb-0 nowrap" cellspacing="0" id="tickets-table"> <table data-custom-table-css="table" class="table table-striped mb-0 nowrap" cellspacing="0" id="tickets-table">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
<th>Sno</th> <th>Sno</th>

View File

@ -642,7 +642,7 @@
</div> </div>
<div id="insurerTableContainer" style="overflow: auto;"> <div id="insurerTableContainer" style="overflow: auto;">
<table class="table table-bordered co_share_table" id="insurerTable"> <table data-custom-table-css="table" class="table table-bordered co_share_table" id="insurerTable">
<thead> <thead>
<tr> <tr>
<th>Premium Details</th> <th>Premium Details</th>

View File

@ -274,7 +274,7 @@ table.dataTable tbody td {
</div> </div>
</div> </div>
<div> <div>
<table class="table table-striped mb-0 nowrap" cellspacing="0" id="tickets-table"> <table data-custom-table-css="table" class="table table-striped mb-0 nowrap" cellspacing="0" id="tickets-table">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
<th><div class="column-header">S.No.</div></th> <th><div class="column-header">S.No.</div></th>

View File

@ -78,7 +78,7 @@
<a href="<?= base_url("master/policy/create"); ?>" type="button" id="btnAdd" class="btn btn-primary waves-effect waves-light" data-toggle="" data-placement="top" title="Add" data-trigger="hover">ADD</a> <a href="<?= base_url("master/policy/create"); ?>" type="button" id="btnAdd" class="btn btn-primary waves-effect waves-light" data-toggle="" data-placement="top" title="Add" data-trigger="hover">ADD</a>
</div> </div>
</div> --> </div> -->
<table class="table table-sm table-hover m-0 table-centered dt-responsive nowrap w-100" cellspacing="0" <table data-custom-table-css="table" class="table table-sm table-hover m-0 table-centered dt-responsive nowrap w-100" cellspacing="0"
id="tickets-table"> id="tickets-table">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>

View File

@ -122,7 +122,7 @@
<ul id="suggestions"></ul> <ul id="suggestions"></ul>
</div> </div>
</div> </div>
<table class="table table-hover m-0 table-centered dt-responsive w-100" cellspacing="0" id="emptable"> <table data-custom-table-css="table" class="table table-hover m-0 table-centered dt-responsive w-100" cellspacing="0" id="emptable">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
<th class="small-width">SNO</th> <th class="small-width">SNO</th>
@ -159,7 +159,7 @@
</div> </div>
<div class="modal-body"> <div class="modal-body">
<table class="table table-hover m-0 table-centered dt-responsive w-100" cellspacing="0" id="oldrestable" style="display: none;"> <table data-custom-table-css="table" class="table table-hover m-0 table-centered dt-responsive w-100" cellspacing="0" id="oldrestable" style="display: none;">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
<th class="small-width">SNO</th> <th class="small-width">SNO</th>
@ -186,7 +186,7 @@
</table> </table>
<table class="table table-hover m-0 table-centered dt-responsive w-100" cellspacing="0" id="restable"> <table data-custom-table-css="table" class="table table-hover m-0 table-centered dt-responsive w-100" cellspacing="0" id="restable">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
<th class="small-width">SNO</th> <th class="small-width">SNO</th>
@ -225,7 +225,7 @@
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
</div> </div>
<div class="modal-body"> <div class="modal-body">
<table class="table table-hover m-0 table-centered dt-responsive w-100" cellspacing="0" id="restable"> <table data-custom-table-css="table" class="table table-hover m-0 table-centered dt-responsive w-100" cellspacing="0" id="restable">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>

View File

@ -40,7 +40,7 @@ table.dataTable tbody td {
<strong>Total Unbilled Amount:</strong> <span id="total_unbilled">0.00</span> | <strong>Total Unbilled Amount:</strong> <span id="total_unbilled">0.00</span> |
<strong>Total Policy Count:</strong> <span id="total_policy_count"><?= $policy_count ?></span> <strong>Total Policy Count:</strong> <span id="total_policy_count"><?= $policy_count ?></span>
</div> </div>
<table id="scroll-horizontal-datatable" class="table w-100 nowrap"> <table data-custom-table-css="table" id="scroll-horizontal-datatable" class="table w-100 nowrap">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
<th>S. No</th> <th>S. No</th>
@ -142,7 +142,7 @@ table.dataTable tbody td {
</div> </div>
<div class="modal-body" id="modal_body"> <div class="modal-body" id="modal_body">
<div class="table-responsive"> <div class="table-responsive">
<table class="table table-hover mb-0"> <table data-custom-table-css="table" class="table table-hover mb-0">
<thead class="bg-light" id="table_head_data"> <thead class="bg-light" id="table_head_data">
<tr> <tr>
<th>Statement No.</th> <th>Statement No.</th>

View File

@ -32,7 +32,7 @@ table.dataTable tbody td {
</div> </div>
<div class="table-responsive"> <div class="table-responsive">
<table id="scroll-horizontal-datatable" class="table w-100 nowrap"> <table data-custom-table-css="table" id="scroll-horizontal-datatable" class="table w-100 nowrap">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
<th>S. No</th> <th>S. No</th>

View File

@ -32,7 +32,7 @@
</div> </div>
<div class="table-responsive"> <div class="table-responsive">
<table id="scroll-horizontal-datatable" class="table w-100 nowrap"> <table data-custom-table-css="table" id="scroll-horizontal-datatable" class="table w-100 nowrap">
<thead> <thead>
<tr> <tr>
<?php <?php

View File

@ -122,7 +122,7 @@ th:first-child, td:first-child {
<h4 style="position: relative;">Employees</h4> <h4 style="position: relative;">Employees</h4>
</div> </div>
</div> </div>
<table class="table table-striped mb-0 nowrap" cellspacing="0" id="tickets-table"> <table data-custom-table-css="table" class="table table-striped mb-0 nowrap" cellspacing="0" id="tickets-table">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
<th><input type="checkbox" id="selectAll" onclick="toggleAll(this)"></th> <th><input type="checkbox" id="selectAll" onclick="toggleAll(this)"></th>

View File

@ -7,17 +7,8 @@
width: 100%; width: 100%;
} }
/* .table thead th {
vertical-align: bottom;
border-bottom: 2px solid #fff;
} */
/* Add shadow + spacing row "card" effect */
tbody tr {
/* box-shadow: 0 2px 5px rgba(0,0,0,0.08); */
}
/* Search input with icon */ /* Search input with icon */
.dataTables_filter { .dataTables_filter {
position: absolute; position: absolute;
@ -206,7 +197,7 @@ table thead th {
</div> </div>
</div> </div>
<div> <div>
<table id="scroll-horizontal-datatable" class="table w-100 nowrap text-custom-black text-custom app-font-family app-datatable"> <table data-custom-table-css="table" id="scroll-horizontal-datatable" class="table w-100 nowrap text-custom-black text-custom app-font-family app-datatable">
<thead class="app-table-head"> <thead class="app-table-head">
<tr> <tr>
<th>Ticket ID</th> <th>Ticket ID</th>

View File

@ -612,7 +612,7 @@ function statusHistory(thzId) {
if (response.status === "success" && response.data.length > 0) { if (response.status === "success" && response.data.length > 0) {
let table = ` let table = `
<div class="table-responsive"> <div class="table-responsive">
<table class="table w-100 nowrap text-custom-black text-custom app-font-family app-datatable"> <table data-custom-table-css="table" class="table w-100 nowrap text-custom-black text-custom app-font-family app-datatable">
<thead class="app-table-head"> <thead class="app-table-head">
<tr> <tr>
<th class="app-text app-text-white">S.No</th> <th class="app-text app-text-white">S.No</th>

View File

@ -50,7 +50,7 @@ table.dataTable tbody td {
</div> </div>
<div class="table-responsive"> <div class="table-responsive">
<table id="scroll-horizontal-datatable" class="table w-100 nowrap"> <table data-custom-table-css="table" id="scroll-horizontal-datatable" class="table w-100 nowrap">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
<th>Claim Number</th> <th>Claim Number</th>

View File

@ -2,7 +2,7 @@
<div class="col-12"> <div class="col-12">
<div class="card-body"> <div class="card-body">
<div class="table-responsive"> <div class="table-responsive">
<table id="scroll-horizontal-datatable" class="table w-100"> <table data-custom-table-css="table" id="scroll-horizontal-datatable" class="table w-100">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
<th>Label</th> <th>Label</th>

View File

@ -54,7 +54,7 @@ table.dataTable tbody td {
</div> </div>
<div class="table-responsive"> <div class="table-responsive">
<table id="scroll-horizontal-datatable" class="table w-100 nowrap"> <table data-custom-table-css="table" id="scroll-horizontal-datatable" class="table w-100 nowrap">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
<th>Status</th> <th>Status</th>

View File

@ -71,7 +71,7 @@
</div> </div>
<div class="table-responsive"> <div class="table-responsive">
<table id="scroll-horizontal-datatable" class="table w-100 nowrap"> <table data-custom-table-css="table" id="scroll-horizontal-datatable" class="table w-100 nowrap">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
<th>Template Name</th> <th>Template Name</th>

View File

@ -6,7 +6,7 @@
<div class="table-responsive" id="branch_table" > <div class="table-responsive" id="branch_table" >
<table class="table table-borderless table-nowrap mb-0"> <table data-custom-table-css="table" class="table table-borderless table-nowrap mb-0">
<thead class="thead-light"> <thead class="thead-light">
<tr> <tr>
<th>Branch Name</th> <th>Branch Name</th>

View File

@ -49,7 +49,7 @@
<h4 style="position: relative;">TPA List</h4> <h4 style="position: relative;">TPA List</h4>
</div> </div>
</div> </div>
<table class="table table-sm table-hover m-0 table-centered dt-responsive nowrap w-100" cellspacing="0" <table data-custom-table-css="table" class="table table-sm table-hover m-0 table-centered dt-responsive nowrap w-100" cellspacing="0"
id="tickets-table"> id="tickets-table">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>

View File

@ -160,7 +160,7 @@ table.dataTable tbody td {
</div> </div>
<div class="table-responsive"> <div class="table-responsive">
<table id="scroll-horizontal-datatable" class="table w-100 nowrap"> <table data-custom-table-css="table" id="scroll-horizontal-datatable" class="table w-100 nowrap">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
<th>S.No</th> <th>S.No</th>

View File

@ -45,7 +45,7 @@
</div> </div>
<div class="table-responsive" style="overflow-x: auto;"> <div class="table-responsive" style="overflow-x: auto;">
<table id="scroll-horizontal-datatable" class="table w-100 nowrap"> <table data-custom-table-css="table" id="scroll-horizontal-datatable" class="table w-100 nowrap">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
<th>S.No</th> <th>S.No</th>

View File

@ -71,7 +71,7 @@ table.dataTable tbody td {
<h4 style="position: relative;">Vehicle Master List</h4> <h4 style="position: relative;">Vehicle Master List</h4>
</div> </div>
</div> </div>
<table id="scroll-horizontal-datatable" class="table w-100 nowrap"> <table data-custom-table-css="table" id="scroll-horizontal-datatable" class="table w-100 nowrap">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>
<th class="font-weight-medium">S.No.</th> <th class="font-weight-medium">S.No.</th>

View File

@ -102,7 +102,7 @@
</div> </div>
</div> </div>
<table class="table table-sm table-hover m-0 table-centered dt-responsive w-100" cellspacing="0" <table data-custom-table-css="table" class="table table-sm table-hover m-0 table-centered dt-responsive w-100" cellspacing="0"
id="tickets-table"> id="tickets-table">
<thead class="bg-light"> <thead class="bg-light">
<tr> <tr>

View File

@ -13,7 +13,7 @@ table.dataTable tbody td {
<div class="responsive-table-plugin"> <div class="responsive-table-plugin">
<div class="table-rep-plugin"> <div class="table-rep-plugin">
<div class="table-responsive" data-pattern="priority-columns"> <div class="table-responsive" data-pattern="priority-columns">
<table id="tech-companies-1" class="table table-striped"> <table data-custom-table-css="table" id="tech-companies-1" class="table table-striped">
<thead class="bg-light"> <thead class="bg-light">
<?php foreach ($thead as $header): ?> <?php foreach ($thead as $header): ?>

View File

@ -301,7 +301,7 @@
<div class="save-indicator" id="saveIndicator">Saved</div> <div class="save-indicator" id="saveIndicator">Saved</div>
<div class="table-container" id="first_table"> <div class="table-container" id="first_table">
<table id="rfqTable" class="table table-bordered mt-3"> <table data-custom-table-css="table" id="rfqTable" class="table table-bordered mt-3">
<thead> <thead>
<tr> <tr>
<th class="sticky no-border" style="border-right: 2px solid rgb(0, 123, 255) !important; border-left: 2px solid rgb(0, 123, 255) !important; border-top: 2px solid rgb(0, 123, 255) !important; min-width: 72px !important;"><span class="key_name" style="display: none;">Sno</span><span class="display_name">S.No.</span></th> <th class="sticky no-border" style="border-right: 2px solid rgb(0, 123, 255) !important; border-left: 2px solid rgb(0, 123, 255) !important; border-top: 2px solid rgb(0, 123, 255) !important; min-width: 72px !important;"><span class="key_name" style="display: none;">Sno</span><span class="display_name">S.No.</span></th>
@ -355,7 +355,7 @@
<!-- <button id="getjson" class="btn btn-primary" onclick="generateJSONFromTable()">getjson</button> --> <!-- <button id="getjson" class="btn btn-primary" onclick="generateJSONFromTable()">getjson</button> -->
<div class="table-container" id="second_table" style="display: none;"> <div class="table-container" id="second_table" style="display: none;">
<table id="rfqTable_for_calc" class="table table-bordered mt-3"> <table data-custom-table-css="table" id="rfqTable_for_calc" class="table table-bordered mt-3">
</table> </table>
</div> </div>
</div> </div>