From ee91ffeff63ab819ce1dd845e24b1c20af15c46c Mon Sep 17 00:00:00 2001 From: bloodearnest Date: Mon, 4 Mar 2024 17:20:38 +0000 Subject: [PATCH] Make csv table headers sticky --- airlock/templates/file_browser/index.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/airlock/templates/file_browser/index.html b/airlock/templates/file_browser/index.html index ec12387f..a76efb64 100644 --- a/airlock/templates/file_browser/index.html +++ b/airlock/templates/file_browser/index.html @@ -58,6 +58,12 @@ overflow: scroll; } +.datatable thead { + position: sticky; + top: 0; +} + + {% endblock extra_styles %}