feat(mobile): comprehensive mobile UI overhaul (#238)

RandomMix: filters and genre mix panels collapse on mobile
- RandomAlbums / album grids: auto-fill favouring 3 columns at narrow widths
- BottomNav: More button opens a bottom sheet with remaining nav items
- MobileMoreOverlay: new sheet component with backdrop and slide-up animation
- Tracklist: mobile Title / Artist two-line stacked layout (Apple Music style)
- ArtistDetail: centred header (photo → name → buttons), icon-only buttons
  except Play All, collapsible Similar Artists (5 default), 2-column album
  grid, avatar glow derived from dominant cover colour
- Settings: fixed overflow in ReplayGain, Crossfade, mix rating filters,
  theme scheduler, and Next Track Buffering sections

Co-authored-by: kilyabin <65072190+kilyabin@users.noreply.github.com>
This commit is contained in:
Frank Stellmacher
2026-04-21 12:10:02 +02:00
committed by GitHub
parent f73cca669b
commit c61bcacd0d
15 changed files with 518 additions and 161 deletions
+87
View File
@@ -2066,6 +2066,93 @@ html[data-platform="windows"] .player-bar.floating {
line-height: 1;
}
/* ─── Mobile More Sheet ─── */
.mobile-more-backdrop {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.45);
z-index: 200;
}
.mobile-more-sheet {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--bg-app);
border-radius: 16px 16px 0 0;
border-top: 1px solid var(--border);
z-index: 201;
padding: 0.5rem 0.75rem calc(0.75rem + var(--bottom-nav-height, 62px));
animation: more-sheet-up 0.22s ease;
}
@keyframes more-sheet-up {
from { transform: translateY(100%); }
to { transform: translateY(0); }
}
.mobile-more-handle {
width: 36px;
height: 4px;
background: var(--border);
border-radius: 2px;
margin: 0 auto 0.75rem;
}
.mobile-more-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 0.25rem 0;
}
.mobile-more-item {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.3rem;
padding: 0.65rem 0.25rem;
border-radius: var(--radius);
color: var(--text-secondary);
text-decoration: none;
font-size: 11px;
font-weight: 500;
cursor: pointer;
background: none;
border: none;
transition: color var(--transition-fast), background var(--transition-fast);
}
.mobile-more-item:hover {
color: var(--text-primary);
background: var(--bg-hover);
}
.mobile-more-item.active {
color: var(--accent);
}
.mobile-more-icon {
display: flex;
align-items: center;
justify-content: center;
opacity: 0.75;
}
.mobile-more-item.active .mobile-more-icon,
.mobile-more-item:hover .mobile-more-icon {
opacity: 1;
}
.mobile-more-label {
line-height: 1.2;
text-align: center;
max-width: 72px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
/* ─── Grid Overrides ─── */
.app-shell[data-mobile] {
grid-template-columns: 1fr;