| Summary: | Make header row float in circ and fine rules table | ||
|---|---|---|---|
| Product: | Koha | Reporter: | Andrew Fuerste-Henry <andrew> |
| Component: | Staff interface | Assignee: | 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 | ||
| GIT URL: | Initiative type: | --- | |
| Sponsorship status: | --- | Comma delimited list of Sponsors: | |
| Crowdfunding goal: | 0 | Patch complexity: | --- |
| Documentation contact: | Documentation submission: | ||
| Text to go in the release notes: | Version(s) released in: | ||
| Circulation function: | |||
|
Description
Andrew Fuerste-Henry
2021-01-12 17:39:28 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;
}
Bug 27403 applies a "floating" thead to all dataTables, including the circ and fines table. Marking this as a duplicate. |