feat (ui): kolomhoogte en seasonheaders

This commit is contained in:
kodi
2026-03-08 20:13:52 +01:00
parent be2271aa15
commit 96b182c182
4 changed files with 87 additions and 6 deletions
+59 -2
View File
@@ -8,6 +8,10 @@ body {
font-family: "Segoe UI", Tahoma, sans-serif;
background: #f2f4f8;
color: #1a1f2b;
height: 100vh;
overflow: hidden;
display: flex;
flex-direction: column;
}
.topbar {
@@ -34,6 +38,9 @@ body {
gap: 12px;
padding: 12px;
align-items: start;
flex: 1;
min-height: 0;
overflow: hidden;
}
.panel {
@@ -46,6 +53,16 @@ body {
flex-direction: column;
}
#panelEpisodes,
#panelSelectedEpisodes,
#panelSelectedFiles {
height: 100%;
min-height: 0;
max-height: 100%;
align-self: stretch;
overflow: hidden;
}
.panel h2 {
margin: 0 0 10px;
font-size: 16px;
@@ -133,11 +150,36 @@ button.secondary {
.linked-list-wrap {
flex: 1;
min-height: 240px;
max-height: 440px;
min-height: 0;
overflow: hidden;
}
.linked-list {
flex: 1;
height: 100%;
max-height: none;
overflow-y: auto;
}
#panelEpisodes .panel-body,
#panelSelectedEpisodes .panel-body,
#panelSelectedFiles .panel-body {
flex: 1;
min-height: 0;
overflow: hidden;
}
#panelEpisodes .linked-list-wrap,
#panelSelectedEpisodes .linked-list-wrap,
#panelSelectedFiles .linked-list-wrap {
flex: 1;
min-height: 0;
}
#panelEpisodes .linked-list-wrap .list,
#panelSelectedEpisodes .linked-list-wrap .list,
#panelSelectedFiles .linked-list-wrap .list {
max-height: none;
height: 100%;
}
@@ -157,6 +199,15 @@ button.secondary {
background: #e0f2fe;
}
.list li.season-header {
background: #eef2ff;
border-bottom: 1px solid #dbe4fb;
color: #1e293b;
font-weight: 700;
justify-content: flex-start;
padding: 8px;
}
.panel-footer {
position: sticky;
bottom: 0;
@@ -268,6 +319,12 @@ button.secondary {
grid-template-columns: 1fr;
}
#panelEpisodes,
#panelSelectedEpisodes,
#panelSelectedFiles {
min-height: 420px;
}
.modal-grid {
grid-template-columns: 1fr;
}