视频任务管理更新

This commit is contained in:
super
2026-07-19 22:23:26 +08:00
parent 69784b8d32
commit cbde22ec79
62 changed files with 2164 additions and 280 deletions
+64
View File
@@ -39,6 +39,70 @@ html {
.page-shell {
min-height: 100vh;
min-height: 100dvh;
}
/*
* The desktop client uses a resizable WebView. Brand modules have a dynamic
* navigation header, so their content must consume the remaining space
* instead of subtracting the old fixed 56px header height.
*/
@media (min-width: 1101px) {
html:has(.module-page),
body:has(.module-page) {
height: 100%;
overflow: hidden;
background: #1a1a1a;
}
#app:has(> .module-page) {
height: 100vh;
height: 100dvh;
min-height: 0;
overflow: hidden;
background: #1a1a1a;
}
.module-page {
display: flex;
flex-direction: column;
height: 100vh;
height: 100dvh;
min-height: 0 !important;
overflow: hidden;
}
.module-page > .top-bar {
flex: 0 0 auto;
}
.module-page > .main-content {
flex: 1 1 auto;
height: auto !important;
min-height: 0 !important;
overflow: hidden;
}
.module-page > .main-content > .left-panel,
.module-page > .main-content > .right-panel,
.module-page .task-list-wrap {
min-height: 0;
}
.module-page > .main-content > .left-panel,
.module-page .task-list-wrap {
overscroll-behavior: contain;
scrollbar-gutter: stable;
}
}
@media (max-width: 1100px) {
body:has(.module-page),
#app:has(> .module-page) {
min-height: 100vh;
min-height: 100dvh;
background: #1a1a1a;
}
}
.theme-light {