mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-08-28 19:47:49 +08:00
fix(transfer-queue): 文件进度列表撑满弹窗剩余高度,移除固定 23rem 上限
- queue-detail 改为纵向 flex 布局,任务列表 flex 填充剩余高度并在内部滚动 - 移动端保持原有整页滚动行为
This commit is contained in:
@@ -684,7 +684,10 @@ onUnmounted(() => {
|
||||
}
|
||||
|
||||
.queue-detail {
|
||||
display: flex;
|
||||
overflow: hidden;
|
||||
flex-direction: column;
|
||||
min-block-size: 0;
|
||||
min-inline-size: 0;
|
||||
padding-inline-start: 1.5rem;
|
||||
}
|
||||
@@ -739,7 +742,9 @@ onUnmounted(() => {
|
||||
}
|
||||
|
||||
.queue-task-list {
|
||||
max-block-size: 23rem;
|
||||
flex: 1 1 auto;
|
||||
min-block-size: 0;
|
||||
max-block-size: none;
|
||||
overflow-y: auto;
|
||||
scrollbar-width: none;
|
||||
}
|
||||
@@ -926,6 +931,7 @@ onUnmounted(() => {
|
||||
}
|
||||
|
||||
.queue-task-list {
|
||||
flex: 0 0 auto;
|
||||
overflow: visible;
|
||||
max-block-size: none;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user