Cs Tip06: 自定义Blog Calendar样式
译自: http://soup.co.za/weblog/archive/2006/03/26/40.aspx
Asp.Net提供的Calendar控件太糟糕了,主要是对Css的支持太糟糕了,我估计Cs里用的Calendar控件可能是源自
Daniel Cazzulino's Unstyledcalendar.但是这个还是有点问题,我想上一页和下一页可能还是采用了内联样式(inline style)
但是我们可以采用!important CSS 可以回避内联样式
最简单的办法就是在Skin-WeblogCalendar.ascx 中的<CS:Unstyledcalendar>添加
nextprevstyle-cssclass="calNextPrev"
然后再 style.css中添加
.calNextPrev a:link, .calNextPrev a:active, .calNextPrev a:visited {
color: #FFF!important;
}
.calNextPrev a:hover {
color: #FFF!important;
}