Changeset 2878
- Timestamp:
- 04/23/10 10:22:23
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/deployment/webuser/webapp/resources/demoskins/fbMockup/bedeworkFb.js
r2875 r2878 189 189 switch (curAttendee.status) { 190 190 case bwAttendeeStatusAccepted : 191 $(fbDisplayTimesRow).html('<td class="status accepted"> ✔</td>');191 $(fbDisplayTimesRow).html('<td class="status accepted"><span class="icon">✔</span><span class="text">' + bwAttendeeDispStatusAccepted + '</span></td>'); 192 192 break; 193 193 case bwAttendeeStatusDeclined : 194 $(fbDisplayTimesRow).html('<td class="status declined"> x</td>');194 $(fbDisplayTimesRow).html('<td class="status declined"><span class="icon">x</span><span class="text">' + bwAttendeeDispStatusDeclined + '</span></td>'); 195 195 break; 196 196 case bwAttendeeStatusTentative : 197 $(fbDisplayTimesRow).html('<td class="status tentative"> -</td>');197 $(fbDisplayTimesRow).html('<td class="status tentative"><span class="icon">-</span><span class="text">' + bwAttendeeDispStatusTentative + '</span></td>'); 198 198 break; 199 199 case bwAttendeeStatusDelegated : 200 $(fbDisplayTimesRow).html('<td class="status delegated">< /td>');200 $(fbDisplayTimesRow).html('<td class="status delegated"><span class="icon"></span><span class="text">' + bwAttendeeDispStatusDelegated + '</span></td>'); 201 201 break; 202 202 case bwAttendeeStatusCompleted : 203 $(fbDisplayTimesRow).html('<td class="status completed">< /td>');203 $(fbDisplayTimesRow).html('<td class="status completed"><span class="icon"></span><span class="text">' + bwAttendeeDispStatusCompleted + '</span></td>'); 204 204 break; 205 205 case bwAttendeeStatusInProcess : 206 $(fbDisplayTimesRow).html('<td class="status inprocess">< /td>');206 $(fbDisplayTimesRow).html('<td class="status inprocess"><span class="icon"></span><span class="text">' + bwAttendeeDispStatusInProcess + '</span></td>'); 207 207 break; 208 208 default : // default to bwAttendeeStatusNeedsAction - display question mark 209 $(fbDisplayTimesRow).html('<td class="status needsaction"> ?</td>');209 $(fbDisplayTimesRow).html('<td class="status needsaction"><span class="icon">?</span><span class="text">' + bwAttendeeDispStatusNeedsAction + '</span></td>'); 210 210 } 211 211 trunk/deployment/webuser/webapp/resources/demoskins/fbMockup/schedule.css
r2875 r2878 1 1 body { 2 font-family: Arial, sans-serif;2 font-family: Arial, Helvetica, sans-serif; 3 3 font-size: 14px; 4 4 } … … 43 43 color: black; 44 44 border: 1px solid #eee; 45 font-family: Arial, Helvetica, sans-serif; 45 46 display: none; 46 47 }
