Css for weekends and todays date..
Hi,
I was trying to get to mark todays date with a red boundry and
weekends with green text. I am not sure if htis is the right place to
post this.
But it might be helpful if ane1 needs it. Below is the css..it works
in IE 6 but should work in all other browser although i havent tested
it.
/*week end title*/
table.ui-datepicker tr.ui-datepicker-title-row td.ui-datepicker-week-
end-cell a {
color: #006600;
background: #e0e0e0 url(images/
e0e0e0_40x100_textures_02_glass_80.png) 0 50% repeat-x;
cursor: pointer;
border: 1px solid #f3f3f3;
}
/*weekend actual date*/
table.ui-datepicker tr.ui-datepicker-days-row td.ui-datepicker-week-
end-cell a {
color: #006600;
background: #e0e0e0 url(images/
e0e0e0_40x100_textures_02_glass_80.png) 0 50% repeat-x;
cursor: pointer;
border: 1px solid #f3f3f3;
}
/*todays date*/
table.ui-datepicker tr.ui-datepicker-days-row td.ui-datepicker-today
a {
color: #00000;
background: #e0e0e0 url(images/
e0e0e0_40x100_textures_02_glass_80.png) 0 50% repeat-x;
cursor: pointer;
border: 1px solid #ff0000;
}
Regards,
Mahesh