Skip to content

Commit

Permalink
Update IdsFilter component tooltip styling
Browse files Browse the repository at this point in the history
  • Loading branch information
NiklasBuchfink committed Feb 28, 2024
1 parent 3e99678 commit 00a7338
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -872,16 +872,16 @@ function IdsFilter(props: { clearFunction: any }) {
</Link>
</div>
<sl-divider class="mt-2 mb-0 h-[1px] bg-surface-3" />
<div class="max-h-[300px] overflow-y-auto">
<div class="max-h-[300px] max-w-[300px]">
<For each={project()?.query.messages.includedMessageIds() ?? []}>
{(id) => (
<sl-tooltip
prop:content={id}
prop:placement="top"
prop:trigger="hover"
prop:disabled={id.length < 28}
class="small"
style={{ "--show-delay": "1s" }}
class="ids-filter small overflow-hidden"
style={{ "--show-delay": "1s", "--max-width": "260px", "word-break": "break-all" }}
>
<sl-option prop:value={id} class="ids-filter">
{id}
Expand Down

0 comments on commit 00a7338

Please sign in to comment.