269a5fe940
- 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
46 lines
738 B
CSS
46 lines
738 B
CSS
/* Styles for search results */
|
|
.search-results-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 10px 0;
|
|
margin-bottom: 15px;
|
|
border-bottom: 1px solid #eee;
|
|
width: 100%;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
}
|
|
|
|
.search-results-header h3 {
|
|
margin: 0;
|
|
font-size: 16px;
|
|
color: #555;
|
|
}
|
|
|
|
.search-results-header .search-time {
|
|
font-size: 12px;
|
|
font-weight: normal;
|
|
color: #999;
|
|
}
|
|
|
|
.search-controls {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.search-sort-select {
|
|
padding: 4px 8px;
|
|
border: 1px solid #ddd;
|
|
border-radius: 4px;
|
|
font-size: 13px;
|
|
background: #fff;
|
|
color: #333;
|
|
cursor: pointer;
|
|
outline: none;
|
|
}
|
|
|
|
.search-sort-select:focus {
|
|
border-color: var(--primary-color, #4a90d9);
|
|
}
|