Files
Oxicloud/static/css/components/breadcrumb.css
T
Diocrafts 269a5fe940 feat: implement full breadcrumb path navigation in Files tab
- Add breadcrumbPath array to app state for tracking folder hierarchy
- Rewrite updateBreadcrumb() to render full path: Home > folder > subfolder
- Each breadcrumb segment is clickable to navigate back to that level
- Current folder shown in bold (non-clickable), parent folders as links
- Reset breadcrumb path on tab switch, home navigation, and initial load
- Update navigateFolder/selectFolder to push to breadcrumb path
- Enhanced breadcrumb CSS with hover effects and dark mode support
2026-02-21 00:19:04 +01:00

41 lines
603 B
CSS

/* Breadcrumb */
.breadcrumb {
display: flex;
align-items: center;
flex-wrap: wrap;
margin-bottom: 15px;
font-size: 14px;
color: #666;
gap: 2px;
}
.breadcrumb-item {
padding: 2px 4px;
border-radius: 4px;
transition: background 0.15s, color 0.15s;
}
.breadcrumb-link {
cursor: pointer;
color: #5a6f8a;
}
.breadcrumb-link:hover {
text-decoration: underline;
color: #ff5e3a;
background: rgba(255, 94, 58, 0.06);
}
.breadcrumb-current {
font-weight: 600;
color: #333;
cursor: default;
}
.breadcrumb-separator {
margin: 0 4px;
color: #adb5bd;
font-size: 12px;
user-select: none;
}