Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/category selector fixes #5781

Merged
merged 2 commits into from
Feb 21, 2024
Merged
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
12 changes: 7 additions & 5 deletions css/app-sidebar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -700,11 +700,6 @@
}
}
}

// Fix weird height
&__input {
max-height: 44px;
}
}

.property-title {
Expand Down Expand Up @@ -869,6 +864,7 @@
border-radius: 50%;
border: none;
margin-right: 8px;
flex-shrink: 0;
}

.icon {
Expand All @@ -890,6 +886,12 @@
}
}

.vs__dropdown-option span {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}

Comment on lines +889 to +894
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That works quite well. I don't like that it isn't scoped but I don't see any other way as the popover is inserted directly below the body.

.resource-search-list-item,
.invitees-search-list-item {
display: flex;
Expand Down
Loading