修复搜索结果卡片视图筛选可视性,优化季集显示位置,重构nodatafound情形ui,重构文件管理器ui并增加文件树功能,优化侧边栏高度规避竖向滑动条

This commit is contained in:
madrays
2025-03-30 17:25:34 +08:00
parent 59b5e4a330
commit c4f54dcddc
14 changed files with 1627 additions and 343 deletions
+17 -7
View File
@@ -117,13 +117,23 @@ function handleNavScroll(evt: Event) {
}
.nav-items {
overflow-x: hidden;
overflow-y: auto;
block-size: 100%;
// ️ We no loner needs this overflow styles as perfect scrollbar applies it
// overflow-x: hidden;
// // ️ We used `overflow-y` instead of `overflow` to mitigate overflow x. Revert back if any issue found.
// overflow-y: auto;
display: flex;
flex-direction: column;
padding: 0 0 16px 0;
/* 完全隐藏滚动条 */
&::-webkit-scrollbar {
display: none;
}
scrollbar-width: none; /* Firefox */
-ms-overflow-style: none; /* IE and Edge */
> li {
margin-block-end: 2px;
}
}
.nav-item-title {
@@ -151,4 +161,4 @@ function handleNavScroll(evt: Event) {
}
}
}
</style>
</style>