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:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user