2

When I add multiple 15 minute events in the same hour to lightning, it renders them as if the are overlapping (see image). On another pc, this isn't a problem (the events are the full column size)

Multiple 15 minute events in same hour

Is there a way to fix this?

Edit:

It appears to be dependent on the screen resolution. On a different screen, the events are rendered correctly.

3
  • This also happens with Windows 7. Is there any other solution besides changing resolution? Commented Jun 18, 2013 at 11:15
  • @FlorianJenn I noticed that zooming in / zooming out also has influence on this.
    – Ikke
    Commented Jun 18, 2013 at 12:38
  • Sadly, no effect here (Windows 7, Thunderbird 17.0.6, Lightning 1.9.1). Commented Jun 20, 2013 at 11:33

1 Answer 1

1

It depends on the zooming factor (CTRL+/-) of the view i.e. the number of hours displayed in the view, but arises when the height of the events is the minimum value. The minimum height depends on the text font size and a bit of margin/padding in the event boxes (the minimum height allows to vertically display the text). If you set a duration to 5 minutes for every event, you get the same problem if the zoom is too little.

To avoid the problem you have to increase the zoom factor, or you can add some css code in the userChrome.css file in order to reduce the minimum height of the boxes. Without changing the font size, you can try something like:

.calendar-event-box-container {
    margin: 0px !important;
}

but obviously the problem arises again if the zoom factor is too little.

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .