Subversion Repositories Applications.bazar

Compare Revisions

Ignore whitespace Rev 18 → Rev 19

/trunk/bazar.calendrier.php
32,7 → 32,7
// pris connaissance de la licence CeCILL, et que vous en avez accepté les
// termes.
// ----
// CVS : $Id: bazar.calendrier.php,v 1.3 2005-09-30 23:04:31 ddelon Exp $
// CVS : $Id: bazar.calendrier.php,v 1.4 2005-10-01 11:21:39 ddelon Exp $
/**
* bazar_calendrier : programme affichant les evenements du bazar sous forme de Calendrier
*
40,7 → 40,7
*@package Bazar
//Auteur original :
*@author David DELON <david.delon@clapas.net>
*@version $Revision: 1.3 $ $Date: 2005-09-30 23:04:31 $
*@version $Revision: 1.4 $ $Date: 2005-10-01 11:21:39 $
// +------------------------------------------------------------------------------------------------------+
*/
 
214,7 → 214,12
$class="previous_month";
}
else {
$class="current_month";
if ($day_ymd == $today_ymd) {
$class="current_day";
}
else {
$class="current_month";
}
}
}
/trunk/presentations/styles/calendrier.css
34,10 → 34,6
line-height: 1.2em;
}
 
/*
* These attributes apply to the cells that correspond to the days
* already past in the current month.
*/
td.previous_month {
background: #B1BB7E;
}
46,18 → 42,15
color: #000000;
}
 
/*
* These attributes apply to the cells that correspond to the future
* days in the current month.
*/
td.current_month {
background: #BFB07E;
}
 
/*
* These attributes apply to the cells that correspond to days in the
* previous or next month of the current month
*/
td.current_day {
background: #BFBFBF;
}
 
 
td.other_month {
background: #eeeeee;
}