Fixed skip link not visible

This commit is contained in:
2025-11-23 13:57:33 +01:00
parent 1c6bbcfe1d
commit bf17c755fc
2 changed files with 11 additions and 4 deletions

View File

@@ -103,12 +103,12 @@
{
<ul class="navbar-nav ms-auto">
<li class="nav-item dropdown">
<div class="nav-link dropdown-toggle d-flex align-items-center" href="#" id="userDropdown" role="button"
<a class="nav-link dropdown-toggle d-flex align-items-center" href="#" id="userDropdown" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
<img src="/Home/UserPhoto?uid=@User.Identity.Name&size=30" alt="Profile"
class="rounded-circle me-2" width="30" height="30" alt="Photo" />
<span>@User.Identity.Name</span>
</div>
</a>
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="userDropdown">
<li><a class="dropdown-item" asp-controller="Settings" asp-action="User">@T["User settings"]</a></li>
@if (User.HasClaim(ClaimTypes.Role, "CanManageSettings"))

View File

@@ -78,7 +78,14 @@ h4.fw-bold, h4.card-title {
}
.skip-link:focus {
left: 10px;
left: 10px !important;
top: 10px;
outline: none;
}
input[readonly] {
background-color: #343a40 !important;
box-shadow: none;
opacity: 1;
border-color: var(--bs-border-color) !important;
}