ksucpea / bettercanvas

Dark mode, better todo list, GPA calculator, and more for Canvas
MIT License
86 stars 23 forks source link

Better Todo List max height hides due dates of long classes #53

Closed FireIsGood closed 5 months ago

FireIsGood commented 5 months ago

Problem

When using the Better Todos options, the due date for classes can be hidden due to the class name being too long. This can be an issue stopping users from using it, as the default todo list does not have this limitation.

Long title that is clipped

Cause

I have found in the CSS that it is caused by an injected style on the .bettercanvas-todo-container which adds a max-height: 100px.

image

Solution

Using a user style, I have been able to fix the issue by simply setting a max-height: unset. To fix this here, the max-height style should be removed.

image

ksucpea commented 5 months ago

Good catch, I'm not sure why I added that