furry/static/css/dashboard.css

49 lines
1.0 KiB
CSS

.progress-bar-custom {
height: 8px;
border-radius: 4px;
}
.status-badge {
font-size: 0.85rem;
padding: 0.35em 0.65em;
}
.stats-card {
transition: transform 0.2s;
}
.stats-card:hover {
transform: translateY(-5px);
}
/* Status Badge Colors */
.badge.bg-pending { background-color: #ffc107; }
.badge.bg-processing { background-color: #17a2b8; }
.badge.bg-shipped { background-color: #28a745; }
.badge.bg-delivered { background-color: #20c997; }
.badge.bg-cancelled { background-color: #dc3545; }
.badge.bg-quoted { background-color: #6610f2; }
.badge.bg-approved { background-color: #198754; }
.badge.bg-in_progress { background-color: #0d6efd; }
.badge.bg-ready { background-color: #20c997; }
/* Avatar Styling */
.avatar-placeholder {
font-size: 24px;
}
/* Card Styling */
.card-header {
background-color: #f8f9fa;
}
/* Table Styling */
.table > :not(caption) > * > * {
padding: 0.75rem;
}
/* Modal Styling */
.modal-body {
max-height: calc(100vh - 210px);
overflow-y: auto;
}