Changeset 578
- Timestamp:
- 06/13/06 13:09:19
- Files:
-
- trunk/calendar3/deployment/webuser/webapp/resources/demoskins/default/default/default.css (modified) (2 diffs)
- trunk/calendar3/deployment/webuser/webapp/resources/demoskins/default/default/default.xsl (modified) (5 diffs)
- trunk/calendar3/deployment/webuser/webapp/resources/demoskins/resources/std-icalDownload-icon-small.gif (added)
- trunk/calendar3/deployment/webuser/webapp/resources/demoskins/resources/std-ical_iconEditDkGray.gif (modified) (previous)
- trunk/calendar3/deployment/webuser/webapp/resources/demoskins/resources/std-ical_iconSubsDkGray.gif (modified) (previous)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/calendar3/deployment/webuser/webapp/resources/demoskins/default/default/default.css
r571 r578 475 475 clear: none; 476 476 } 477 table.common #eventActions img { 478 display: inline; 479 margin-right: 2px; 480 vertical-align: middle; 481 } 477 482 table.common td.allField { 478 483 white-space: nowrap; … … 510 515 font-weight: bold; 511 516 margin: 0 1em; 517 } 518 table.common .padMeTop { 519 padding-top: 1em !important; 512 520 } 513 521 #bwEventCalDisplay { trunk/calendar3/deployment/webuser/webapp/resources/demoskins/default/default/default.xsl
r575 r578 1157 1157 <xsl:variable name="eventIcalName" select="concat($guid,'.ics')"/> 1158 1158 <a href="{$export}?subid={$subscriptionId}&calPath={$calPath}&guid={$guid}&recurrenceId={$recurrenceId}&nocache=no&skinName=ical&contentType=text/calendar&contentName={$eventIcalName}" title="Download event as ical - for Outlook, PDAs, iCal, and other desktop calendars"> 1159 <img src="{$resourcesRoot}/resources/std-ical _iconDkGray.gif" width="12" height="13" border="0" alt="Download event as ical - for Outlook, PDAs, iCal, and other desktop calendars"/>1159 <img src="{$resourcesRoot}/resources/std-icalDownload-icon-small.gif" width="12" height="16" border="0" alt="Download event as ical - for Outlook, PDAs, iCal, and other desktop calendars"/> 1160 1160 Download 1161 1161 </a> | … … 1179 1179 <xsl:when test="currentAccess/current-user-privilege-set/privilege/write-content"> 1180 1180 <a href="{$editEvent}?subid={$subscriptionId}&calPath={$calPath}&guid={$guid}&recurrenceId={$recurrenceId}&confirmationid={$confId}"> 1181 <img src="{$resourcesRoot}/resources/std-ical_iconEditDkGray.gif" width="12" height="1 3" border="0" alt="edit"/>1181 <img src="{$resourcesRoot}/resources/std-ical_iconEditDkGray.gif" width="12" height="16" border="0" alt="edit"/> 1182 1182 Edit 1183 1183 </a> … … 1185 1185 <xsl:otherwise> 1186 1186 <a href="{$subscriptions-fetch}"> 1187 <img src="{$resourcesRoot}/resources/std-ical_iconSubsDkGray.gif" width="12" height="1 3" border="0" alt="edit"/>1187 <img src="{$resourcesRoot}/resources/std-ical_iconSubsDkGray.gif" width="12" height="16" border="0" alt="edit"/> 1188 1188 Manage Subscriptions 1189 1189 </a> 1190 1190 </xsl:otherwise> 1191 1191 </xsl:choose> 1192 <xsl:if test="currentAccess/current-user-privilege-set/privilege/unbind ">1192 <xsl:if test="currentAccess/current-user-privilege-set/privilege/unbind and not(isAnnotation)"> 1193 1193 | 1194 1194 <xsl:choose> … … 3427 3427 </td> 3428 3428 <td align="left"> 3429 <input type="file" name="uploadFile" size=" 80" />3430 </td> 3431 </tr> 3432 <tr> 3433 <td class="fieldname ">3429 <input type="file" name="uploadFile" size="60" /> 3430 </td> 3431 </tr> 3432 <tr> 3433 <td class="fieldname padMeTop"> 3434 3434 Into calendar: 3435 3435 </td> 3436 <td align="left" >3436 <td align="left" class="padMeTop"> 3437 3437 <input type="hidden" name="newCalPath" value=""/> 3438 3438 <span id="bwEventCalDisplay"> … … 3443 3443 </tr> 3444 3444 <tr> 3445 <td class="fieldname"> 3446 Affects Free/busy: 3447 </td> 3448 <td align="left"> 3449 <input type="radio" value="true" name="affectsFreeBusy"/> yes 3450 <input type="radio" value="false" name="affectsFreeBusy" checked="checked"/> no 3445 <td class="fieldname padMeTop"> 3446 Transparency: 3447 </td> 3448 <td align="left" class="padMeTop"> 3449 <input type="radio" value="" name="transparency" checked="checked"/> accept event's transparency<br/> 3450 <input type="radio" value="TRANSPARENT" name="transparency"/> transparent <span class="note">(does not effect your free/busy)</span><br/> 3451 <input type="radio" value="OPAQUE" name="transparency"/> opaque <span class="note">(effects your free/busy)</span><br/> 3452 </td> 3453 </tr> 3454 <tr> 3455 <td class="fieldname padMeTop"> 3456 Status: 3457 </td> 3458 <td align="left" class="padMeTop"> 3459 <input type="radio" value="" name="status" checked="checked"/> accept event's status<br/> 3460 <input type="radio" value="CONFIRMED" name="status"/> confirmed<br/> 3461 <input type="radio" value="TENTATIVE" name="status"/> tentative<br/> 3462 <input type="radio" value="CANCELLED" name="status"/> cancelled<br/> 3451 3463 </td> 3452 3464 </tr>
