Fix column widths in autocomplete forms

This commit is contained in:
Mikhail Chusavitin
2026-02-10 13:41:52 +03:00
parent 1ecd0d28fa
commit 991e92a2da

View File

@@ -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,