style/table collections: create a stylesheet dedicated to the table view

This commit is contained in:
Adorian Doran 2025-07-10 21:20:48 +03:00
parent b6f50b6af0
commit 4f42f543d8
2 changed files with 6 additions and 1 deletions

View File

@ -0,0 +1,4 @@
.tabulator {
background: unset;
border: unset;
}

View File

@ -7,7 +7,8 @@ import type { CommandListenerData, EventData } from "../../../components/app_con
import type { Attribute } from "../../../services/attribute_parser.js";
import note_create from "../../../services/note_create.js";
import {Tabulator, SortModule, FormatModule, InteractionModule, EditModule, ResizeColumnsModule, FrozenColumnsModule, PersistenceModule, MoveColumnsModule, MenuModule, MoveRowsModule, ColumnDefinition} from 'tabulator-tables';
import "tabulator-tables/dist/css/tabulator_bootstrap5.min.css";
import "tabulator-tables/dist/css/tabulator.css";
import "../../../../src/stylesheets/table.css";
import { canReorderRows, configureReorderingRows } from "./dragging.js";
import buildFooter from "./footer.js";
import getPromotedAttributeInformation, { buildRowDefinitions } from "./rows.js";