feat(quick-006): remove list icon from playlists, add favorites icon to default

- Replace static list icon with conditional: favorites icon for default playlist, nothing for others
- Reduce playlist-body left padding from 42px to 32px for tighter alignment without icon
This commit is contained in:
2026-03-01 09:44:16 -05:00
parent e8570cbb62
commit 3c19766fd0
@@ -587,7 +587,7 @@ export class PlaylistView
} }
.playlist-body { .playlist-body {
padding: 0 16px 12px 42px; padding: 0 16px 12px 32px;
} }
.playlist-actions { .playlist-actions {
@@ -2920,10 +2920,12 @@ export class PlaylistView
: ''}" : ''}"
name="chevron-right" name="chevron-right"
></wa-icon> ></wa-icon>
<wa-icon ${entry.summary.ID === this.favCtrl.playlistId
class="playlist-icon" ? html`<wa-icon
name="list" class="playlist-icon"
></wa-icon> name=${this.favCtrl.iconName}
></wa-icon>`
: nothing}
${isRenaming ${isRenaming
? html` ? html`
<input <input