ui: restore ⟳/✕ actions in edit mode only; shrink toggles; uniform 22px rows
The camera table actions column is back as the 9th column but stays empty in the normal view — restart (⟳) and delete (✕) buttons render only on existing cameras while bulk-editing. Restart in bulk mode no longer reloads the table (keeps pending edits); delete reloads as before. Row height is now truly uniform: cams-fixed cells use line-height:1 with vertically-centred controls, the Вкл/Запись toggles shrink to 30×16, and selects/inputs/action buttons cap at 20px so filled rows match empty slots. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -425,9 +425,25 @@ table.cams th, table.cams td {
|
||||
table.cams th { color: var(--text-dim); font-weight: 500; font-size: 11px; padding: 4px 10px; }
|
||||
table.cams td.actions { white-space: nowrap; text-align: right; }
|
||||
table.cams tr.slot-empty td { opacity: .5; }
|
||||
/* камеры: жёстко фиксированная высота строки 22px (плотная таблица) */
|
||||
/* камеры: жёстко фиксированная высота строки 22px независимо от контролов.
|
||||
line-height:1 + контролы по центру и ниже 22px → строки не распирает. */
|
||||
table.cams.cams-fixed td, table.cams.cams-fixed th {
|
||||
height: 22px; padding-top: 0; padding-bottom: 0; line-height: 22px;
|
||||
height: 22px; padding-top: 0; padding-bottom: 0; line-height: 1;
|
||||
}
|
||||
table.cams.cams-fixed td > * { vertical-align: middle; }
|
||||
/* тумблеры «Вкл»/«Запись» в строке — компактные (30×16) */
|
||||
table.cams.cams-fixed td input[type="checkbox"] {
|
||||
width: 30px; height: 16px; border-radius: 8px;
|
||||
}
|
||||
table.cams.cams-fixed td input[type="checkbox"]::before { width: 12px; height: 12px; top: 1px; left: 1px; }
|
||||
table.cams.cams-fixed td input[type="checkbox"]:checked::before { transform: translateX(14px); }
|
||||
/* селекты и инпуты в строке — на 2px ниже строки, по центру */
|
||||
table.cams.cams-fixed td select.stor-sel,
|
||||
table.cams.cams-fixed td select.cell-sel,
|
||||
table.cams.cams-fixed td input.cell-in { height: 20px; }
|
||||
/* кнопки действий ⟳/✕ (режим редактирования) — компактные */
|
||||
table.cams.cams-fixed td.actions button {
|
||||
height: 20px; padding: 0 6px; font-size: 13px; line-height: 1;
|
||||
}
|
||||
|
||||
/* ── Инлайн-редактор строки (вместо всплывающего окна) ── */
|
||||
|
||||
Reference in New Issue
Block a user