Fixed the home page hero was sitting above the open account dropdown in the stacking order, so clicks were landing on the hero instead of the menu.
This commit is contained in:
parent
19d9bc4bb1
commit
aa188baa70
@ -126,27 +126,6 @@
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-dark" asp-route="@PublicRouteNames.Help">Help</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-dark" asp-area="" asp-controller="FeatureRequests" asp-action="Index">
|
||||
Feature Requests
|
||||
@if (featureRequestAttentionCount > 0)
|
||||
{
|
||||
<span class="badge text-bg-warning ms-1">@featureRequestAttentionCount</span>
|
||||
}
|
||||
</a>
|
||||
</li>
|
||||
@if (isAdmin)
|
||||
{
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-dark" asp-area="" asp-controller="Admin" asp-action="Index">
|
||||
Admin
|
||||
@if (adminFeatureRequestAttentionCount > 0)
|
||||
{
|
||||
<span class="badge text-bg-danger ms-1">@adminFeatureRequestAttentionCount</span>
|
||||
}
|
||||
</a>
|
||||
</li>
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -164,6 +143,25 @@
|
||||
<div class="d-flex align-items-center gap-2 flex-wrap">
|
||||
@if (User.Identity?.IsAuthenticated == true)
|
||||
{
|
||||
<div class="d-flex align-items-center gap-2 flex-wrap me-sm-1">
|
||||
<a class="btn btn-outline-secondary btn-sm" asp-area="" asp-controller="FeatureRequests" asp-action="Index">
|
||||
Feature Requests
|
||||
@if (featureRequestAttentionCount > 0)
|
||||
{
|
||||
<span class="badge text-bg-warning ms-1">@featureRequestAttentionCount</span>
|
||||
}
|
||||
</a>
|
||||
@if (isAdmin)
|
||||
{
|
||||
<a class="btn btn-outline-secondary btn-sm" asp-area="" asp-controller="Admin" asp-action="Index">
|
||||
Admin
|
||||
@if (adminFeatureRequestAttentionCount > 0)
|
||||
{
|
||||
<span class="badge text-bg-danger ms-1">@adminFeatureRequestAttentionCount</span>
|
||||
}
|
||||
</a>
|
||||
}
|
||||
</div>
|
||||
<div class="nav-item dropdown">
|
||||
<button class="btn btn-outline-secondary btn-sm dropdown-toggle" type="button" id="accountMenuButton" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
Hello @User.Identity.Name
|
||||
|
||||
@ -122,6 +122,8 @@ a:hover {
|
||||
}
|
||||
|
||||
.plotline-nav {
|
||||
position: relative;
|
||||
z-index: 1030;
|
||||
background: rgba(255, 251, 243, 0.9) !important;
|
||||
border-bottom: 1px solid rgba(84, 68, 48, 0.13) !important;
|
||||
box-shadow: 0 8px 28px rgba(62, 45, 28, 0.06);
|
||||
|
||||
2
PlotLine/wwwroot/css/plotline-theme.min.css
vendored
2
PlotLine/wwwroot/css/plotline-theme.min.css
vendored
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user