Render pending/declined invitations slightly different in agenda view
This commit is contained in:
parent
633810b6a7
commit
37af242d63
2 changed files with 19 additions and 5 deletions
|
@ -5128,7 +5128,7 @@ function TableEventRenderer() {
|
|||
if (event.source && event.source.className) {
|
||||
skinClasses = skinClasses.concat(event.source.className);
|
||||
}
|
||||
rowClasses = ['fc-event', 'fc-event-row', 'fc-'+dayIDs[event.start.getDay()]];
|
||||
rowClasses = ['fc-event', 'fc-event-row', 'fc-'+dayIDs[event.start.getDay()]].concat(event.className);
|
||||
if (seg.daydiff == 0) {
|
||||
rowClasses.push('fc-today');
|
||||
}
|
||||
|
|
|
@ -1576,10 +1576,6 @@ a.dropdown-link:after {
|
|||
top: -5000px;
|
||||
}
|
||||
|
||||
.fc-invitation-declined {
|
||||
|
||||
}
|
||||
|
||||
.fc-event-vert.fc-invitation-needs-action,
|
||||
.fc-event-hori.fc-invitation-needs-action {
|
||||
border: 1px dashed #5757c7 !important;
|
||||
|
@ -1613,6 +1609,24 @@ a.dropdown-link:after {
|
|||
background: url(data:image/gif;base64,R0lGODlhCAAIAPABAMwAAP///yH/C1hNUCBEYXRhWE1QAT8AIfkEBQAAAQAsAAAAAAgACAAAAg4Egmipx+ZaDPCtVPFNBQA7) 0 0 repeat #fff;
|
||||
}
|
||||
|
||||
.fc-view-table tr.fc-invitation-tentative td,
|
||||
.fc-view-table tr.fc-invitation-declined td,
|
||||
.fc-view-table tr.fc-invitation-needs-action td {
|
||||
color: #888;
|
||||
}
|
||||
|
||||
.fc-view-table tr.fc-invitation-tentative td.fc-event-title,
|
||||
.fc-view-table tr.fc-invitation-declined td.fc-event-title,
|
||||
.fc-view-table tr.fc-invitation-needs-action td.fc-event-title {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
#quickview-calendar .fc-view-table tr.fc-invitation-tentative td,
|
||||
#quickview-calendar .fc-view-table tr.fc-invitation-declined td,
|
||||
#quickview-calendar .fc-view-table tr.fc-invitation-needs-action td {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.calendarmain .fc-event:focus {
|
||||
outline: 1px solid rgba(71,135,177, 0.4);
|
||||
-webkit-box-shadow: 0 0 2px 3px rgba(71,135,177, 0.6);
|
||||
|
|
Loading…
Add table
Reference in a new issue