From 0085bfb202b8be4ca5327d8f2189de55ce13ad46 Mon Sep 17 00:00:00 2001 From: hujambo-dunia Date: Sat, 10 Feb 2024 16:42:17 -0500 Subject: [PATCH] Enhancement to freeze (make sticky) header row in tabular files for very long datasets scrolling; enhnacement is intended only for tables with user datasets (and not all tables on Galaxy). --- client/src/style/scss/overrides.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/client/src/style/scss/overrides.scss b/client/src/style/scss/overrides.scss index 8c647d74517f..9f5ffffbcbae 100644 --- a/client/src/style/scss/overrides.scss +++ b/client/src/style/scss/overrides.scss @@ -151,6 +151,10 @@ table.info_data_table td:nth-child(1) { table.info_data_table th:nth-child(1) { width: 25%; } +table thead.thead-dark tr th[role="columnheader"] { + position: sticky; + top: 0; +} // increase visibility of links within alert boxes .alert-info,