| Summary: | Labels incorrectly inheriting some default Bootstrap style properties | ||
|---|---|---|---|
| Product: | Koha | Reporter: | Owen Leonard <oleonard> |
| Component: | Templates | Assignee: | Owen Leonard <oleonard> |
| Status: | CLOSED FIXED | QA Contact: | Testopia <testopia> |
| Severity: | minor | ||
| Priority: | P5 - low | CC: | e.betemps, fridolin.somers, victor |
| 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: | |||
| Attachments: | new CSS fix | ||
|
Description
Owen Leonard
2018-10-09 15:03:35 UTC
Is the CSS that you proposed in the mailing list enough to fix this in a patch? Thanks for this by the way :) I confirm that it works. In intranetUserCSS syspref: // To remove when the following bugzilla ticket will be finished and deployed // https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21522 ol.bibliodetails li { clear: left; } .label { white-space: normal; border-radius: 0; text-align: left; line-height: inherit; } Created attachment 82913 [details] new CSS fix The previous intranetUserCSS workaround was causing a minor issue. Here is a simpler one which doesn't cause the wrapped text to cross the delimiter of the next line. /* To remove when the following bugzilla ticket will be finished and deployed */ /* https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21522 */ body#catalog_moredetail ol.bibliodetails span.label { width: 18em; } @Oleonard: Is the visual result okay for you? (attached screenshot) If so, I can try to add that in Koha's CSS to submit a patch. Still valid ? This issue appears to have been fixed. The labels discussed in the original question are now wrapping correctly. |