fix duplicate styles
This commit is contained in:
17
.vscode/launch.json
vendored
Normal file
17
.vscode/launch.json
vendored
Normal 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"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user