feat: pill toggle for Library Only — globe ↔ hard-drive icons

Replaced the text button with a sliding pill toggle:
- Left: globe icon (online/explore mode)
- Right: hard-drive icon (library-only mode)
- Thumb slides left↔right with CSS transition
- Inactive: dark background, white thumb on left (globe side)
- Active: accent yellow background, thumb on right (local side)
- Icons dim/brighten based on active state
This commit is contained in:
2026-03-30 15:51:19 -04:00
parent 408d2ff498
commit d5a427d885
2 changed files with 53 additions and 22 deletions
+5 -4
View File
@@ -15,10 +15,11 @@
<h1 class="title">YellowJacket</h1>
<h3 class="subtitle">Music how it was meant to bee.</h3>
</hgroup>
<button id="library-only-toggle" class="library-only-toggle" title="Library Only mode">
<wa-icon name="book"></wa-icon>
<span>Library Only</span>
</button>
<div id="library-only-toggle" class="mode-toggle" title="Toggle Library Only mode">
<wa-icon name="globe" class="mode-icon mode-icon-globe"></wa-icon>
<div class="mode-toggle-thumb"></div>
<wa-icon name="hard-drive" class="mode-icon mode-icon-local"></wa-icon>
</div>
<library-filter></library-filter>
<search-bar></search-bar>
</header>