fix duplicate styles

This commit is contained in:
2026-01-21 22:03:15 +03:00
parent 71e6b3f271
commit 19905cef4e
2 changed files with 21 additions and 38 deletions

17
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,17 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/public/app.js"
}
]
}

View File

@@ -40,26 +40,6 @@
min-height: 0;
}
/* ✅ Горизонтальная прокрутка для Tabulator */
.tabulator {
border: none;
background-color: white;
overflow: auto !important; /* Включаем прокрутку */
}
.tabulator .tabulator-header {
background-color: #f5f5f5;
border-bottom: 2px solid #ddd;
}
.tabulator .tabulator-tableholder {
overflow: auto !important; /* ✅ Горизонтальная прокрутка */
}
.tabulator .tabulator-table {
width: auto !important; /* ✅ Позволяем таблице быть шире контейнера */
}
/* ✅ Стили для меню столбцов */
.columns-menu {
position: fixed;
@@ -132,21 +112,6 @@
}
#csvFileInput { display: none; }
/* Стили для Tabulator */
.tabulator {
border: none;
background-color: white;
}
.tabulator .tabulator-header {
background-color: #f5f5f5;
border-bottom: 2px solid #ddd;
}
.tabulator .tabulator-tableholder {
overflow-x: auto !important;
}
/* Размер шрифта при редактировании ячеек */
.tabulator-cell input,
.tabulator-cell select,
@@ -255,7 +220,8 @@
color: #b3e5fc;
font-style: normal;
}
/* ✅ Синхронизация ширины заголовков и столбцов */
/* ✅ Стили для Tabulator - консолидированные */
.tabulator {
border: none;
background-color: white;
@@ -268,13 +234,13 @@
}
.tabulator .tabulator-tableholder {
overflow: auto !important;
overflow-x: auto !important;
}
.tabulator .tabulator-table {
width: auto !important;
}
/* ✅ Минимальная ширина столбцов (кроме служебных) */
.tabulator-col {
min-width: 100px !important;