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: [email protected]
          Reporter: [email protected]
        QA Contact: [email protected]
                CC: [email protected],
                    [email protected], [email protected]

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.
_______________________________________________
Koha-bugs mailing list
[email protected]
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to