Bug 27417 - Make header row float in circ and fine rules table
Summary: Make header row float in circ and fine rules table
Status: RESOLVED DUPLICATE of bug 27403
Alias: None
Product: Koha
Classification: Unclassified
Component: Staff interface (show other bugs)
Version: Main
Hardware: All All
: P5 - low enhancement (vote)
Assignee: Bugs List
QA Contact: Testopia
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2021-01-12 17:39 UTC by Andrew Fuerste-Henry
Modified: 2021-01-12 19:07 UTC (History)
2 users (show)

See Also:
Change sponsored?: ---
Patch complexity: ---
Documentation contact:
Documentation submission:
Text to go in the release notes:
Version(s) released in:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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 ***