Files
PowderCoatingLogix/src/PowderCoating.Web/Views/Shared/_PowderSwatch.cshtml
T
2026-04-23 21:38:24 -04:00

11 lines
458 B
Plaintext

@* Usage: @await Html.PartialAsync("_PowderSwatch", (ColorHex: "#C0392B", Name: "Gloss Red", Size: (int?)null))
Size: optional override in px (default 9). *@
@model (string ColorHex, string Name, int? Size)
@{
var px = (Model.Size ?? 9).ToString();
var hex = string.IsNullOrEmpty(Model.ColorHex) ? "#CCCCCC" : Model.ColorHex;
}
<span class="pcl-swatch"
style="background:@hex;width:@(px)px;height:@(px)px;"
title="@Model.Name"></span>