Condense Operations sidebar: remove 5 items, tighten padding

Layer 1 — relocate off nav:
  Shop Display + Shop Mobile → Jobs page header (split dropdown on Blank Work Order)
  Powder Insights → Inventory page header button

Layer 2 — remove orphan section headers:
  "Main Menu" (only had Dashboard under it)
  "Reports" (only had Reports link under it)

Layer 3 — CSS density:
  nav-link padding 0.75rem → 0.55rem vertical
  nav-section-title padding 1rem/0.5rem → 0.65rem/0.3rem

Operations mode: 27 elements → 22. Scrollbar eliminated on standard screens.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-10 13:57:09 -04:00
parent c65445b94e
commit f6d457fe0e
3 changed files with 25 additions and 22 deletions
+20 -3
View File
@@ -111,9 +111,26 @@
<a asp-controller="JobTemplates" asp-action="Index" class="btn btn-outline-secondary text-nowrap" title="Manage job templates">
<i class="bi bi-layout-text-window-reverse me-1"></i><span class="d-none d-md-inline">Templates</span>
</a>
<a href="@Url.Action("Blank", "WorkOrder")" target="_blank" class="btn btn-outline-secondary text-nowrap" title="Print a blank work order form">
<i class="bi bi-printer me-1"></i><span class="d-none d-md-inline">Blank Work Order</span>
</a>
<div class="btn-group">
<a href="@Url.Action("Blank", "WorkOrder")" target="_blank" class="btn btn-outline-secondary text-nowrap" title="Print a blank work order form">
<i class="bi bi-printer me-1"></i><span class="d-none d-md-inline">Blank Work Order</span>
</a>
<button type="button" class="btn btn-outline-secondary dropdown-toggle dropdown-toggle-split" data-bs-toggle="dropdown" aria-expanded="false">
<span class="visually-hidden">Shop screens</span>
</button>
<ul class="dropdown-menu dropdown-menu-end">
<li>
<a asp-action="ShopDisplay" class="dropdown-item" target="_blank">
<i class="bi bi-display me-2 text-primary"></i>Shop Display <small class="text-muted">(TV)</small>
</a>
</li>
<li>
<a asp-action="ShopMobile" class="dropdown-item">
<i class="bi bi-phone me-2 text-primary"></i>Shop Mobile
</a>
</li>
</ul>
</div>
</div>
</div>
<!-- Row 2: quick-view pills -->