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>
114 lines
2.4 KiB
CSS
114 lines
2.4 KiB
CSS
/* ── Scrollbar ── */
|
|
|
|
::-webkit-scrollbar {
|
|
width: 6px;
|
|
}
|
|
::-webkit-scrollbar-track {
|
|
background: var(--color-bg-surface);
|
|
}
|
|
::-webkit-scrollbar-thumb {
|
|
background: var(--color-accent);
|
|
border-radius: 3px;
|
|
}
|
|
* {
|
|
scrollbar-width: thin;
|
|
scrollbar-color: var(--color-accent) var(--color-bg-surface);
|
|
}
|
|
|
|
/* Content area */
|
|
.content-area {
|
|
flex-grow: 1;
|
|
padding: var(--space-5) var(--gutter);
|
|
overflow-y: scroll;
|
|
scrollbar-gutter: stable;
|
|
}
|
|
|
|
/* Phones: tighten the shared gutter and let the actions bar wrap. */
|
|
@media (max-width: 640px) {
|
|
:root {
|
|
--gutter: var(--space-4);
|
|
}
|
|
|
|
/* Mobile uses overlay scrollbars — don't reserve a phantom gutter. */
|
|
.content-area {
|
|
scrollbar-gutter: auto;
|
|
}
|
|
|
|
.actions-bar {
|
|
flex-wrap: wrap;
|
|
height: auto;
|
|
gap: var(--space-2);
|
|
}
|
|
}
|
|
|
|
.page-title {
|
|
font-size: var(--text-2xl);
|
|
font-weight: var(--weight-bold);
|
|
margin-bottom: var(--space-5);
|
|
color: var(--color-text);
|
|
}
|
|
|
|
.page-sticky-header {
|
|
position: sticky;
|
|
margin: 0px;
|
|
padding: var(--space-2-5) 0px;
|
|
top: -20px; /* due to padding top of content-area */
|
|
background-color: var(--color-bg-page);
|
|
z-index: 100; /* ensure header is above image preview */
|
|
}
|
|
|
|
.actions-bar {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin: 0 0 var(--space-3);
|
|
height: 60px;
|
|
padding: var(--space-2-5);
|
|
}
|
|
|
|
.action-buttons {
|
|
display: flex;
|
|
flex: auto;
|
|
gap: var(--space-3);
|
|
}
|
|
|
|
.empty-state {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: var(--space-2);
|
|
padding: var(--space-12) var(--space-6);
|
|
text-align: center;
|
|
color: var(--color-text-muted);
|
|
width: 100%;
|
|
min-height: 320px;
|
|
grid-column: 1 / -1;
|
|
}
|
|
|
|
.empty-state p {
|
|
margin: 0;
|
|
max-width: 42ch;
|
|
color: var(--color-text-muted);
|
|
}
|
|
|
|
/* First paragraph acts as the title. */
|
|
.empty-state p:first-of-type {
|
|
font-size: var(--text-lg);
|
|
font-weight: var(--weight-semibold);
|
|
color: var(--color-text-heading);
|
|
}
|
|
|
|
/* Call-to-action button spacing. */
|
|
.empty-state .btn {
|
|
margin-top: var(--space-4);
|
|
}
|
|
|
|
/* invisible element, permits building of drag element without altering display */
|
|
.drag-preview {
|
|
position: absolute;
|
|
top: -9999px;
|
|
left: -9999px;
|
|
pointer-events: none;
|
|
width: 360px;
|
|
}
|