fix(web): top bar z index on search page (#26582)

This commit is contained in:
Yaros
2026-03-02 11:33:00 +01:00
committed by GitHub
parent d4434f2276
commit bc4265416d

View File

@@ -326,7 +326,7 @@
<section> <section>
{#if assetInteraction.selectionActive} {#if assetInteraction.selectionActive}
<div class="fixed top-0 start-0 w-full"> <div class="fixed top-0 start-0 w-full z-2">
<AssetSelectControlBar <AssetSelectControlBar
assets={assetInteraction.selectedAssets} assets={assetInteraction.selectedAssets}
clearSelect={() => cancelMultiselect(assetInteraction)} clearSelect={() => cancelMultiselect(assetInteraction)}
@@ -382,7 +382,7 @@
</AssetSelectControlBar> </AssetSelectControlBar>
</div> </div>
{:else} {:else}
<div class="fixed top-0 start-0 w-full"> <div class="fixed top-0 start-0 w-full z-2">
<ControlAppBar onClose={() => goto(previousRoute)} backIcon={mdiArrowLeft}> <ControlAppBar onClose={() => goto(previousRoute)} backIcon={mdiArrowLeft}>
<div class="absolute bg-light"></div> <div class="absolute bg-light"></div>
<div class="w-full flex-1 ps-4"> <div class="w-full flex-1 ps-4">