Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions ui/v2.5/src/components/List/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,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;
Expand Down Expand Up @@ -611,8 +615,6 @@ input[type="range"].zoom-slider {
.sidebar-list-filter ul {
list-style-type: none;
margin-bottom: 0.25rem;
max-height: 300px;
overflow-y: auto;
// to prevent unnecessary vertical scrollbar
padding-bottom: 0.15rem;
padding-inline-start: 0;
Expand Down
2 changes: 1 addition & 1 deletion ui/v2.5/src/components/Shared/CollapseButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,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>
Expand Down
6 changes: 4 additions & 2 deletions ui/v2.5/src/components/Shared/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -859,9 +859,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;
Expand Down