issue-52 #64

Merged
sebastian merged 17 commits from issue-52 into docker-deployment 2023-11-13 22:48:50 +01:00
3 changed files with 8 additions and 0 deletions
Showing only changes of commit 6cdf069b38 - Show all commits

View File

@ -55,3 +55,6 @@ app-task-overview {
color: white;
}
::ng-deep .cal-event-title {
white-space: normal;
}

View File

@ -99,6 +99,7 @@ export class DraggableSchedulerComponent {
this.events.push({
title: this.computeTaskPath(schedule.taskgroupPath, schedule.task),
color: colors['red'],
cssClass: 'test',
start: new Date(advancedSchedule.scheduleStartTime),
end: new Date(advancedSchedule.scheduleStopTime),
draggable: true,
@ -126,6 +127,7 @@ export class DraggableSchedulerComponent {
color: colors['yellow'],
start: new Date(),
draggable: true,
cssClass: 'test',
resizable: {
beforeStart: true,
afterEnd: true

View File

@ -26,3 +26,6 @@
width: 100%;
}
::ng-deep .cal-event-title {
white-space: normal;
}