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;
|
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 {
|
.columns-menu {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
@@ -132,21 +112,6 @@
|
|||||||
}
|
}
|
||||||
#csvFileInput { display: none; }
|
#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 input,
|
||||||
.tabulator-cell select,
|
.tabulator-cell select,
|
||||||
@@ -255,7 +220,8 @@
|
|||||||
color: #b3e5fc;
|
color: #b3e5fc;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
/* ✅ Синхронизация ширины заголовков и столбцов */
|
|
||||||
|
/* ✅ Стили для Tabulator - консолидированные */
|
||||||
.tabulator {
|
.tabulator {
|
||||||
border: none;
|
border: none;
|
||||||
background-color: white;
|
background-color: white;
|
||||||
@@ -268,7 +234,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.tabulator .tabulator-tableholder {
|
.tabulator .tabulator-tableholder {
|
||||||
overflow: auto !important;
|
overflow-x: auto !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tabulator .tabulator-table {
|
.tabulator .tabulator-table {
|
||||||
|
|||||||
Reference in New Issue
Block a user