feat: 주문리스트를 /orderlist/ 리버스 프록시 경로로 통합

- 메뉴 카드 새 탭 열기 + /orderlist/health/db 헬스 배지 (온라인/오프라인) 추가
- CUSTOMER_ORDER_LIST_URL 기본값을 /orderlist/ 로 (NPM 같은 도메인 하위 경로)
- orderlist 측 compose 정리 스크립트 추가 (ports 제거, npm_default 외부 네트워크 attach)
This commit is contained in:
2026-05-24 05:04:06 +09:00
parent 0c007e6432
commit e8a85be36c
5 changed files with 218 additions and 4 deletions
+34
View File
@@ -789,3 +789,37 @@ a { color: inherit; text-decoration: none; }
.header-portal { display: none; }
.btn-logout span { display: none; }
}
/* ── 상태 배지 ─────────────────────────────────── */
.status-badge {
display: inline-flex;
align-items: center;
gap: 6px;
margin-left: 8px;
padding: 2px 8px;
font-size: 11px;
font-weight: 600;
border-radius: 999px;
vertical-align: middle;
line-height: 1.4;
background: #eef2f7;
color: var(--muted);
border: 1px solid var(--border);
}
.status-badge::before {
content: "";
width: 6px;
height: 6px;
border-radius: 50%;
background: currentColor;
}
.status-badge[data-status="online"] {
background: #e7f6ee;
color: var(--success);
border-color: #b6e0c6;
}
.status-badge[data-status="offline"] {
background: #fdecec;
color: var(--danger);
border-color: #f1c2c2;
}