From 19e1ce858f36bc771c7a784abdff20dacb6c57cf Mon Sep 17 00:00:00 2001 From: Scott Pouliot Date: Sun, 24 May 2026 18:08:59 -0400 Subject: [PATCH] Simplify location display on inventory QR label Plain text 'Location: ' in larger bold font instead of pill badge with map pin icon. Co-Authored-By: Claude Sonnet 4.6 --- src/PowderCoating.Web/Views/Inventory/Label.cshtml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/src/PowderCoating.Web/Views/Inventory/Label.cshtml b/src/PowderCoating.Web/Views/Inventory/Label.cshtml index 32c5c56..7235128 100644 --- a/src/PowderCoating.Web/Views/Inventory/Label.cshtml +++ b/src/PowderCoating.Web/Views/Inventory/Label.cshtml @@ -96,13 +96,9 @@ } .label-location { - font-size: 11px; + font-size: 14px; font-weight: 700; - color: #333; - background: #f0f0f0; - border-radius: 4px; - padding: 2px 8px; - letter-spacing: .03em; + color: #111; } .label-scan-hint { @@ -170,7 +166,7 @@ @if (!string.IsNullOrEmpty(Model.Location)) { -
📍 @Model.Location
+
Location: @Model.Location
}