Files
CoRE.Vision/frontend/archive.html
T
git_admin ffddaaa50f archive: add 32px content footer; date section as a bottom card; hide cam scrollbar
The archive content frame gets a 32px footer (reusing the live grid-bar look)
with a fullscreen button that expands the player + timeline. The sidebar date
section is now a bottom-anchored card (panel-2, bordered, rounded) holding the
date input above the inline calendar; the camera list fills the space above it
and its scrollbar is hidden (still scrollable). Calendar colours tweaked to sit
on the card.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-01 22:27:56 +05:00

45 lines
1.6 KiB
HTML

<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>CoRE.Vizion+ — Архив</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body data-page="archive">
<div class="layout">
<aside>
<a class="nav-item" href="/" data-nav="live"><span class="ico"></span>Live view</a>
<a class="nav-item active" href="/archive" data-nav="archive"><span class="ico">🗄</span>Архив</a>
<div class="aside-spacer"></div>
<a class="nav-item" href="/settings" data-nav="settings"><span class="ico"></span>Настройки</a>
</aside>
<main class="archive-main">
<aside class="arch-side">
<div class="arch-cams" id="arch-cams"></div>
<div class="arch-date">
<input type="date" id="date" class="arch-dateinput">
<div class="arch-cal" id="calendar"></div>
</div>
</aside>
<div class="arch-content" id="arch-content">
<div class="player-wrap" id="player">
<div class="hint">Кликните по таймлайну ниже, чтобы смотреть запись</div>
</div>
<div class="timeline" id="timeline"></div>
<footer class="grid-bar" id="arch-bar">
<div class="gb-left"></div>
<div class="gb-center"></div>
<div class="gb-right">
<button class="gb-btn" id="arch-fs" title="Полный экран" aria-label="Полный экран"></button>
</div>
</footer>
</div>
</main>
</div>
<script src="/static/app.js"></script>
</body>
</html>