Changeset 267
- Timestamp:
- 03/06/06 23:50:58
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/calendar3/deployment/webuser/webapp/resources/demoskins/default/default/default.css
r266 r267 117 117 margin: 0; 118 118 padding: 0; 119 vertical-align: top;120 119 } 121 120 #bodyBlock td#sideBar { … … 127 126 padding: 0; 128 127 } 128 #bodyBlock td#sideBarClosed { 129 width: 1px; 130 border-left: 2px solid #333; 131 border-right: 3px groove #ddd; 132 border-bottom: 2px solid #aaa; 133 padding: 0; 134 color: black; 135 background-color: #ddd; 136 } 129 137 #sideBarOpenCloseIcon { 130 138 position: absolute; … … 161 169 #bodyBlock td#sideBar #sideBarMenu li { 162 170 font-size: 0.9em; 171 padding-bottom: 0.5em; 172 } 173 #bodyBlock td#bodyContent { 174 border-right: 2px solid #333; 175 border-bottom: 2px solid #aaa; 176 border-left: 1px solid #333; 177 vertical-align: top; 178 padding: 0; 163 179 } 164 180 #userBarTable { … … 172 188 margin: 0; 173 189 padding: 0; 174 border-left: 1px solid #333;175 190 padding: 0.2em 0 0.2em 1em; 176 191 white-space: nowrap; … … 193 208 padding: 0.1em 0.2em 0 0; 194 209 text-align: right; 195 border-right: 2px solid #333;196 210 white-space: nowrap; 197 211 } … … 228 242 padding: 0em; 229 243 vertical-align: top; 230 border-left : 1px solid #333;231 border-right : 2px solid #333;232 244 border-bottom: 1px solid Gray; 233 245 } … … 323 335 margin: 0px; 324 336 padding: 0px; 325 border-bottom: 2px solid #aaa;326 border-left: 1px solid #333;327 border-right: 2px solid #333;328 337 } 329 338 #commonTable td.fieldval, … … 383 392 margin: 0; 384 393 padding: 0; 385 border-bottom: 2px solid #aaa;386 border-left: 1px solid #333;387 border-right: 2px solid #333;388 394 } 389 395 #calPageTable td { … … 423 429 padding: 0px; 424 430 border-top: 1px solid #666; 425 border-bottom: 2px solid #aaa;426 border-left: 1px solid #333;427 border-right: 2px solid #333;428 431 } 429 432 #dayCalendarTable td { … … 455 458 padding: 0px; 456 459 border-top: 1px solid #666; 457 border-bottom: 2px solid #aaa;458 border-left: 1px solid #333;459 border-right: 2px solid #333;460 460 } 461 461 #weekCalendarTable td { … … 487 487 padding: 0px; 488 488 border-top: 1px solid #666; 489 border-bottom: 2px solid #aaa;490 border-left: 1px solid #333;491 border-right: 2px solid #333;492 489 } 493 490 #monthCalendarTable th.dayHeading { … … 628 625 padding: 0em; 629 626 border-top: 1px solid #666; 630 border-bottom: 2px solid #aaa;631 border-left: 1px solid #333;632 border-right: 2px solid #333;633 627 } 634 628 #yearCalendarTable td { … … 697 691 padding: 0px; 698 692 border-top: 1px solid #666; 699 border-bottom: 2px solid #aaa;700 border-left: 1px solid #333;701 border-right: 2px solid #333;702 693 } 703 694 #listTable td { trunk/calendar3/deployment/webuser/webapp/resources/demoskins/default/default/default.xsl
r266 r267 92 92 <table id="bodyBlock" cellspacing="0"> 93 93 <tr> 94 <td id="sideBar"> 95 <xsl:call-template name="sideBar"/> 96 </td> 94 <xsl:choose> 95 <xsl:when test="/bedework/appvar[key='sidebar']/value='closed'"> 96 <td id="sideBarClosed"> 97 <img src="{$resourcesRoot}/images/demo/space.gif" width="1" height="1" border="0" alt="*"/> 98 </td> 99 </xsl:when> 100 <xsl:otherwise> 101 <td id="sideBar"> 102 <xsl:call-template name="sideBar"/> 103 </td> 104 </xsl:otherwise> 105 </xsl:choose> 97 106 <td id="bodyContent"> 98 107 <xsl:call-template name="tabs"/> … … 221 230 <div id="curDateRange"> 222 231 <div id="sideBarOpenCloseIcon"> 223 <img alt="" src="{$resourcesRoot}/images/demo/std-sidebarclose-icon.gif" width="13" height="13" border="0" align="left"/> 232 <xsl:choose> 233 <xsl:when test="/bedework/appvar[key='sidebar']/value='closed'"> 234 <a href="?setappvar=sidebar(opened)"> 235 <img alt="open sidebar" src="{$resourcesRoot}/images/demo/std-sidebaropen-icon.gif" width="13" height="13" border="0" align="left"/> 236 </a> 237 </xsl:when> 238 <xsl:otherwise> 239 <a href="?setappvar=sidebar(closed)"> 240 <img alt="close sidebar" src="{$resourcesRoot}/images/demo/std-sidebarclose-icon.gif" width="13" height="13" border="0" align="left"/> 241 </a> 242 </xsl:otherwise> 243 </xsl:choose> 224 244 </div> 225 245 <xsl:value-of select="/bedework/firstday/longdate"/> … … 293 313 </td> 294 314 <td class="centerCell"> 295 <a href="{$initUpload}">upload</a><!-- <a href="http://www.rpi.edu/dept/cct/apps/pubeventsxml/calendarfeatures.html">login</a> --> 296 <!-- <span id="featureHighlight">switch view →</span> --> 315   297 316 </td> 298 317 <td class="rssPrint">
