Changeset 549
- Timestamp:
- 06/07/06 16:16:53
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/calendar3/deployment/webuser/webapp/resources/demoskins/default/default/default.css
r548 r549 1037 1037 font-size: 0.8em; 1038 1038 font-weight: normal; 1039 padding: 4px;1039 padding: 0; 1040 1040 margin: 0; 1041 1041 } … … 1054 1054 background-color: #ddd; 1055 1055 } 1056 #freeBusy td.tentative, 1057 #freeBusyKey td.tentative { 1058 color: #DFE7FB; 1059 background: #DFE7FB url('../../resources/tentativeLines.gif') top; 1060 } 1056 1061 #freeBusyKey { 1057 1062 margin: 0.5em auto 1em auto; … … 1065 1070 display: block; 1066 1071 padding: 6px 10px; 1072 width: 10px; 1073 height: 10px; 1074 text-decoration: none; 1075 } 1076 #freeBusy td.tentative a { 1077 color: #DFE7FB; 1078 background-color: transparent; 1079 display: block; 1080 padding: 6px 10px; 1081 width: 10px; 1082 height: 10px; 1067 1083 text-decoration: none; 1068 1084 } … … 1072 1088 display: block; 1073 1089 padding: 6px 10px; 1090 width: 10px; 1091 height: 10px; 1074 1092 text-decoration: none; 1075 1093 } 1076 1094 #freeBusy td.busy a:hover, 1077 #freeBusy td.free a:hover { 1095 #freeBusy td.free a:hover, 1096 #freeBusy td.tentative a:hover { 1078 1097 color: black; 1079 1098 background-color: yellow; trunk/calendar3/deployment/webuser/webapp/resources/demoskins/default/default/default.xsl
r548 r549 2202 2202 <xsl:variable name="startDate"><xsl:value-of select="substring(../start,1,8)"/>T<xsl:value-of select="start"/>00</xsl:variable> 2203 2203 <xsl:variable name="minutes" select="length"/> 2204 <xsl:choose> 2205 <xsl:when test="fbtype = '0'"> 2206 <td class="busy"> 2207 <a href="{$initEvent}?startdate={$startDate}&minutes={$minutes}" title="{$startTime}">*</a> 2208 </td> 2209 </xsl:when> 2210 <xsl:otherwise> 2211 <td class="free"> 2212 <a href="{$initEvent}?startdate={$startDate}&minutes={$minutes}" title="{$startTime}">*</a> 2213 </td> 2214 </xsl:otherwise> 2215 </xsl:choose> 2204 <xsl:variable name="fbClass"> 2205 <xsl:choose> 2206 <xsl:when test="fbtype = '0'">busy</xsl:when> 2207 <xsl:when test="fbtype = '3'">tentative</xsl:when> 2208 <xsl:otherwise>free</xsl:otherwise> 2209 </xsl:choose> 2210 </xsl:variable> 2211 <td class="{$fbClass}"> 2212 <a href="{$initEvent}?startdate={$startDate}&minutes={$minutes}" title="{$startTime}">*</a> 2213 </td> 2216 2214 </xsl:for-each> 2217 2215 </tr> … … 2226 2224 <td class="busy">*</td> 2227 2225 <td>busy</td> 2226 <td> </td> 2227 <td class="tentative">*</td> 2228 <td>tentative</td> 2228 2229 <td> </td> 2229 2230 <td>
