+3
-3
frontend/src/routes/playlist/[id]/+page.svelte
+3
-3
frontend/src/routes/playlist/[id]/+page.svelte
···
881
>
882
{#if isPlaylistPlaying}
883
<svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor">
884
-
<rect x="6" y="4" width="4" height="16" />
885
-
<rect x="14" y="4" width="4" height="16" />
886
</svg>
887
{:else}
888
<svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor">
889
<path d="M8 5v14l11-7z" />
890
</svg>
891
-
play now
892
{/if}
893
</button>
894
<button class="queue-button" onclick={addToQueue}>
···
881
>
882
{#if isPlaylistPlaying}
883
<svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor">
884
+
<path d="M6 4h4v16H6zM14 4h4v16h-4z"/>
885
</svg>
886
+
pause
887
{:else}
888
<svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor">
889
<path d="M8 5v14l11-7z" />
890
</svg>
891
+
play
892
{/if}
893
</button>
894
<button class="queue-button" onclick={addToQueue}>
+1
-1
frontend/src/routes/track/[id]/+page.svelte
+1
-1
frontend/src/routes/track/[id]/+page.svelte
+3
-3
frontend/src/routes/u/[handle]/album/[slug]/+page.svelte
+3
-3
frontend/src/routes/u/[handle]/album/[slug]/+page.svelte
···
561
>
562
{#if isAlbumPlaying}
563
<svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor">
564
-
<rect x="6" y="4" width="4" height="16" />
565
-
<rect x="14" y="4" width="4" height="16" />
566
</svg>
567
{:else}
568
<svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor">
569
<path d="M8 5v14l11-7z"/>
570
</svg>
571
-
play now
572
{/if}
573
</button>
574
<button class="queue-button" onclick={addToQueue}>
···
561
>
562
{#if isAlbumPlaying}
563
<svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor">
564
+
<path d="M6 4h4v16H6zM14 4h4v16h-4z"/>
565
</svg>
566
+
pause
567
{:else}
568
<svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor">
569
<path d="M8 5v14l11-7z"/>
570
</svg>
571
+
play
572
{/if}
573
</button>
574
<button class="queue-button" onclick={addToQueue}>