Add Encrypt=false to Docker connection strings, gate nav links behind auth, and fix navbar layout

Add Encrypt=false to runtime Docker connection strings for SQL Server
compatibility. Wrap admin nav links (Search Queue, Refresh Status, Data
Sync) in AuthorizeView so they only render for authenticated users. Fix
navbar-nav horizontal layout with explicit flex-direction and an override
rule for hosted Blazor assets.
This commit is contained in:
Joseph Doherty
2026-02-10 08:06:16 -05:00
parent 9bd5e340b0
commit 16b21ac243
3 changed files with 21 additions and 7 deletions
+11 -1
View File
@@ -232,10 +232,20 @@ code {
.navbar-nav {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-items: center;
gap: 0.5rem;
}
/* Ensure top-header nav stays horizontal when host serves Blazor assets. */
.navbar-fixed-top .navbar-left nav.navbar-nav {
display: inline-flex !important;
flex-direction: row !important;
flex-wrap: nowrap !important;
align-items: center !important;
}
.nav-link {
color: #9d9d9d;
text-decoration: none;
@@ -294,4 +304,4 @@ code {
}
.rz-upload-inline .rz-fileupload-content {
display: none;
}
}