mirror of
https://github.com/LD-Reborn/Berufsschule_HAM.git
synced 2025-12-20 06:51:55 +00:00
Fixed skip link not visible
This commit is contained in:
@@ -103,12 +103,12 @@
|
|||||||
{
|
{
|
||||||
<ul class="navbar-nav ms-auto">
|
<ul class="navbar-nav ms-auto">
|
||||||
<li class="nav-item dropdown">
|
<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">
|
data-bs-toggle="dropdown" aria-expanded="false">
|
||||||
<img src="/Home/UserPhoto?uid=@User.Identity.Name&size=30" alt="Profile"
|
<img src="/Home/UserPhoto?uid=@User.Identity.Name&size=30" alt="Profile"
|
||||||
class="rounded-circle me-2" width="30" height="30" alt="Photo" />
|
class="rounded-circle me-2" width="30" height="30" alt="Photo" />
|
||||||
<span>@User.Identity.Name</span>
|
<span>@User.Identity.Name</span>
|
||||||
</div>
|
</a>
|
||||||
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="userDropdown">
|
<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>
|
<li><a class="dropdown-item" asp-controller="Settings" asp-action="User">@T["User settings"]</a></li>
|
||||||
@if (User.HasClaim(ClaimTypes.Role, "CanManageSettings"))
|
@if (User.HasClaim(ClaimTypes.Role, "CanManageSettings"))
|
||||||
|
|||||||
@@ -78,7 +78,14 @@ h4.fw-bold, h4.card-title {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.skip-link:focus {
|
.skip-link:focus {
|
||||||
left: 10px;
|
left: 10px !important;
|
||||||
top: 10px;
|
top: 10px;
|
||||||
outline: none;
|
outline: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
input[readonly] {
|
||||||
|
background-color: #343a40 !important;
|
||||||
|
box-shadow: none;
|
||||||
|
opacity: 1;
|
||||||
|
border-color: var(--bs-border-color) !important;
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user