0
1
mirror of https://github.com/radio95-rnt/RadioPlayer.git synced 2026-02-26 21:53:54 +01:00
This commit is contained in:
2025-12-27 23:01:42 +01:00
parent 5dc24efead
commit 6cc074cb38

View File

@@ -73,25 +73,21 @@
/* --- STICKY QUEUE IMPLEMENTATION --- */ /* --- STICKY QUEUE IMPLEMENTATION --- */
#section-playlist { #section-playlist {
flex: 2 1 0; /* Increased priority to take more space when both are open */ flex: 3; /* Takes more space by default */
min-height: 150px; min-height: 100px;
} }
#section-queue { #section-queue {
/* Changed from 0 0 160px to 1 1 160px */ /* flex: 1 allows it to grow into any space left by the playlist */
/* This allows it to GROW (1) and SHRINK (1) with a base size of 160px */ flex: 1;
flex: 1 1 160px; min-height: 160px; /* It will be at least this tall */
display: flex; display: flex;
flex-direction: column; flex-direction: column;
min-height: 50px;
} }
#section-queue .frame-title { /* Ensure the inner listbox fills the new height */
cursor: default; #section-queue .collapsible-content {
} flex-grow: 1;
#section-queue .frame-title::after {
display: none;
} }
.small{font-size:12px; color:var(--muted)} .small{font-size:12px; color:var(--muted)}