Add icon for DELEGATED attendee status
This commit is contained in:
parent
edd134a6fb
commit
91bd3fae6d
5 changed files with 17 additions and 1 deletions
|
@ -1482,7 +1482,7 @@ function rcube_calendar_ui(settings)
|
||||||
var html = '<td class="role">' + select + '</td>' +
|
var html = '<td class="role">' + select + '</td>' +
|
||||||
'<td class="name">' + dispname + '</td>' +
|
'<td class="name">' + dispname + '</td>' +
|
||||||
'<td class="availability"><img src="./program/resources/blank.gif" class="availabilityicon ' + avail + '" /></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>';
|
'<td class="options">' + (organizer || readonly ? '' : dellink) + '</td>';
|
||||||
|
|
||||||
var tr = $('<tr>')
|
var tr = $('<tr>')
|
||||||
|
|
|
@ -409,6 +409,10 @@ a.miniColors-trigger {
|
||||||
background-position: right -60px;
|
background-position: right -60px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.event-attendees span.delegated {
|
||||||
|
background-position: right -160px;
|
||||||
|
}
|
||||||
|
|
||||||
.event-attendees span.organizer {
|
.event-attendees span.organizer {
|
||||||
background-position: right -80px;
|
background-position: right -80px;
|
||||||
}
|
}
|
||||||
|
@ -745,6 +749,10 @@ td.topalign {
|
||||||
background-position: 5px -60px;
|
background-position: 5px -60px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#edit-attendees-table td.confirmstate span.delegated {
|
||||||
|
background-position: 5px -160px;
|
||||||
|
}
|
||||||
|
|
||||||
#attendees-freebusy-table {
|
#attendees-freebusy-table {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
table-layout: fixed;
|
table-layout: fixed;
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -466,6 +466,10 @@ a.miniColors-trigger {
|
||||||
background-position: right -60px;
|
background-position: right -60px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.event-attendees span.delegated {
|
||||||
|
background-position: right -160px;
|
||||||
|
}
|
||||||
|
|
||||||
.event-attendees span.organizer {
|
.event-attendees span.organizer {
|
||||||
background-position: right -80px;
|
background-position: right -80px;
|
||||||
}
|
}
|
||||||
|
@ -801,6 +805,10 @@ td.topalign {
|
||||||
background-position: 5px -60px;
|
background-position: 5px -60px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#edit-attendees-table td.confirmstate span.delegated {
|
||||||
|
background-position: 5px -160px;
|
||||||
|
}
|
||||||
|
|
||||||
#attendees-freebusy-table {
|
#attendees-freebusy-table {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
table-layout: fixed;
|
table-layout: fixed;
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 2 KiB After Width: | Height: | Size: 3.2 KiB |
Loading…
Add table
Reference in a new issue