diff --git a/frontend/index.html b/frontend/index.html index 06e3c24..aaf9655 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -5,7 +5,7 @@ АСУ Инвентаризация - +
@@ -174,7 +174,7 @@
{{ status }}
- +
diff --git a/frontend/styles.css b/frontend/styles.css index 64bcc91..9db46c7 100644 --- a/frontend/styles.css +++ b/frontend/styles.css @@ -188,10 +188,30 @@ td.inv-col, th.inv-col { padding: 4px 3px; } - .owner-td { - min-width: 80px; - max-width: 110px; + /* byAud table: fixed layout so Название/Расположение get more space */ + .byaud-table { + table-layout: fixed; + width: 100%; } + /* ID */ + .byaud-table th:nth-child(1), + .byaud-table td:nth-child(1) { width: 26px; } + /* Инв. номер */ + .byaud-table th:nth-child(2), + .byaud-table td:nth-child(2) { width: 58px; } + /* Название — gets remaining space, no explicit width */ + /* Расположение */ + .byaud-table th:nth-child(4), + .byaud-table td:nth-child(4) { width: 80px; } + /* Кол-во */ + .byaud-table th:nth-child(5), + .byaud-table td:nth-child(5) { width: 30px; } + /* Тип */ + .byaud-table th:nth-child(6), + .byaud-table td:nth-child(6) { width: 48px; } + /* Владелец — compressed */ + .byaud-table th:nth-child(7), + .byaud-table td:nth-child(7) { width: 88px; } .owner-td select { width: 100% !important;
ID