From cc3c35be6df187815fe55f517f789c41c1dc7bc9 Mon Sep 17 00:00:00 2001 From: Corban-Lee Date: Wed, 25 Sep 2024 15:22:52 +0100 Subject: [PATCH] table border colour --- static/css/base.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/static/css/base.css b/static/css/base.css index 8718c14..8046a8c 100644 --- a/static/css/base.css +++ b/static/css/base.css @@ -88,4 +88,14 @@ .table-search-buttons > div:first-of-type { margin-left: 0 !important; +} + +/* Table Border Colour */ + +table.dataTable > thead > tr > th, table.dataTable > thead > tr > td { + border-bottom: 1px solid var(--bs-border-color) !important; +} + +div.dt-container.dt-empty-footer tbody > tr:last-child > * { + border-bottom: 1px solid var(--bs-border-color) !important; } \ No newline at end of file