audio streaming app plyr.fm
38
fork

Configure Feed

Select the types of activity you want to include in your feed.

revert: remove track list dimming on refresh (#1219)

The opacity transition on filter change looked janky. Just let the
tracks swap in without visual fanfare.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

authored by

nate nowack
Claude Opus 4.6
and committed by
GitHub
31b1b90c 532b516b

+1 -8
+1 -8
frontend/src/routes/+page.svelte
··· 241 241 {:else if !hasTracks} 242 242 <p class="empty">no tracks yet</p> 243 243 {:else} 244 - <div class="track-list" class:refreshing={loadingTracks && hasTracks}> 244 + <div class="track-list"> 245 245 {#each tracks as track, i} 246 246 <TrackItem 247 247 {track} ··· 435 435 display: flex; 436 436 flex-direction: column; 437 437 gap: 0.5rem; 438 - transition: opacity 0.15s; 439 - } 440 - 441 - .track-list.refreshing { 442 - opacity: 0.5; 443 - transition: opacity 0.15s; 444 - pointer-events: none; 445 438 } 446 439 447 440 .scroll-sentinel {