From: <cl...@us...> - 2004-02-05 20:08:30
|
Update of /cvsroot/phpicalendar/phpicalendar/templates/default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14505/templates/default Modified Files: day.tpl default.css Log Message: Minor tweeks to the top of day Index: day.tpl =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/templates/default/day.tpl,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** day.tpl 5 Feb 2004 07:06:11 -0000 1.7 --- day.tpl 5 Feb 2004 20:05:51 -0000 1.8 *************** *** 9,14 **** <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> ! <td class="navback"><div style="padding: 5px;" class="H20"> {DISPLAY_DATE}</div></td> ! <td align="right" width="120" class="navback"> <table width="120" border="0" cellpadding="0" cellspacing="0"> <tr> --- 9,14 ---- <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> ! <td align="left" width="90%" class="navback"><div style="padding: 5px;" class="H20"> {DISPLAY_DATE}</div></td> ! <td align="right" width="10%" class="navback"> <table width="120" border="0" cellpadding="0" cellspacing="0"> <tr> *************** *** 25,33 **** <table width="100%" border="0" cellspacing="1" cellpadding="2"> <tr> <!-- loop daysofweek on --> ! <td width="14%" align="center" class="sideback"> ! <a class="psf" href="day.php?cal={CAL}&getdate={DAYLINK}"><span class="V9">{DAY}</span></a> </td> <!-- loop daysofweek off --> </tr> </table> --- 25,39 ---- <table width="100%" border="0" cellspacing="1" cellpadding="2"> <tr> + <td align="left" valign="top" width="20" class="rowOff" onmouseover="this.className='rowOn'" onmouseout="this.className='rowOff'" onclick="window.location.href='day.php?cal={CAL}&getdate={DAYLINK}'"> + <span class="V12"><a class="psf" href="day.php?cal={CAL}&getdate={PREV_DAY}">«</a></span> + </td> <!-- loop daysofweek on --> ! <td width="14%" align="center" class="rowOff" onmouseover="this.className='rowOn'" onmouseout="this.className='rowOff'" onclick="window.location.href='day.php?cal={CAL}&getdate={DAYLINK}'"> ! <span class="V9BOLD"><a class="ps3" href="day.php?cal={CAL}&getdate={DAYLINK}">{DAY}</a></span> </td> <!-- loop daysofweek off --> + <td align="right" valign="top" width="20" class="rowOff" onmouseover="this.className='rowOn'" onmouseout="this.className='rowOff'" onclick="window.location.href='day.php?cal={CAL}&getdate={DAYLINK}'"> + <span class="V12"><a class="psf" href="day.php?cal={CAL}&getdate={NEXT_DAY}">»</a></span> + </td> </tr> </table> Index: default.css =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/templates/default/default.css,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** default.css 5 Feb 2004 04:07:57 -0000 1.8 --- default.css 5 Feb 2004 20:05:51 -0000 1.9 *************** *** 16,20 **** .alldaybg_7 {background: url(images/allday_7.gif) repeat-x; height: 19px; padding-top: 5px; text-align: center;} ! --- 16,22 ---- .alldaybg_7 {background: url(images/allday_7.gif) repeat-x; height: 19px; padding-top: 5px; text-align: center;} ! .rowOn { background-color: #DFF7F7; } ! .rowOff { background-color: #E1E8F1; } ! .rowLent { background-color: #DDDDDD; } |