This commit is contained in:
spaceyuck 2026-05-05 01:28:21 +03:00 committed by GitHub
commit 7e16d28ad5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 9 additions and 5 deletions

View file

@ -214,6 +214,10 @@ input[type="range"].zoom-slider {
}
}
.sidebar-saved-filter-list-container .saved-filter-list {
max-height: unset;
}
.sidebar-saved-filter-list-container .toolbar {
align-items: center;
display: flex;
@ -618,8 +622,6 @@ ul.selectable-list {
.folder-filter ul {
list-style-type: none;
margin-bottom: 0.25rem;
max-height: 300px;
overflow-y: auto;
// to prevent unnecessary vertical scrollbar
padding-inline-start: 0;
padding-bottom: 0.15rem;

View file

@ -44,8 +44,8 @@ export const CollapseButton: React.FC<React.PropsWithChildren<IProps>> = (
<Icon icon={open ? faChevronDown : faChevronRight} fixedWidth />
<span>{props.text}</span>
</Button>
{props.outsideCollapse}
</div>
{props.outsideCollapse}
<Collapse in={open} {...props.collapseProps}>
<div>{props.children}</div>
</Collapse>

View file

@ -1006,9 +1006,11 @@ button.btn.favorite-button {
border-bottom: 1px solid $secondary;
.collapse-header {
// background-color: $secondary;
background-color: $body-bg;
padding: 0.25rem;
position: sticky;
top: -0.5rem;
z-index: 1;
.collapse-button {
font-weight: bold;