|
[PHPiCalendar-Commits] phpicalendar/templates/default default.css,1.19,1.20 month_medium.tpl,1.5,1.6
From: <cl...@us...> - 2004-05-20 03:37:20
|
Update of /cvsroot/phpicalendar/phpicalendar/templates/default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5018/templates/default Modified Files: default.css month_medium.tpl Log Message: Shaved 120k off of year template. Index: default.css =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/templates/default/default.css,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** default.css 19 May 2004 18:26:10 -0000 1.19 --- default.css 20 May 2004 03:37:05 -0000 1.20 *************** *** 47,50 **** --- 47,57 ---- .title h1 { font-family: Helvetica, sans-serif; font-size: 18px; color: #000; margin: 0px;} + .medtitle { background-image: url(images/side_bg.gif); height: 20px; margin-top: 3px; font-weight: 900; } + .yearreg { background-color: #fff; height: 30px; width: 30px; text-align: right; vertical-align: top; font-size: 9px; } + .yearoff { background-color: #F2F2F2; height: 30px; width: 30px; text-align: right; vertical-align: top; font-size: 9px; } + .yearon { background-color: #F2F9FF; height: 30px; width: 30px; text-align: right; vertical-align: top; font-size: 9px; } + .yearmonth { background-color: #ccc; } + .yearweek { background-color: #eee; width: 30px; font-size: 9px; font-weight: 900; text-align: center; height: 15px; } + /* older styles */ *************** *** 65,74 **** .monthoff { background-color: #F2F2F2; height: 105px; width: 105px; text-align: left; vertical-align: top; } .monthon { background-color: #F2F9FF; height: 105px; width: 105px; text-align: left; vertical-align: top; } - .yearreg { background-color: #fff; height: 30px; width: 30px; text-align: left; vertical-align: top; } - .yearoff { background-color: #F2F2F2; height: 30px; width: 30px; text-align: left; vertical-align: top; } - .yearon { background-color: #F2F9FF; height: 30px; width: 30px; text-align: left; vertical-align: top; } .montheventtop { background-image: url(images/side_bg.gif); border-top: 1px solid #A1A5A9; } .montheventline { border-right: 1px dotted #A1A5A9; } - .yearmonth { background: #CCCCCC; } /* Link colors and attributes */ --- 72,77 ---- Index: month_medium.tpl =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/templates/default/month_medium.tpl,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** month_medium.tpl 16 May 2004 07:05:41 -0000 1.5 --- month_medium.tpl 20 May 2004 03:37:06 -0000 1.6 *************** *** 1,5 **** <table border="0" width="210" cellspacing="0" cellpadding="0" class="calborder"> <tr> ! <td align="center" class="sideback"><div style="height: 16px; margin-top: 3px;" class="G10BOLD"><a class="ps3" href="month.php?cal={CAL}&getdate={MONTH_DATE}">{MONTH_TITLE}</a></div></td> </tr> <tr> --- 1,5 ---- <table border="0" width="210" cellspacing="0" cellpadding="0" class="calborder"> <tr> ! <td align="center" class="medtitle"><a class="ps3" href="month.php?cal={CAL}&getdate={MONTH_DATE}">{MONTH_TITLE}</a></td> </tr> <tr> *************** *** 8,12 **** <tr> <!-- loop weekday on --> ! <td width="30" height="14" class="dateback" align="center"><font class="V9BOLD">{LOOP_WEEKDAY}</font></td> <!-- loop weekday off --> </tr> --- 8,12 ---- <tr> <!-- loop weekday on --> ! <td class="yearweek">{LOOP_WEEKDAY}</td> <!-- loop weekday off --> </tr> *************** *** 15,25 **** <!-- loop monthdays on --> <!-- switch notthismonth on --> ! <td class="yearoff" onmouseover="this.style.backgroundColor='#DDDDDD'" onmouseout="this.style.backgroundColor='#F2F2F2'" onclick="window.location.href='day.php?cal=all_calendars_combined971&getdate={DAYLINK}'"> ! <div align="right" class="V9"><a class="psf" href="day.php?cal={CAL}&getdate={DAYLINK}">{DAY}</a></div> </td> <!-- switch notthismonth off --> <!-- switch istoday on --> ! <td class="yearreg" onmouseover="this.style.backgroundColor='#DDDDDD'" onmouseout="this.style.backgroundColor='#FFFFFF'" onclick="window.location.href='day.php?cal=all_calendars_combined971&getdate={DAYLINK}'"> ! <div align="right" class="V9"><a class="psf" href="day.php?cal={CAL}&getdate={DAYLINK}">{DAY}</a></div> <div align="center"> {ALLDAY} --- 15,25 ---- <!-- loop monthdays on --> <!-- switch notthismonth on --> ! <td class="yearoff"> ! <a class="psf" href="day.php?cal={CAL}&getdate={DAYLINK}">{DAY}</a> </td> <!-- switch notthismonth off --> <!-- switch istoday on --> ! <td class="yearon"> ! <a class="psf" href="day.php?cal={CAL}&getdate={DAYLINK}">{DAY}</a> <div align="center"> {ALLDAY} *************** *** 29,34 **** <!-- switch istoday off --> <!-- switch ismonth on --> ! <td class="yearreg" onmouseover="this.style.backgroundColor='#DDDDDD'" onmouseout="this.style.backgroundColor='#FFFFFF'" onclick="window.location.href='day.php?cal=all_calendars_combined971&getdate={DAYLINK}'"> ! <div align="right" class="V9"><a class="psf" href="day.php?cal={CAL}&getdate={DAYLINK}">{DAY}</a></div> <div align="center"> {ALLDAY} --- 29,34 ---- <!-- switch istoday off --> <!-- switch ismonth on --> ! <td class="yearreg"> ! <a class="psf" href="day.php?cal={CAL}&getdate={DAYLINK}">{DAY}</a> <div align="center"> {ALLDAY} |