Skip to content

Commit

Permalink
Hide search tip on mobile
Browse files Browse the repository at this point in the history
Fixes #914
  • Loading branch information
allanlasser committed Dec 3, 2024
1 parent 9a8361b commit 27266b7
Showing 1 changed file with 22 additions and 12 deletions.
34 changes: 22 additions & 12 deletions src/lib/components/layouts/DocumentBrowser.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,11 @@
search: "common.search",
};
let width: number;
let headerToolbarWidth: number;
let footerToolbarWidth: number;
$: BREAKPOINTS = {
HIDE_COUNT: width < remToPx(26),
HIDE_COUNT: footerToolbarWidth < remToPx(26),
};
$: searchResults = documents.then((r) => excludeDeleted($deleted, r.data));
Expand Down Expand Up @@ -151,17 +152,16 @@
</Button>
</div>
{/if}
<PageToolbar>
<PageToolbar bind:width={headerToolbarWidth}>
<Flex slot="right">
<div style:flex="1 1 auto">
<Search name="q" {query} placeholder={$_(uiText.search)}>
<span slot="help">
{@html $_("search.help")}
<a target="_blank" href="/help/search/">
{$_("search.more")}
</a>
</span>
</Search>
<Search name="q" {query} placeholder={$_(uiText.search)} />
<p class="help" class:hide={headerToolbarWidth < remToPx(38)}>
{@html $_("search.help")}
<a target="_blank" href="/help/search/">
{$_("search.more")}
</a>
</p>
</div>
</Flex>
</PageToolbar>
Expand Down Expand Up @@ -203,7 +203,7 @@
{/await}
<svelte:fragment slot="footer">
{#if !embed}
<div class="toolbar" bind:clientWidth={width}>
<div class="toolbar" bind:clientWidth={footerToolbarWidth}>
<Flex align="center">
<SidebarItem>
<label class="select-all">
Expand Down Expand Up @@ -309,4 +309,14 @@
min-width: 7rem;
margin: 0.25rem 0;
}
.help {
flex: 1 1 100%;
font-size: var(--font-xs);
margin: 0.25rem;
color: var(--gray-4);
text-align: left;
}
.hide {
display: none;
}
</style>

0 comments on commit 27266b7

Please sign in to comment.