Library workspace upgrades: darkroom viewer, mosaic, geotagging, file explorer

- darkroom-style fullscreen viewer: left info panel, rating/color-label toolbar,
  bottom filmstrip, keyboard nav (Esc / arrows), placeholder on load failure
- thumbnail density slider (contact-sheet) + photo mosaic generator (target -> tiles)
- lighttable-style hover info preview (no click needed)
- map drag & drop geotagging (saved to index only; originals untouched)
- file explorer: parallel drive scan + timeout, create/delete(trash)/move folders;
  index reparent on move and cleanup on delete (single source of truth)
- library: photos-before-videos ordering; drag range select/deselect;
  native image drag disabled so sweep-select works
- responsive sidebar font scaling; no-wrap filter labels; media protocol CORS + video Range

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-06-02 14:47:26 +09:00
parent 3e73967c7b
commit d2546f9cbf
25 changed files with 2358 additions and 434 deletions
+11 -2
View File
@@ -8,9 +8,11 @@ body,
height: 100%;
}
/* darktable 톤: 밀도 높은 프로 도구 느낌 (기본 15px, 쉬운 모드에서 20px) */
/* darktable 톤: 밀도 높은 프로 도구 느낌.
창 너비에 따라 rem 기준값을 자동 보간 → 폰트·아이콘·사이드바(rem 기반)가 함께 스케일되어
해상도가 달라져도 버튼 라벨이 줄바꿈 없이 들어맞는다. (쉬운 모드는 고정 20px) */
html {
font-size: 15px;
font-size: clamp(13px, 0.45vw + 10px, 17px);
}
body {
@@ -63,6 +65,13 @@ button:focus-visible {
outline-offset: 1px;
}
/* 슬라이더/체크박스 강조색을 앰버로 (제너릭 파랑 제거) */
input[type='range'],
input[type='checkbox'],
input[type='radio'] {
accent-color: #d98c3f;
}
/* 4050 쉬운 모드: <html class="easy"> — rem 기준 전체 확대 + 큰 썸네일 */
html.easy {
font-size: 20px; /* 기본 16px → rem 기반 Tailwind 유틸 전반 확대 */