Changeset 344
- Timestamp:
- 04/07/06 15:49:36
- Files:
-
- trunk/calendar3/deployment/webuser/webapp/resources/demoskins/default/default/default.css (modified) (7 diffs)
- trunk/calendar3/deployment/webuser/webapp/resources/demoskins/default/default/default.xsl (modified) (3 diffs)
- trunk/calendar3/deployment/webuser/webapp/resources/demoskins/resources/addEvent-forGrid-icon.gif (added)
- trunk/calendar3/deployment/webuser/webapp/resources/demoskins/resources/std-icalUpload-icon-small.gif (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/calendar3/deployment/webuser/webapp/resources/demoskins/default/default/default.css
r342 r344 31 31 padding: 1em 0.2em 0em 0.2em; 32 32 font-size: 1em; 33 } 34 .center { 35 text-align: center; 33 36 } 34 37 /* Header IDs and classes */ … … 209 212 white-space: nowrap; 210 213 } 211 #utilBarTable .leftCell .link {212 font-size: 0.8em;213 padding-left: 1em;214 color: #999;215 background-color: transparent;216 }217 214 #utilBarTable .leftCell a { 218 color: #999; 219 background-color: transparent; 215 color: #666; 216 background-color: transparent; 217 font-size: 0.75em; 218 text-decoration: none; 219 margin-right: 6px; 220 } 221 #utilBarTable .leftCell img { 222 display: inline; 223 margin-right: 2px; 224 vertical-align: middle; 220 225 } 221 226 #utilBarTable .rightCell { … … 585 590 text-decoration: none; 586 591 color: black; 587 background-color: #ff e;592 background-color: #ffa; 588 593 } 589 594 #monthCalendarTable a.dayLink { … … 613 618 top: 1em; 614 619 left: 12em; 615 background-color: #ff e;620 background-color: #ffa; 616 621 color: black; 617 622 padding: 4px; … … 624 629 top: 1em; 625 630 left: -21em; 626 background-color: #ff e;631 background-color: #ffa; 627 632 color: black; 628 633 padding: 4px; … … 634 639 font-size: 0.8em; 635 640 text-decoration: none; 636 margin-right: 2px; 641 margin: 0; 642 padding: 0; 637 643 } 638 644 #yearCalendarTable { … … 927 933 /* LINKS */ 928 934 a:link, a:active { 929 color: # 552;935 color: #00a; 930 936 background-color: transparent; 931 937 } 932 938 a:visited { 933 color: # 600;939 color: #008; 934 940 background-color: transparent; 935 941 } trunk/calendar3/deployment/webuser/webapp/resources/demoskins/default/default/default.xsl
r343 r344 492 492 <tr> 493 493 <td class="leftCell"> 494 <!--<xsl:choose> 495 <xsl:when test="/bedework/title!=''"> 496 Calendar: <xsl:value-of select="/bedework/title"/> 497 <span class="link">[<a href="{$setSelection}?calId=">clear</a>]</span> 498 </xsl:when> 499 <xsl:when test="/bedework/search!=''"> 500 Current search: <xsl:value-of select="/bedework/search"/> 501 <span class="link">[<a href="{$setSelection}?calId=">clear</a>]</span> 502 </xsl:when> 503 <xsl:otherwise> 504 Current calendar: All 505 </xsl:otherwise> 506 </xsl:choose> --> 494 <xsl:variable name="date" select="/bedework/firstday/date"/> 495 <a href="{$initEvent}?date={$date}" title="add event"> 496 <img src="{$resourcesRoot}/resources/add2mycal-icon-small.gif" width="12" height="16" border="0" alt="add event"/> 497 add event 498 </a> 499 <a href="{$initUpload}" title="upload event"> 500 <img src="{$resourcesRoot}/resources/std-icalUpload-icon-small.gif" width="12" height="16" border="0" alt="upload event"/> 501 upload 502 </a> 507 503 </td> 508 504 <td class="rightCell"> … … 784 780 <td> 785 781 <xsl:variable name="dayDate" select="date"/> 786 <a href="{$initEvent}?date={$dayDate}" class="gridAdd">[add]</a> 782 <a href="{$initEvent}?date={$dayDate}" class="gridAdd"> 783 <img src="{$resourcesRoot}/resources/addEvent-forGrid-icon.gif" width="10" height="10" border="0" alt="add event to this day"/> 784 </a> 787 785 <a href="{$setViewPeriod}?viewType=dayView&date={$dayDate}" class="dayLink"> 788 786 <xsl:value-of select="value"/> … … 819 817 <td> 820 818 <xsl:variable name="dayDate" select="date"/> 821 <a href="{$initEvent}?date={$dayDate}" class="gridAdd">[add]</a> 819 <a href="{$initEvent}?date={$dayDate}" class="gridAdd"> 820 <img src="{$resourcesRoot}/resources/addEvent-forGrid-icon.gif" width="10" height="10" border="0" alt="add event to this day"/> 821 </a> 822 822 <a href="{$setViewPeriod}?viewType=dayView&date={$dayDate}" class="dayLink"> 823 823 <xsl:value-of select="value"/>
