mirror of
https://github.com/Psychotoxical/psysonic.git
synced 2026-07-22 15:25:46 +00:00
e7431b94b8
Implement share-link detection in search (track, queue, album, artist, composer): enqueue tracks/queues without interrupting playback; preview album/artist/composer without switching the active server; queue preview modal with scrollable track list. Based on community PR #551. Co-authored-by: Daniel Wagner <daniel.iuser@icloud.com>
24 lines
381 B
CSS
24 lines
381 B
CSS
/* ─── Results area ─── */
|
|
.mobile-search-results {
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
overscroll-behavior: contain;
|
|
}
|
|
|
|
.mobile-search-noresults {
|
|
padding: 48px 20px;
|
|
text-align: center;
|
|
color: var(--text-muted);
|
|
font-size: 15px;
|
|
}
|
|
|
|
.mobile-search-item:disabled {
|
|
opacity: 0.65;
|
|
}
|
|
|
|
.mobile-search-item--muted {
|
|
cursor: default;
|
|
color: var(--text-muted);
|
|
}
|
|
|