When looking at Google Calendar in month view, the event titles are only shown on a single line by default. Titles longer than one line are cut off by default.
I'd like to add some custom CSS via the Stylish plugin for Chrome to make long event titles wrap nicely.
Here's what I have currently, as suggested by this StackOverflow from 2011:
table div div {
overflow: inherit !important;
white-space: normal !important;
}
This does make the event titles wrap, but if there is more than one event on the same day, then they overlap each other. So I need to find a way to expand the height of the table cell as well.
What CSS do I need?