These events can be added but your scenario can be better handled using active areas. If you add active areas with visibility: "Hover"
they will ony be displayed when you hover the event.
By default, the event top div (marked with .calendar_default_event
) uses overflow: hidden
inline style to prevent the content from being displayed outside of the main box. The active areas are added as child elements.
If you override this style like this:
.calendar_default_event {
overflow: visible !important;
}
you will be able to define active areas with a negative right
value and they will be displayed next to the event on the right.