code changes

This commit is contained in:
2025-12-18 16:07:35 -05:00
parent d234e366bd
commit dbdbdffb06
4 changed files with 686 additions and 98 deletions
+199 -1
View File
@@ -686,7 +686,7 @@ tr.modified-record {
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
z-index: var(--z-modal);
z-index: 99999 !important;
backdrop-filter: blur(4px);
}
@@ -701,6 +701,7 @@ tr.modified-record {
width: 90%;
max-width: 600px;
max-height: 80vh;
z-index: 100000 !important;
overflow: hidden;
}
@@ -1365,3 +1366,200 @@ tr.modified-record {
height: 32px;
}
}
/* ============================================
VERIFICATION REVIEW STYLES
============================================ */
/* Review Needed Badge */
.badge-review-needed {
background: #fef3c7 !important;
color: #92400e !important;
border: 1px solid rgba(146, 64, 14, 0.3) !important;
transition: all 0.3s ease;
}
.badge-review-needed:hover {
background: #fde68a !important;
transform: scale(1.05);
box-shadow: 0 4px 8px rgba(146, 64, 14, 0.2);
}
/* Verified Badge */
.badge-verified {
background: #d1fae5 !important;
color: #065f46 !important;
border: 1px solid rgba(5, 150, 105, 0.3) !important;
}
/* Rejected Badge */
.badge-rejected {
background: #fee2e2 !important;
color: #991b1b !important;
border: 1px solid rgba(220, 38, 38, 0.3) !important;
}
/* Review Button in Actions Column */
.btn-review {
background: #fef3c7;
color: #92400e;
border: 1px solid rgba(146, 64, 14, 0.2);
}
.btn-review:hover {
background: #92400e;
color: #ffffff;
border-color: #92400e;
transform: translateY(-1px);
box-shadow: 0 4px 8px rgba(146, 64, 14, 0.3);
}
/* Verification Photo Modal Specific Styles */
#verificationPhotoModal {
z-index: 99999 !important;
}
.verification-modal-content {
max-width: 900px;
width: 95%;
}
.verification-photo-container {
text-align: center;
margin: 1.5rem 0;
}
.verification-photo-large {
max-width: 100%;
max-height: 500px;
border-radius: 0.5rem;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.verification-details-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1rem;
margin: 1.5rem 0;
}
.verification-detail-card {
background: var(--gray-50, #f9fafb);
padding: 1rem;
border-radius: 0.5rem;
border: 1px solid var(--gray-200, #e5e7eb);
}
.verification-detail-card h4 {
font-size: 0.875rem;
color: var(--gray-600, #6b7280);
margin: 0 0 0.5rem 0;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.verification-detail-card p {
font-size: 1rem;
color: var(--gray-900, #0f172a);
margin: 0;
font-weight: 600;
}
.verification-actions {
display: flex;
gap: 1rem;
justify-content: center;
margin-top: 1.5rem;
padding-top: 1.5rem;
border-top: 1px solid var(--gray-200, #e5e7eb);
}
.btn-approve {
background: #10b981;
color: white;
padding: 0.75rem 2rem;
border: none;
border-radius: 0.5rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 0.5rem;
}
.btn-approve:hover {
background: #059669;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
.btn-reject {
background: #ef4444;
color: white;
padding: 0.75rem 2rem;
border: none;
border-radius: 0.5rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 0.5rem;
}
.btn-reject:hover {
background: #dc2626;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}
.verification-status-pending {
background: #fef3c7;
color: #92400e;
padding: 0.5rem 1rem;
border-radius: 9999px;
font-size: 0.875rem;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 0.5rem;
}
/* Loading State */
.verification-loading {
text-align: center;
padding: 3rem;
color: var(--gray-600, #6b7280);
}
.verification-loading i {
font-size: 2rem;
margin-bottom: 1rem;
}
/* Responsive Design for Verification Modal */
@media (max-width: 768px) {
.verification-modal-content {
width: 98%;
margin: 0.5rem;
}
.verification-photo-large {
max-height: 300px;
}
.verification-details-grid {
grid-template-columns: 1fr;
}
.verification-actions {
flex-direction: column;
}
.btn-approve,
.btn-reject {
width: 100%;
justify-content: center;
}
}