diff --git a/app/modules/cupang/router.py b/app/modules/cupang/router.py index 4d3e1bf..7814054 100644 --- a/app/modules/cupang/router.py +++ b/app/modules/cupang/router.py @@ -214,7 +214,7 @@ def _form_context(request: Request, store: Any, user: dict[str, Any]) -> dict[st "user": user, "is_admin": is_admin(user), "nav_items": build_erp_nav(user, active="cupang"), - "centers": store.list_centers(), + "centers": sorted(store.list_centers(), key=lambda c: c["name"]), "box_rules": store.list_box_rules(), "products": store.list_products(), "ship_methods": list(SHIP_METHODS), diff --git a/app/modules/cupang/templates/cupang/box_rules.html b/app/modules/cupang/templates/cupang/box_rules.html index 5061cc8..23e5528 100644 --- a/app/modules/cupang/templates/cupang/box_rules.html +++ b/app/modules/cupang/templates/cupang/box_rules.html @@ -6,7 +6,7 @@
- ← 달력 + ◀◀ 달력
diff --git a/app/modules/cupang/templates/cupang/centers.html b/app/modules/cupang/templates/cupang/centers.html index 6fce5f9..d21af93 100644 --- a/app/modules/cupang/templates/cupang/centers.html +++ b/app/modules/cupang/templates/cupang/centers.html @@ -6,7 +6,7 @@
diff --git a/app/modules/cupang/templates/cupang/products.html b/app/modules/cupang/templates/cupang/products.html index 908ca6f..7ea052d 100644 --- a/app/modules/cupang/templates/cupang/products.html +++ b/app/modules/cupang/templates/cupang/products.html @@ -6,7 +6,7 @@
diff --git a/app/static/erp-shell.css b/app/static/erp-shell.css index cf9177f..ab00b47 100644 --- a/app/static/erp-shell.css +++ b/app/static/erp-shell.css @@ -85,7 +85,8 @@ body.erp-app-body { background: var(--color-canvas-white); min-height: 100vh; } text-decoration: none; white-space: nowrap; } -.erp-sidebar-item:hover:not(.is-disabled) { background: var(--color-ghost-gray); } +/* 실행중(is-active) 메뉴는 hover 시 변화 없음. 그 외 메뉴만 진한 회색. */ +.erp-sidebar-item:hover:not(.is-disabled):not(.is-active) { background: #d9d9d9; } .erp-sidebar-item.is-active { background: var(--color-deep-black); color: var(--color-canvas-white);