From b07f43a30885fff3525de89c3d40e31b170c1c09 Mon Sep 17 00:00:00 2001 From: Joseph Doherty Date: Fri, 22 May 2026 07:03:46 -0400 Subject: [PATCH] feat(centralui): rebrand web UI to ScadaBridge + technical-light theme MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Rename the user-facing product name from ScadaLink to ScadaBridge across the six display strings (browser title, sidebar brand, login + not-authorized headings, dashboard welcome/subtitle). Namespaces, assemblies, config keys, and _content/ScadaLink.CentralUI asset routes are unchanged. Apply the technical-light design system: vendor theme.css + IBM Plex fonts into the CentralUI RCL, include theme.css globally (after Bootstrap so its --bs-* token overrides win), and restyle the layout chrome to a light sidebar — white surface, hairline rules, ink text, accent-blue active item, the brand accent mark. Page markup stays Bootstrap and inherits the warm paper background, Plex type, accent, and hairline borders via the tokens. Tests: build 0 warnings; bUnit 542 passed; Playwright 64 passed. --- .../Components/Layout/MainLayout.razor | 2 +- .../Components/Layout/NavMenu.razor | 8 +- .../Components/Pages/Dashboard.razor | 4 +- .../Components/Pages/Login.razor | 2 +- .../Components/Shared/NotAuthorizedView.razor | 2 +- src/ScadaLink.CentralUI/wwwroot/css/site.css | 32 +- src/ScadaLink.CentralUI/wwwroot/css/theme.css | 379 ++++++++++++++++++ .../wwwroot/fonts/ibm-plex-mono-500.woff2 | Bin 0 -> 14988 bytes .../wwwroot/fonts/ibm-plex-sans-400.woff2 | Bin 0 -> 19156 bytes .../wwwroot/fonts/ibm-plex-sans-600.woff2 | Bin 0 -> 20356 bytes src/ScadaLink.Host/Components/App.razor | 3 +- .../LoginTests.cs | 2 +- .../NavigationTests.cs | 5 +- .../ComponentRenderingTests.cs | 4 +- 14 files changed, 416 insertions(+), 27 deletions(-) create mode 100755 src/ScadaLink.CentralUI/wwwroot/css/theme.css create mode 100755 src/ScadaLink.CentralUI/wwwroot/fonts/ibm-plex-mono-500.woff2 create mode 100755 src/ScadaLink.CentralUI/wwwroot/fonts/ibm-plex-sans-400.woff2 create mode 100755 src/ScadaLink.CentralUI/wwwroot/fonts/ibm-plex-sans-600.woff2 diff --git a/src/ScadaLink.CentralUI/Components/Layout/MainLayout.razor b/src/ScadaLink.CentralUI/Components/Layout/MainLayout.razor index 011b4cf..388e245 100644 --- a/src/ScadaLink.CentralUI/Components/Layout/MainLayout.razor +++ b/src/ScadaLink.CentralUI/Components/Layout/MainLayout.razor @@ -17,7 +17,7 @@ -
+
@Body
diff --git a/src/ScadaLink.CentralUI/Components/Layout/NavMenu.razor b/src/ScadaLink.CentralUI/Components/Layout/NavMenu.razor index 5dc07e7..ffe1024 100644 --- a/src/ScadaLink.CentralUI/Components/Layout/NavMenu.razor +++ b/src/ScadaLink.CentralUI/Components/Layout/NavMenu.razor @@ -1,7 +1,7 @@ @using ScadaLink.Security