ui: remove per-row Лог/⟳/✕ buttons from camera table, fix row height to 22px

The camera table actions column (log/restart/delete buttons) is removed:
the table drops to 8 columns across thead, filled rows, empty slots and the
bulk-edit rows. The now-orphaned log subrow and openLogs tracking are gone.
Camera rows get a hard fixed height of 22px via a new table.cams.cams-fixed
rule (zero vertical padding, 22px line-height) so rows never inflate.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-01 21:15:39 +05:00
parent e2e03054ac
commit a519b78eb2
4 changed files with 11 additions and 24 deletions
+2 -2
View File
@@ -45,9 +45,9 @@
<button id="bulk-cancel" hidden>Отмена</button>
</div>
</div>
<table class="cams">
<table class="cams cams-fixed">
<thead>
<tr><th style="width:48px">ID</th><th>Камера</th><th>IP</th><th>Потоки</th><th style="width:56px">Вкл</th><th style="width:64px">Запись</th><th style="width:150px">Хранилище</th><th data-bulk-label="Логин / пароль">Статус</th><th></th></tr>
<tr><th style="width:48px">ID</th><th>Камера</th><th>IP</th><th>Потоки</th><th style="width:56px">Вкл</th><th style="width:64px">Запись</th><th style="width:150px">Хранилище</th><th data-bulk-label="Логин / пароль">Статус</th></tr>
</thead>
<tbody id="cam-rows"></tbody>
</table>