https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=39403 Bug ID: 39403 Summary: showmarc.pl confusing broken vertical align Change sponsored?: --- Product: Koha Version: Main Hardware: All OS: All Status: NEW Severity: minor Priority: P5 - low Component: Accessibility Assignee: koha-bugs@lists.koha-community.org Reporter: schodkowy.omegi-0r@icloud.com QA Contact: testopia@bugs.koha-community.org CC: martin.renvoize@ptfs-europe.com, matt.blenkinsop@ptfs-europe.com, oleonard@myacpl.org Created attachment 179570 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=179570&action=edit The problem Just so we don't forget. The cells are vertically aligned to middle, which makes it easy to be fooled that what's above MARC field label belongs to the field above (see attachment, would you realize under 010, the second _a belongs to 024 instead?). This affects both: - catalogue/showmarc.pl - koha/opac-showmarc.pl Fix: remove inline style on `<th style="white-space:nowrap">` add style block: ```css th { white-space: nowrap; vertical-align: top; } ``` Adding borders was considered and deemed unfavorable. Reference: https://chat.koha-community.org/koha-community/pl/keqr7reqhpd49qh88tz3zr9xny -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.