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