trema-tech / moodle-theme_trema

Theme trema, a Moodle LMS plugin.
https://moodle.org/plugins/theme_trema
GNU General Public License v3.0
39 stars 19 forks source link

Information displayed in the Calendar's Upcoming Events view is being cut off #87

Closed michael-milette closed 5 months ago

michael-milette commented 2 years ago

In the Upcoming Events view of the Moodle Calendar, the information in the cards are going outside it boundaries and is also being truncated.

image

The problem is that the white-space for td and th table elements are set to no-wrap. The issue can be resolved by adding the following CSS:

td, th { white-space: normal; }

Note that I have not done extensive testing to determine the scope of the impact throughout the rest of Moodle by this change however, I can't see how information being cut off would ever be a good thing.

Best regards,

Michael

michael-milette commented 5 months ago

This issue will be included in the next major release of Trema. Feel free to try the experimental dev branch which includes the fix.

Best regards,

Michael Milette