+
diff --git a/app/Views/sales/tracker_view.php b/app/Views/sales/tracker_view.php
index bb50e05d..a130b2bc 100644
--- a/app/Views/sales/tracker_view.php
+++ b/app/Views/sales/tracker_view.php
@@ -71,7 +71,7 @@
.timeline-item:last-child::before { display: none !important;}
/* opportunities Styling */
- .opportunities-list { display: grid; gap: 15px;}
+ .opportunities-list { display: grid; gap: 15px; margin-bottom: 12px; }
.opportunity-card { background: white; border-radius: 12px; padding: 20px; border: 1px solid #e0e0e0; transition: all 0.2s;}
.opportunity-header { display: flex; justify-content: space-between; align-items: start; margin-bottom: 15px;}
.opportunity-title { font-weight: 600; font-size: 16px; margin-bottom: 5px;}
@@ -657,7 +657,7 @@
-
@@ -1101,7 +1101,7 @@ function renderCard(opps) {
// ${o.client_short_name}
return `
-
+
@@ -1903,16 +1903,23 @@ async function openEditLeadModal(id) {
${contact.name} ${primaryBadge}
-
${contact.mobile}
-
+
${contact.mobile || '-'}
+
${contact.designation || '-'}
✏️
+ style="background:none; border:none; cursor:pointer; font-size:16px; flex-shrink:0; padding:4px 6px; border-radius:6px; transition:background 0.2s;"
+ onmouseover="this.style.background='#e3f2fd'; this.querySelector('i').style.color='#1976d2';"
+ onmouseout="this.style.background='none'; this.querySelector('i').style.color='#555';">
+
+
+
🗑️
+ style="background:none; border:none; cursor:pointer; font-size:16px; flex-shrink:0; padding:4px 6px; border-radius:6px; transition:background 0.2s;"
+ onmouseover="this.style.background='#ffebee'; this.querySelector('i').style.color='#d32f2f';"
+ onmouseout="this.style.background='none'; this.querySelector('i').style.color='#555';">
+
+
`;
@@ -1950,7 +1957,7 @@ document.getElementById('contactPersonsList').onclick = async (e) => {
document.getElementById('contact_is_primary').checked = contactData.is_primary == 1;
// Change Button UI
- document.getElementById('btnSaveContact').innerHTML = "✏️";
+ document.getElementById('btnSaveContact').innerHTML = "
";
document.getElementById('btnSaveContact').title = "Update";
document.getElementById('btnSaveContact').style.background = "#02a8b5";
document.getElementById('contact_name').focus();