mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-18 23:43:01 +00:00

- Removed non-existing dropdownMenuButton references - Added appropriate roles to dropdown menus
24 lines
446 B
SCSS
24 lines
446 B
SCSS
.dropdown-item {
|
|
padding: 0.35rem 1rem;
|
|
|
|
&:active {
|
|
color: white !important;
|
|
}
|
|
}
|
|
|
|
.scrollable-menu {
|
|
height: auto;
|
|
max-height: var(--ds-dropdown-menu-max-height);
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
li:not(:last-of-type) .dropdown-item {
|
|
border-bottom: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
|
|
}
|
|
|
|
#entityControlsDropdownMenu {
|
|
outline: 0;
|
|
left: 0 !important;
|
|
box-shadow: var(--bs-btn-focus-box-shadow);
|
|
}
|