mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
Calendar past events are grayed out, today's background is gray
This commit is contained in:
parent
07ba92ba87
commit
8d2fc4945b
@ -85,19 +85,27 @@ define(
|
||||
var start = Moment(element.get('airDate'));
|
||||
var end = Moment(element.get('end'));
|
||||
|
||||
var statusLevel = 'primary';
|
||||
|
||||
if (currentTime.isAfter(start) && currentTime.isBefore(end)) {
|
||||
return 'warning';
|
||||
statusLevel = 'warning';
|
||||
}
|
||||
|
||||
if (start.isBefore(currentTime) && !hasFile) {
|
||||
return 'danger';
|
||||
else if (start.isBefore(currentTime) && !hasFile) {
|
||||
statusLevel = 'danger';
|
||||
}
|
||||
|
||||
if (hasFile) {
|
||||
return 'success';
|
||||
else if (hasFile) {
|
||||
statusLevel = 'success';
|
||||
}
|
||||
|
||||
return 'primary';
|
||||
var test = currentTime.startOf('day').format('LLLL');
|
||||
|
||||
if (end.isBefore(currentTime.startOf('day'))) {
|
||||
statusLevel += ' past'
|
||||
}
|
||||
|
||||
return statusLevel;
|
||||
}
|
||||
});
|
||||
});
|
||||
|
@ -26,6 +26,14 @@
|
||||
h2 {
|
||||
font-size : 17.5px;
|
||||
}
|
||||
|
||||
.fc-state-highlight {
|
||||
background: #f1f1f1;
|
||||
}
|
||||
|
||||
.past {
|
||||
opacity: 0.8;
|
||||
}
|
||||
}
|
||||
|
||||
.event {
|
||||
|
Loading…
Reference in New Issue
Block a user