|
add this style:
.event2 {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
font-style: normal;
line-height: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
text-decoration: none;
cursor: default;
vertical-align: middle;
text-align: center;
color: $numberTextColor;
background-color: red;
}
and change this line:
echo "<TD onMouseOver=\"this.className='sel'\" onMouseOut=\"this.className='event'\" class=\"event\"><A class=\"A\" HREF=\"javascript:event('$path?act=event&date=" . $key[1] . "')\">$date[2]</A></TD>\n";
to this:
echo "<TD onMouseOver=\"this.className='sel'\" onMouseOut=\"this.className='event2'\" class=\"event2\"><A class=\"A\" HREF=\"javascript:event('$path?act=event&date=" . $key[1] . "')\">$date[2]</A></TD>\n";
|