Bug 27417

Summary: Make header row float in circ and fine rules table
Product: Koha Reporter: Andrew Fuerste-Henry <andrewfh>
Component: Staff interfaceAssignee: Bugs List <koha-bugs>
Status: RESOLVED DUPLICATE QA Contact: Testopia <testopia>
Severity: enhancement    
Priority: P5 - low CC: gmcharlt, lucas
Version: Main   
Hardware: All   
OS: All   
Change sponsored?: --- Patch complexity: ---
Documentation contact: Documentation submission:
Text to go in the release notes:
Version(s) released in:

Description Andrew Fuerste-Henry 2021-01-12 17:39:28 UTC
When one has a lot of circ rules, the table becomes large enough that it can be hard to track which columns contain which values. It'd be good if the header for the circ rules table would float as one scrolls through the table.
Comment 1 Andrew Fuerste-Henry 2021-01-12 17:39:55 UTC
A librarian supplied this CSS to do the job: 
#default-circulation-rules thead {
        position: -webkit-sticky; /*for safari */
	position: sticky;
	float: none;
	top: 0px;
	border-radius: 2px;
	box-shadow: 0px 1px 5px #999;
}
Comment 2 Lucas Gass 2021-01-12 19:06:35 UTC
Bug 27403 applies a "floating" thead to all dataTables, including the circ and fines table. Marking this as a duplicate.
Comment 3 Lucas Gass 2021-01-12 19:07:07 UTC

*** This bug has been marked as a duplicate of bug 27403 ***