mirror of
https://github.com/immich-app/immich.git
synced 2025-03-11 02:23:09 -05:00
fix(web): album selection modal overflow and alignment (#4059)
This commit is contained in:
parent
c55ef7c383
commit
afccb37a3b
1 changed files with 7 additions and 5 deletions
|
@ -25,21 +25,23 @@
|
||||||
|
|
||||||
<button
|
<button
|
||||||
on:click={() => dispatcher('album')}
|
on:click={() => dispatcher('album')}
|
||||||
class="flex w-full gap-4 px-6 py-2 transition-colors hover:bg-gray-200 dark:hover:bg-gray-700"
|
class="flex w-full gap-4 px-6 py-2 text-left transition-colors hover:bg-gray-200 dark:hover:bg-gray-700"
|
||||||
>
|
>
|
||||||
<div class="h-12 w-12 rounded-xl bg-slate-300">
|
<div class="h-12 w-12 shrink-0 rounded-xl bg-slate-300">
|
||||||
{#if album.albumThumbnailAssetId}
|
{#if album.albumThumbnailAssetId}
|
||||||
<img
|
<img
|
||||||
src={api.getAssetThumbnailUrl(album.albumThumbnailAssetId, ThumbnailFormat.Webp)}
|
src={api.getAssetThumbnailUrl(album.albumThumbnailAssetId, ThumbnailFormat.Webp)}
|
||||||
alt={album.albumName}
|
alt={album.albumName}
|
||||||
class={`z-0 h-full w-full rounded-xl object-cover transition-all duration-300 hover:shadow-lg`}
|
class="z-0 h-full w-full rounded-xl object-cover transition-all duration-300 hover:shadow-lg"
|
||||||
data-testid="album-image"
|
data-testid="album-image"
|
||||||
draggable="false"
|
draggable="false"
|
||||||
/>
|
/>
|
||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
<div class="flex h-12 flex-col items-start justify-center">
|
<div class="flex h-12 flex-col items-start justify-center overflow-hidden">
|
||||||
<span>{albumNameArray[0]}<b>{albumNameArray[1]}</b>{albumNameArray[2]}</span>
|
<span class="w-full shrink overflow-hidden text-ellipsis whitespace-nowrap"
|
||||||
|
>{albumNameArray[0]}<b>{albumNameArray[1]}</b>{albumNameArray[2]}</span
|
||||||
|
>
|
||||||
<span class="flex gap-1 text-sm">
|
<span class="flex gap-1 text-sm">
|
||||||
{#if variant === 'simple'}
|
{#if variant === 'simple'}
|
||||||
<span
|
<span
|
||||||
|
|
Loading…
Add table
Reference in a new issue