* Calendar - add a line to the top of events so consecutive events are better separated

This commit is contained in:
nathangray 2017-11-22 11:54:31 -07:00
parent 105e191920
commit c938cb37f1
3 changed files with 5 additions and 2 deletions

View File

@ -333,7 +333,7 @@ var et2_calendar_event = (function(){ "use strict"; return et2_valueWidget.exten
if(jQuery.Color("rgba(0,0,0,0)").toRgbaString() != jQuery.Color(this.div,'background-color').toRgbaString())
{
// Most statuses use colored borders
this.div.css('border-color',status_class === 'calendar_calEventAllAccepted' ? this.div.css('background-color') : '');
this.div.css('border-color',this.div.css('background-color') );
}
this.icons.appendTo(this.title)

View File

@ -2123,7 +2123,8 @@ e.g. the div with class calendar_calTimeGrid is generated by the timeGridWidget
* border-color: depending on category
* background: depending on category (shade)
*/
background-color: #679FD2;
background-color: #679fd2;
border-top: 1px solid;
}
.calendar_calEvent:not([class*=" cat_"]) {
/* Defaults for no category, so we don't override it */

View File

@ -766,6 +766,8 @@ e.g. the div with class calendar_calTimeGrid is generated by the timeGridWidget
* background: depending on category (shade)
*/
background-color: @egw_color_blue_lightest;
border-top: 1px solid;
}
.calendar_calEvent:not([class*=" cat_"]) {
/* Defaults for no category, so we don't override it */