mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-25 15:29:17 +01:00
Use background color if border color is white
This commit is contained in:
parent
c5eac7749c
commit
4d5f8da0c9
@ -558,13 +558,15 @@ var et2_calendar_daycol = et2_valueWidget.extend([et2_IDetachedDOM],
|
|||||||
indicator.css('top',timegrid.scrolling.height() + timegrid.scrolling.scrollTop()-indicator.height());
|
indicator.css('top',timegrid.scrolling.height() + timegrid.scrolling.scrollTop()-indicator.height());
|
||||||
}
|
}
|
||||||
// Match color to the event
|
// 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()
|
|
||||||
)
|
|
||||||
{
|
{
|
||||||
|
|
||||||
|
// Avoid white, which is hard to see
|
||||||
|
var color = jQuery.Color(event.div.css('border-top-color')).toString() !== jQuery.Color('white').toString() ?
|
||||||
|
event.div.css('border-top-color') : event.div.css('background-color');
|
||||||
|
|
||||||
// Use border-top-color, Firefox doesn't give a value with border-color
|
// Use border-top-color, Firefox doesn't give a value with border-color
|
||||||
indicator.css('border-color', event.div.css('border-top-color'));
|
indicator.css('border-color', color);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, this, et2_calendar_event);
|
}, this, et2_calendar_event);
|
||||||
|
Loading…
Reference in New Issue
Block a user