https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=37024 David Cook <dcook@prosentient.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcook@prosentient.com.au --- Comment #30 from David Cook <dcook@prosentient.com.au> --- (In reply to Lucas Gass (lukeg) from comment #11)
-This only seems to be reported in Chrome. -An on scroll event is being triggered and reseting the `.dtfh-floatingparent` element to `top: 0`, which creates the flicker.
It seems like we can mostly work around the issue by adding the following CSS:
.dataTable thead { position: sticky !important; top: 0 !important; }
My question, is there anything fixedHeader is doing that cannot be done with CSS position sticky which now has wide browser support?
I've tried Lucas's CSS via IntranetUserCSS and while it might not be perfect, it certainly fixes the problem for us. -- You are receiving this mail because: You are watching all bug changes.