diff --git a/app/Views/claim_dump_file_list.php b/app/Views/claim_dump_file_list.php
index 0c1d6906..a0af62c0 100644
--- a/app/Views/claim_dump_file_list.php
+++ b/app/Views/claim_dump_file_list.php
@@ -64,7 +64,7 @@
-
Files
+ Claim Dump Upload
@@ -93,14 +93,18 @@
' . $file['user_name'] . '' ?> |
- = $file['status'] ?>
+ = $file['status'] ?>
+
- = $file['status'] ?>
+
+ = $file['status'] ?>
+
- = $file['status'] ?>
+ = $file['status'] ?>
|
@@ -156,7 +160,7 @@
-
diff --git a/app/Views/layout/footer.php b/app/Views/layout/footer.php
index 3ccd15c4..1481b565 100755
--- a/app/Views/layout/footer.php
+++ b/app/Views/layout/footer.php
@@ -1005,20 +1005,21 @@ $(document).ready(function(){
});
});
-function openModal(modalId) {
- var modalEl = document.getElementById(modalId);
+// function openModal(modalId) {
+// console.log('openModal called with ID:', modalId);
+// var modalEl = document.getElementById(modalId);
- if (typeof bootstrap !== "undefined" && bootstrap.Modal) {
- // Bootstrap 5
- var modal = bootstrap.Modal.getOrCreateInstance(modalEl);
- modal.show();
- } else if (typeof $ !== "undefined" && typeof $.fn.modal === "function") {
- // Bootstrap 4
- $('#' + modalId).modal('show');
- } else {
- console.error("No compatible Bootstrap modal found.");
- }
-}
+// if (typeof bootstrap !== "undefined" && bootstrap.Modal && typeof bootstrap.Modal.getOrCreateInstance === "function") {
+// // ✅ Bootstrap 5
+// var modal = bootstrap.Modal.getOrCreateInstance(modalEl);
+// modal.show();
+// } else if (typeof $ !== "undefined" && typeof $.fn.modal === "function") {
+// // ✅ Bootstrap 4
+// $('#' + modalId).modal('show');
+// } else {
+// console.error("No compatible Bootstrap modal found.");
+// }
+// }
diff --git a/app/Views/layout/header.php b/app/Views/layout/header.php
index 783b6e7e..cb591a7f 100755
--- a/app/Views/layout/header.php
+++ b/app/Views/layout/header.php
@@ -974,13 +974,88 @@
+
+
+
+
+
+
diff --git a/app/Views/ticket_edit_onbording.php b/app/Views/ticket_edit_onbording.php
index cfa9e718..9953b250 100644
--- a/app/Views/ticket_edit_onbording.php
+++ b/app/Views/ticket_edit_onbording.php
@@ -7,6 +7,34 @@
font-size:0.875rem;
}
+ .nav-pills ,
+ .nav-link
+ {
+ background-color: #F5FFFF !important;
+ color : #00999E !important;
+ border-radius:10px;
+
+ }
+
+ .nav-pills
+ {
+ background-color: #F5FFFF !important;
+ color : #00999E !important;
+ box-shadow: 0px 2px 4px 0px #00000040;
+ padding-top: 5px ;
+ }
+
+
+ .nav-link.active-tab {
+ color: white !important;
+ background-color: #00999E !important;
+ font-size: small !important;
+ padding:8px 16px;
+ border-radius: 10px !important;
+ box-shadow: 0px 2px 4px 0px #00000040;
+
+ }
+
|