diff --git a/frontend/index.html b/frontend/index.html index 9393dac..bc7ff20 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -5,7 +5,7 @@
| № | @@ -235,6 +235,7 @@Аудитория | Расположение | Кол-во | +Тип | Владелец | {{ getAuditoryName(it.aud_id) }} | {{ it.raspologenie ?? '' }} | {{ it.kolichestvo ?? '' }} | +{{ it.type?.name ?? '' }} | {{ it.owner?.name ?? '' }} | diff --git a/frontend/styles.css b/frontend/styles.css index d6688b0..33263e6 100644 --- a/frontend/styles.css +++ b/frontend/styles.css @@ -217,6 +217,34 @@ td.inv-col, th.inv-col { .byaud-table th:nth-child(7), .byaud-table td:nth-child(7) { width: 88px; } + /* allEquipment table: fixed layout */ + .allequip-table { + table-layout: fixed; + width: 100%; + } + /* № */ + .allequip-table th:nth-child(1), + .allequip-table td:nth-child(1) { width: 24px; } + /* Инв. номер */ + .allequip-table th:nth-child(2), + .allequip-table td:nth-child(2) { width: 58px; } + /* Название — remaining space */ + /* Аудитория */ + .allequip-table th:nth-child(4), + .allequip-table td:nth-child(4) { width: 52px; } + /* Расположение */ + .allequip-table th:nth-child(5), + .allequip-table td:nth-child(5) { width: 72px; } + /* Кол-во */ + .allequip-table th:nth-child(6), + .allequip-table td:nth-child(6) { width: 28px; } + /* Тип */ + .allequip-table th:nth-child(7), + .allequip-table td:nth-child(7) { width: 52px; } + /* Владелец — compressed */ + .allequip-table th:nth-child(8), + .allequip-table td:nth-child(8) { width: 60px; } + .owner-td select { width: 100% !important; max-width: 100%;
|---|