5c53d94c0c
- Add ?metadata=true support to GET /api/files/{id} to return JSON metadata
instead of binary content (was the root cause of favorites not loading)
- Fix favorites loadFileDetails to use metadata endpoint with auth headers
- Add star icon on favorited files/folders in grid view (top-left corner)
- Add star icon on favorited files/folders in list view (next to name)
- Refresh file view when toggling favorites so star appears/disappears
- Add CSS styles for .favorite-star and .favorite-star-inline
132 lines
2.6 KiB
CSS
132 lines
2.6 KiB
CSS
/* Styles for the favorites feature */
|
|
|
|
/* Favorite indicator */
|
|
.favorite-indicator {
|
|
position: absolute;
|
|
top: 10px;
|
|
right: 10px;
|
|
width: 25px;
|
|
height: 25px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 50%;
|
|
color: #ccc;
|
|
cursor: pointer;
|
|
z-index: 5;
|
|
transition: all 0.2s ease;
|
|
|
|
[dir='rtl'] & {
|
|
left: 10px;
|
|
right: unset;
|
|
}
|
|
}
|
|
|
|
.favorite-indicator:hover {
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
.favorite-indicator.active {
|
|
color: #ffc107;
|
|
text-shadow: 0 0 5px rgba(255, 193, 7, 0.5);
|
|
}
|
|
|
|
/* Styles for the favorites view items */
|
|
.favorite-item {
|
|
position: relative;
|
|
}
|
|
|
|
/* Adjustments for grid view */
|
|
.file-card.favorite-item {
|
|
border-left: 3px solid #ffc107;
|
|
|
|
[dir='rtl'] & {
|
|
border-right: 3px solid #ffc107;
|
|
border-left: unset;
|
|
}
|
|
}
|
|
|
|
/* Adjustments for list view */
|
|
.file-item.favorite-item {
|
|
position: relative;
|
|
grid-template-columns: 30px minmax(200px, 2fr) 1fr 1fr 120px;
|
|
}
|
|
|
|
.file-item.favorite-item .favorite-indicator {
|
|
position: relative;
|
|
top: 0;
|
|
right: 0;
|
|
width: 30px;
|
|
height: 30px;
|
|
}
|
|
|
|
/* Styles for the favorites-specific empty state */
|
|
.favorites-empty-state {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 50px 20px;
|
|
text-align: center;
|
|
color: #6c757d;
|
|
}
|
|
|
|
.favorites-empty-state i {
|
|
font-size: 48px;
|
|
color: #ffc107;
|
|
margin-bottom: 20px;
|
|
opacity: 0.6;
|
|
}
|
|
|
|
.favorites-empty-state p {
|
|
margin-bottom: 10px;
|
|
max-width: 400px;
|
|
}
|
|
|
|
/* Animation for the favorite star */
|
|
@keyframes favorite-pulse {
|
|
0% { transform: scale(1); }
|
|
50% { transform: scale(1.2); }
|
|
100% { transform: scale(1); }
|
|
}
|
|
|
|
.favorite-indicator.active {
|
|
animation: favorite-pulse 0.3s ease;
|
|
}
|
|
|
|
/* ── Star badge on file/folder cards (normal view) ── */
|
|
|
|
/* Grid view: star in top-left corner */
|
|
.file-card .favorite-star {
|
|
position: absolute;
|
|
top: 8px;
|
|
left: 8px;
|
|
font-size: 14px;
|
|
color: #ffc107;
|
|
filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
|
|
z-index: 5;
|
|
pointer-events: none;
|
|
|
|
[dir='rtl'] & {
|
|
left: unset;
|
|
right: 8px;
|
|
}
|
|
}
|
|
|
|
.file-card .favorite-star.active i {
|
|
animation: favorite-pulse 0.3s ease;
|
|
}
|
|
|
|
/* List view: small star next to the name */
|
|
.favorite-star-inline {
|
|
color: #ffc107;
|
|
font-size: 11px;
|
|
margin-left: 6px;
|
|
vertical-align: middle;
|
|
filter: drop-shadow(0 0 1px rgba(255, 193, 7, 0.4));
|
|
|
|
[dir='rtl'] & {
|
|
margin-left: 0;
|
|
margin-right: 6px;
|
|
}
|
|
} |