mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 23:00:56 +01:00
Do not use white for out of view events, it is too hard to see
This commit is contained in:
parent
c7167979e4
commit
0d10639848
@ -558,7 +558,10 @@ var et2_calendar_daycol = et2_valueWidget.extend([et2_IDetachedDOM],
|
||||
indicator.css('top',timegrid.scrolling.height() + timegrid.scrolling.scrollTop()-indicator.height());
|
||||
}
|
||||
// Match color to the event
|
||||
if(indicator != '')
|
||||
if(indicator !== '' &&
|
||||
// Avoid white, which is hard to see
|
||||
jQuery.Color(event.div.css('border-top-color')).toString() !== jQuery.Color('white').toString()
|
||||
)
|
||||
{
|
||||
// Use border-top-color, Firefox doesn't give a value with border-color
|
||||
indicator.css('border-color', event.div.css('border-top-color'));
|
||||
|
Loading…
Reference in New Issue
Block a user