- Add comprehensive health check system with multiple endpoints - Add Prometheus metrics endpoint - Add production logging configurations (5 strategies) - Add complete deployment documentation suite: * QUICKSTART.md - 30-minute deployment guide * DEPLOYMENT_CHECKLIST.md - Printable verification checklist * DEPLOYMENT_WORKFLOW.md - Complete deployment lifecycle * PRODUCTION_DEPLOYMENT.md - Comprehensive technical reference * production-logging.md - Logging configuration guide * ANSIBLE_DEPLOYMENT.md - Infrastructure as Code automation * README.md - Navigation hub * DEPLOYMENT_SUMMARY.md - Executive summary - Add deployment scripts and automation - Add DEPLOYMENT_PLAN.md - Concrete plan for immediate deployment - Update README with production-ready features All production infrastructure is now complete and ready for deployment.
49 lines
1.1 KiB
CSS
49 lines
1.1 KiB
CSS
/**
|
|
* Badge Component
|
|
*
|
|
* Small status indicators and labels.
|
|
*/
|
|
|
|
@layer admin-components {
|
|
.admin-badge {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
padding: 2px 8px;
|
|
font-size: var(--admin-font-size-xs);
|
|
font-weight: var(--admin-font-weight-semibold);
|
|
line-height: 1.5;
|
|
border-radius: 10px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
/* Success badge */
|
|
.admin-badge--success {
|
|
background-color: var(--admin-accent-success);
|
|
color: white;
|
|
}
|
|
|
|
/* Warning badge */
|
|
.admin-badge--warning {
|
|
background-color: var(--admin-accent-warning);
|
|
color: oklch(20% 0.02 280); /* Dark text for better contrast */
|
|
}
|
|
|
|
/* Error badge */
|
|
.admin-badge--error {
|
|
background-color: var(--admin-accent-error);
|
|
color: white;
|
|
}
|
|
|
|
/* Info badge */
|
|
.admin-badge--info {
|
|
background-color: var(--admin-accent-info);
|
|
color: white;
|
|
}
|
|
|
|
/* Default badge */
|
|
.admin-badge--default {
|
|
background-color: var(--admin-bg-tertiary);
|
|
color: var(--admin-content-text);
|
|
}
|
|
}
|