81a93a489b
Backend — Photos timeline now groups by real capture date instead of upload time. New MediaMetadataService (FileLifecycleHook) extracts EXIF DateTimeOriginal from images and container creation_time from videos (mov/mp4/mkv) via nom-exif, timezone-correct (OffsetTimeOriginal), persisting captured_at so the existing media_sort_date trigger takes over. Adds POST /admin/photos/metadata/reextract to backfill existing media. Falls back to upload date when no embedded date exists. Frontend — premium grid cards: combined metadata line (relative date · size, owner avatar when shared), custom selection checkbox with a clear checked state, uniform full-width 4:3 thumbnail tiles independent of filename length, centered file-type icons, and a hit-test fix so checkbox/star/kebab clicks reach the controls (the decorative thumbnail no longer captures pointer events). Notification messages internationalised across all 16 locales. Broader polish: design tokens, a11y/focus-visible states, brand + PWA assets. Chore — bump semver-compatible dependencies (cargo upgrade); add nom-exif 3.6.1. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
259 lines
5.9 KiB
CSS
259 lines
5.9 KiB
CSS
/* Sidebar */
|
|
.sidebar {
|
|
width: var(--sidebar-width);
|
|
background: linear-gradient(180deg, var(--color-sidebar-bg-from) 0%, var(--color-sidebar-bg-to) 100%);
|
|
color: var(--color-sidebar-text-active);
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
flex-shrink: 0;
|
|
box-shadow: 2px 0 12px var(--color-shadow-md);
|
|
transition: transform var(--motion-slow) var(--ease-emphasized);
|
|
}
|
|
|
|
/* Sidebar overlay for mobile */
|
|
.sidebar-overlay {
|
|
display: none;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: var(--color-sidebar-overlay);
|
|
z-index: 998;
|
|
opacity: 0;
|
|
transition: opacity 0.3s ease;
|
|
}
|
|
|
|
.sidebar-overlay.active {
|
|
display: block;
|
|
opacity: 1;
|
|
}
|
|
|
|
/* Mobile responsive styles */
|
|
@media (max-width: 768px) {
|
|
.sidebar {
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
z-index: 999;
|
|
transform: translateX(-100%);
|
|
}
|
|
|
|
.sidebar.open {
|
|
transform: translateX(0);
|
|
}
|
|
|
|
[dir="rtl"] .sidebar {
|
|
left: auto;
|
|
right: 0;
|
|
transform: translateX(100%);
|
|
}
|
|
|
|
[dir="rtl"] .sidebar.open {
|
|
transform: translateX(0);
|
|
}
|
|
}
|
|
|
|
.logo-container {
|
|
padding: 22px var(--space-5);
|
|
display: flex;
|
|
align-items: center;
|
|
border-bottom: 1px solid var(--color-sidebar-separator);
|
|
margin-bottom: var(--space-2);
|
|
text-decoration: none;
|
|
color: inherit;
|
|
}
|
|
|
|
.logo {
|
|
width: 40px;
|
|
height: 40px;
|
|
background: var(--color-sidebar-logo-gradient);
|
|
border-radius: var(--radius-2xl);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-right: var(--space-3);
|
|
box-shadow: 0 3px 10px var(--color-sidebar-shadow);
|
|
transition:
|
|
transform 0.2s,
|
|
box-shadow 0.2s;
|
|
|
|
[dir="rtl"] & {
|
|
margin-left: var(--space-3);
|
|
margin-right: unset;
|
|
}
|
|
}
|
|
|
|
.logo:hover {
|
|
transform: scale(1.05);
|
|
box-shadow: 0 4px 14px var(--color-sidebar-shadow-lg);
|
|
}
|
|
|
|
.logo svg {
|
|
width: 22px;
|
|
height: 22px;
|
|
fill: var(--color-sidebar-text-active);
|
|
}
|
|
|
|
.app-name {
|
|
font-size: 19px;
|
|
font-weight: var(--weight-bold);
|
|
color: var(--color-sidebar-text-active);
|
|
letter-spacing: 0.3px;
|
|
}
|
|
|
|
.nav-menu {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-grow: 1;
|
|
padding: var(--space-2) var(--space-3);
|
|
gap: var(--space-0-5);
|
|
}
|
|
|
|
.nav-item {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
padding: 11px var(--space-3-5);
|
|
border-radius: var(--radius-xl);
|
|
cursor: pointer;
|
|
color: var(--color-sidebar-text);
|
|
font-size: 14.5px;
|
|
font-weight: var(--weight-medium);
|
|
/* Button resets — .nav-item is a <button> (keyboard-operable nav). */
|
|
font-family: inherit;
|
|
text-align: left;
|
|
appearance: none;
|
|
background: none;
|
|
transition: all 0.2s ease;
|
|
position: relative;
|
|
border: none;
|
|
border-left: 3px solid transparent;
|
|
|
|
[dir="rtl"] & {
|
|
border-left: none;
|
|
border-right: 3px solid transparent;
|
|
}
|
|
}
|
|
|
|
.nav-item:hover {
|
|
background-color: var(--color-sidebar-hover-bg);
|
|
color: var(--color-sidebar-text-hover);
|
|
}
|
|
|
|
.nav-item.active {
|
|
background-color: var(--color-sidebar-active-bg);
|
|
color: var(--color-sidebar-text-active);
|
|
border-left-color: var(--color-accent);
|
|
font-weight: var(--weight-semibold);
|
|
|
|
[dir="rtl"] & {
|
|
border-left-color: transparent;
|
|
border-right-color: var(--color-accent);
|
|
}
|
|
}
|
|
|
|
.nav-item i,
|
|
.nav-item .nav-icon,
|
|
.nav-item .oxi-icon {
|
|
margin-right: var(--space-3-5);
|
|
width: 20px;
|
|
height: 20px;
|
|
text-align: center;
|
|
font-size: var(--text-md);
|
|
transition:
|
|
color 0.2s,
|
|
transform 0.2s;
|
|
flex-shrink: 0;
|
|
|
|
[dir="rtl"] & {
|
|
margin-left: var(--space-3-5);
|
|
margin-right: unset;
|
|
}
|
|
}
|
|
|
|
/* Colored icons per section */
|
|
.nav-item:nth-child(1) i,
|
|
.nav-item:nth-child(1) .oxi-icon {
|
|
color: var(--color-cal-1);
|
|
} /* Files - orange */
|
|
.nav-item:nth-child(2) i,
|
|
.nav-item:nth-child(2) .oxi-icon {
|
|
color: var(--color-cal-2);
|
|
} /* Shared - blue */
|
|
.nav-item:nth-child(3) i,
|
|
.nav-item:nth-child(3) .oxi-icon {
|
|
color: var(--color-cal-3);
|
|
} /* Recent - teal */
|
|
.nav-item:nth-child(4) i,
|
|
.nav-item:nth-child(4) .oxi-icon {
|
|
color: var(--color-cal-4);
|
|
} /* Favorites - gold */
|
|
.nav-item:nth-child(5) i,
|
|
.nav-item:nth-child(5) .oxi-icon {
|
|
color: var(--color-cal-5);
|
|
} /* Photos - pink */
|
|
.nav-item:nth-child(6) i,
|
|
.nav-item:nth-child(6) .oxi-icon {
|
|
color: var(--color-cal-6);
|
|
} /* Trash - red */
|
|
|
|
/* Colourful icons at rest, but the ACTIVE item is always accent — one
|
|
coherent active state instead of a colour that changes per item.
|
|
Same specificity as the per-child rest rules, so source order (this comes
|
|
after them) makes it win for the active item. */
|
|
.nav-item.active i,
|
|
.nav-item.active .oxi-icon {
|
|
color: var(--color-accent);
|
|
}
|
|
|
|
.nav-item:hover i,
|
|
.nav-item:hover .oxi-icon {
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
/* Storage indicator */
|
|
.storage-container {
|
|
margin: auto var(--space-3) var(--space-4) var(--space-3);
|
|
background: var(--color-sidebar-storage-bg);
|
|
border: 1px solid var(--color-sidebar-storage-border);
|
|
border-radius: var(--radius-2xl);
|
|
padding: var(--space-4);
|
|
}
|
|
|
|
.storage-title {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: var(--space-1-5);
|
|
margin-bottom: var(--space-3);
|
|
font-size: var(--text-sm);
|
|
font-weight: var(--weight-semibold);
|
|
color: var(--color-sidebar-storage-text);
|
|
letter-spacing: 0.3px;
|
|
}
|
|
|
|
.storage-bar {
|
|
height: 6px;
|
|
background-color: var(--color-sidebar-storage-bar);
|
|
border-radius: 3px;
|
|
overflow: hidden;
|
|
margin-bottom: var(--space-2-5);
|
|
}
|
|
|
|
.storage-fill {
|
|
height: 100%;
|
|
background: var(--color-sidebar-progress);
|
|
border-radius: 3px;
|
|
width: 0%;
|
|
transition: width 0.8s ease;
|
|
}
|
|
|
|
.storage-info {
|
|
text-align: center;
|
|
font-size: 11.5px;
|
|
color: var(--color-sidebar-storage-faint);
|
|
font-weight: var(--weight-normal);
|
|
}
|