Skip to content
This repository has been archived by the owner on Jun 19, 2018. It is now read-only.

Commit

Permalink
fix(dayView): fix event border colors
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Lewis committed Jul 27, 2016
1 parent 1259262 commit 93d1a35
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/templates/calendarDayView.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,13 @@
class="pull-left day-event day-highlight"
ng-repeat="dayEvent in vm.nonAllDayEvents track by dayEvent.event.$id"
ng-class="'dh-event-' + dayEvent.event.type + ' ' + dayEvent.event.cssClass"
ng-style="{top: dayEvent.top - 1 + 'px', left: dayEvent.left + 60 + 'px', height: dayEvent.height + 'px', backgroundColor: dayEvent.event.color.secondary}"
ng-style="{
top: dayEvent.top - 1 + 'px',
left: dayEvent.left + 60 + 'px',
height: dayEvent.height + 'px',
backgroundColor: dayEvent.event.color.secondary,
borderColor: dayEvent.event.color.primary
}"
mwl-draggable="dayEvent.event.draggable === true"
axis="'xy'"
snap-grid="{y: vm.dayViewEventChunkSize || 30, x: 50}"
Expand Down

0 comments on commit 93d1a35

Please sign in to comment.