mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-16 22:43:03 +00:00

Fixes #2690
This is noticable when you have disabled local authentication, and only have a singular remote authentication such as Shibboleth or Orcid.
(cherry picked from commit 09fc44a539
)
31 lines
640 B
SCSS
31 lines
640 B
SCSS
.loginDropdownMenu, .logoutDropdownMenu {
|
|
min-width: 330px;
|
|
z-index: 1002;
|
|
}
|
|
|
|
.loginDropdownMenu {
|
|
min-height: 75px;
|
|
}
|
|
|
|
.dropdown-item.active, .dropdown-item:active,
|
|
.dropdown-item:hover, .dropdown-item:focus {
|
|
background-color: transparent !important;
|
|
}
|
|
|
|
.loginLink, .dropdownLogin, .logoutLink, .dropdownLogout {
|
|
color: var(--ds-header-icon-color);
|
|
|
|
&:hover, &:focus {
|
|
color: var(--ds-header-icon-color-hover);
|
|
}
|
|
}
|
|
|
|
.dropdownLogin, .dropdownLogout {
|
|
&:not(:focus-visible).active,
|
|
&:not(:focus-visible):active,
|
|
&:not(:focus-visible).active:focus,
|
|
&:not(:focus-visible):active:focus {
|
|
box-shadow: unset;
|
|
}
|
|
}
|