Issue 184: agenda views always merge title with time spans
Status:  Done
Owner: ----
Closed:  Nov 2009
Reported by chari...@gmail.com, Nov 12, 2009
In agenda views event titles are always merged into the fc-event-time span.

This is because the spans there are displayed as blocks (as indicated by
css. selector: .fc-event-vert span) and the span merger code thinks there
is not enough space to display.

Here's a quick fix:
.fc-event-vert a span {
	display: inline;
}
Nov 21, 2009
Project Member #1 adamrs...@gmail.com
i guess i dont understand. visually, what looks wrong?

im consulting firebug and nothing looks wrong to me.
Nov 21, 2009
#2 chari...@gmail.com
This was actually my bad.
I was trying to achieve a unified look between events on the month view and agenda
views. My events are only 30minutes long, thus the event title was always merged into
the time span (e.g. "11:00 - Title").

BTW, thanks for the great work with fullcalendar. 
Nov 26, 2009
Project Member #3 adamrs...@gmail.com
no problem

yeah, when events are really short (will be like this when only 30 mins) they merge
the title into the .fc-event-time. seemed like the best way to handle it
Status: Done