diff options
| author | Christophe Besson <cbesson@gmail.com> | 2026-08-24 21:24:30 +0200 |
|---|---|---|
| committer | Christophe Besson <cbesson@gmail.com> | 2026-08-24 21:24:30 +0200 |
| commit | 54dd95884b04ee5a1ffe4a40260e37784f023583 (patch) | |
| tree | 7aa8c84702d618de73ed3278950b30a48b0e6df0 /packages/meshbay-hub/src/meshbay_hub/static/style.css | |
| parent | f4ed927fa873133c5fed73fb7dd60e7747fc3dc2 (diff) | |
| download | meshbay-54dd95884b04ee5a1ffe4a40260e37784f023583.tar.gz | |
fix(hub): show what's actually playing in the queue panel
The panel's header said "Playing now" but only the panel itself was named
that — the current track was just a highlighted row you had to spot in
the list, easy to miss on a long queue and often scrolled out of view
entirely on open. Now shows the track's own title/artist right under the
header and scrolls the highlighted row into view when the panel opens.
Diffstat (limited to 'packages/meshbay-hub/src/meshbay_hub/static/style.css')
| -rw-r--r-- | packages/meshbay-hub/src/meshbay_hub/static/style.css | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/packages/meshbay-hub/src/meshbay_hub/static/style.css b/packages/meshbay-hub/src/meshbay_hub/static/style.css index 59ec919..42cfcf9 100644 --- a/packages/meshbay-hub/src/meshbay_hub/static/style.css +++ b/packages/meshbay-hub/src/meshbay_hub/static/style.css @@ -2778,6 +2778,17 @@ a.transfer-name { .music-detail .video-close { background: var(--bg-surface); color: var(--text); } .music-detail .video-close:hover { background: var(--border); } +.music-queue-now-playing { + padding: 10px 20px; + border-bottom: 1px solid var(--border); + font-size: 0.9em; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} +.music-queue-now-playing-title { font-weight: 600; color: var(--accent); } +.music-queue-now-playing-artist { color: var(--text-dim); } + .music-detail-body { padding: 16px 20px; overflow-y: auto; } .music-detail-header { display: flex; |