From 991e92a2da3896da43cc64b94d2cdb1ade7b4a1b Mon Sep 17 00:00:00 2001 From: Mikhail Chusavitin Date: Tue, 10 Feb 2026 13:41:52 +0300 Subject: [PATCH] Fix column widths in autocomplete forms --- public/index.html | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/public/index.html b/public/index.html index cc34dca..3dd1fdf 100644 --- a/public/index.html +++ b/public/index.html @@ -497,6 +497,17 @@ font-weight: 500; } + /* Увеличенная ширина столбцов для лучшей читаемости */ + #insertFormTable .tabulator-col:first-child, + #editFormTable .tabulator-col:first-child { + width: 250px !important; + } + + #insertFormTable .tabulator-col:nth-child(2), + #editFormTable .tabulator-col:nth-child(2) { + width: 350px !important; + } + /* Стили для редакторов в формах */ #insertFormTable .tabulator-cell input, #editFormTable .tabulator-cell input,