| Summary: | Patron search results page UX fixes | ||
|---|---|---|---|
| Product: | Koha | Reporter: | Martin Renvoize (ashimema) <martin.renvoize> |
| Component: | Patrons | Assignee: | Owen Leonard <oleonard> |
| Status: | NEW --- | QA Contact: | Testopia <testopia> |
| Severity: | enhancement | ||
| Priority: | P5 - low | CC: | black23, gmcharlt, jonathan.druart, kyle, severine.queune, tomascohen |
| Version: | unspecified | ||
| 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: | |||
| Bug Depends on: | 30063 | ||
| Bug Blocks: | |||
| Attachments: |
After 30063
Before 30063 Wierdness |
||
|
Description
Martin Renvoize (ashimema)
2022-03-31 13:14:21 UTC
Created attachment 132756 [details]
After 30063
Created attachment 132757 [details]
Before 30063
Created attachment 132790 [details]
Wierdness
Severine found some more weirdness
I have really no idea how to fix that. I found something related in Sticky code:
const initSticky = () => {
// check if element or it's parents are visible
if (elem.offsetParent === null || Helpers.getStyle(elem, 'display') === 'none') {
disableSticky();
return;
}
I've tried to remove the disableSticky call but things get uglier...
|