From 05dfa3f06beb648625a3bf314ec6ea46097a3daa Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Wed, 5 Nov 2025 20:23:54 +0000 Subject: [PATCH] Bug 37024: Fix dataTable scroll glitch To test: 1. Observe the glitchy scroll behavior describe in this bug report. 2. Apply patch, yarn build 3. The scroll glitch should be gone --- koha-tmpl/intranet-tmpl/prog/css/src/_tables.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/css/src/_tables.scss b/koha-tmpl/intranet-tmpl/prog/css/src/_tables.scss index 41d7c8943bf..b50a424d73e 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/_tables.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/_tables.scss @@ -105,6 +105,8 @@ table { } thead { + position: sticky; + top: 0; th, td { border-bottom: 1px solid $table-border-color; -- 2.39.5