linkding/bookmarks/styles/theme/dropdowns.css
2024-09-23 11:04:36 +02:00

36 lines
649 B
CSS

/* Dropdown */
.dropdown {
display: inline-block;
position: relative;
.menu {
animation: fade-in 0.15s ease 1;
display: none;
left: 0;
max-height: 50vh;
overflow-y: auto;
position: absolute;
top: 100%;
}
&.dropdown-right {
.menu {
left: auto;
right: 0;
}
}
&.active .menu,
.dropdown-toggle:focus + .menu,
.menu:hover {
display: block;
}
/* Fix dropdown-toggle border radius in button groups */
.btn-group {
.dropdown-toggle:nth-last-child(2) {
border-bottom-right-radius: var(--border-radius);
border-top-right-radius: var(--border-radius);
}
}
}