Changeset 1495
- Timestamp:
- 08/07/07 15:06:39
- Files:
-
- trunk/deployment/webadmin/webapp/resources/default/default/default.css (modified) (1 diff)
- trunk/deployment/webadmin/webapp/resources/default/default/default.xsl (modified) (3 diffs)
- trunk/deployment/webadmin/webapp/resources/resources/minus.gif (added)
- trunk/deployment/webadmin/webapp/resources/resources/plus.gif (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/deployment/webadmin/webapp/resources/default/default/default.css
r1318 r1495 802 802 background-color: #ff3; 803 803 } 804 #calendarTree img.bwPlusMinusIcon { 805 /* the arrangement below is required for cross-browser compatibility; 806 be cautious changing it (works IE7, FF2, Safari 3) */ 807 position: relative; 808 top: -2px; 809 margin: 0 25px 0 -35px; 810 } 804 811 #statsTable { 805 812 margin: 1em 0 0 4em; trunk/deployment/webadmin/webapp/resources/default/default/default.xsl
r1491 r1495 129 129 <xsl:variable name="calendar-update" select="/bedeworkadmin/urlPrefixes/calendar/update/a/@href"/> 130 130 <xsl:variable name="calendar-setAccess" select="/bedeworkadmin/urlPrefixes/calendar/setAccess/a/@href"/> 131 <xsl:variable name="calendar-openCloseMod" select="/bedeworkadmin/urlPrefixes/calendar/calOpenCloseMod/a/@href"/> 131 132 <!-- subscriptions --> 132 133 <xsl:variable name="subscriptions-fetch" select="/bedeworkadmin/urlPrefixes/subscriptions/fetch/a/@href"/> … … 134 135 <xsl:variable name="subscriptions-initAdd" select="/bedeworkadmin/urlPrefixes/subscriptions/initAdd/a/@href"/> 135 136 <xsl:variable name="subscriptions-subscribe" select="/bedeworkadmin/urlPrefixes/subscriptions/subscribe/a/@href"/> 137 <xsl:variable name="subscriptions-openCloseMod" select="/bedeworkadmin/urlPrefixes/subscriptions/subOpenCloseMod/a/@href"/> 136 138 <!-- views --> 137 139 <xsl:variable name="view-fetch" select="/bedeworkadmin/urlPrefixes/view/fetch/a/@href"/> … … 2907 2909 </xsl:variable> 2908 2910 <li class="{$itemClass}"> 2911 <xsl:if test="calendarCollection='false'"> 2912 <!-- test the open state of the folder; if it's open, 2913 build a URL to close it and vice versa --> 2914 <xsl:choose> 2915 <xsl:when test="open = 'true'"> 2916 <a href="{$calendar-openCloseMod}&calPath={$calPath}&open=false"> 2917 <img src="{$resourcesRoot}/resources/minus.gif" width="9" height="9" alt="close" border="0" class="bwPlusMinusIcon"/> 2918 </a> 2919 </xsl:when> 2920 <xsl:otherwise> 2921 <a href="{$calendar-openCloseMod}&calPath={$calPath}&open=true"> 2922 <img src="{$resourcesRoot}/resources/plus.gif" width="9" height="9" alt="open" border="0" class="bwPlusMinusIcon"/> 2923 </a> 2924 </xsl:otherwise> 2925 </xsl:choose> 2926 </xsl:if> 2909 2927 <a href="{$calendar-fetchForUpdate}&calPath={$calPath}" title="update"> 2910 2928 <xsl:value-of select="name"/>
