Changeset cb6b1ad in Klonkt


Ignore:
Timestamp:
06/14/2026 11:26:17 PM (3 months ago)
Author:
roboburr <roboburr@…>
Branches:
main
Children:
b50a885
Parents:
67d4067
Message:

fix: tablet full-player queue gets full width (660px instead of shrink-to-content)

align-items:center on the panel let the queue shrink to its content -> narrow.
Now width:100%;max-width:660px (matching info/progress) + larger row items.
audio.css v=4->v=5.

Co-Authored-By: Claude <noreply@…>

Location:
src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/assets/css/audio.css

    r67d4067 rcb6b1ad  
    562562  .audio-sheet-play { width: 108px; height: 108px; }
    563563  .audio-sheet-play svg { width: 46px; height: 46px; }
     564  /* Queue dezelfde breedte als info/progress (anders krimpt 'ie door
     565     align-items:center tot z'n inhoud = smal), + grotere rijen voor touch. */
     566  .audio-sheet-queue { width: 100%; max-width: 660px; }
     567  .audio-sheet-queue-label { font-size: 0.95rem; }
     568  .audio-sheet-queue-item { padding: 0.7rem 0.7rem; gap: 0.6rem; font-size: 1.05rem; }
     569  .audio-sheet-queue-item .aqi-artist { font-size: 0.95rem; }
    564570}
    565571
  • src/views/shell.ejs

    r67d4067 rcb6b1ad  
    168168     anywhere (admin previews, post embeds, etc). The player itself is
    169169     a singleton — see the script tag near </body>. -->
    170 <link rel="stylesheet" href="/assets/css/audio.css?v=4">
     170<link rel="stylesheet" href="/assets/css/audio.css?v=5">
    171171
    172172<%- include('partials/shared-styles') %>
Note: See TracChangeset for help on using the changeset viewer.