Add icon for DELEGATED attendee status

This commit is contained in:
Thomas Bruederli 2014-02-27 10:01:31 +01:00
parent edd134a6fb
commit 91bd3fae6d
5 changed files with 17 additions and 1 deletions

View file

@ -1482,7 +1482,7 @@ function rcube_calendar_ui(settings)
var html = '<td class="role">' + select + '</td>' +
'<td class="name">' + dispname + '</td>' +
'<td class="availability"><img src="./program/resources/blank.gif" class="availabilityicon ' + avail + '" /></td>' +
'<td class="confirmstate"><span class="' + String(data.status).toLowerCase() + '">' + Q(data.status) + '</span></td>' +
'<td class="confirmstate"><span class="' + String(data.status).toLowerCase() + '" title="' + Q(data.status || '') + '">' + Q(data.status || '') + '</span></td>' +
'<td class="options">' + (organizer || readonly ? '' : dellink) + '</td>';
var tr = $('<tr>')

View file

@ -409,6 +409,10 @@ a.miniColors-trigger {
background-position: right -60px;
}
.event-attendees span.delegated {
background-position: right -160px;
}
.event-attendees span.organizer {
background-position: right -80px;
}
@ -745,6 +749,10 @@ td.topalign {
background-position: 5px -60px;
}
#edit-attendees-table td.confirmstate span.delegated {
background-position: 5px -160px;
}
#attendees-freebusy-table {
width: 100%;
table-layout: fixed;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

View file

@ -466,6 +466,10 @@ a.miniColors-trigger {
background-position: right -60px;
}
.event-attendees span.delegated {
background-position: right -160px;
}
.event-attendees span.organizer {
background-position: right -80px;
}
@ -801,6 +805,10 @@ td.topalign {
background-position: 5px -60px;
}
#edit-attendees-table td.confirmstate span.delegated {
background-position: 5px -160px;
}
#attendees-freebusy-table {
width: 100%;
table-layout: fixed;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB