feat: Enhance sidebar navigation with dropdowns and refactor breadcrumb structure

This commit is contained in:
Will Miao
2025-08-26 16:44:01 +08:00
parent 6df083a1d5
commit d7949fbc30
10 changed files with 294 additions and 56 deletions

View File

@@ -0,0 +1,16 @@
<!-- Folder Navigation Sidebar -->
<div class="folder-sidebar" id="folderSidebar">
<div class="sidebar-header" id="sidebarHeader">
<h3><i class="fas fa-home"></i> <span id="sidebarTitle">Model Root</span></h3>
<button class="sidebar-toggle-close" id="sidebarToggleClose">
<i class="fas fa-times"></i>
</button>
</div>
<div class="sidebar-content">
<div class="sidebar-tree-container">
<div class="sidebar-tree" id="sidebarFolderTree">
<!-- Tree will be populated by JavaScript -->
</div>
</div>
</div>
</div>