After long researching...
The [PAGER] is controlled by 3 styles, all in default.css:
The main problem is, except .pagingTable, other 2 classes is shared with
controls like Login, Register, Control Panal, etc...
.PagingTable .commandButton .NormalDisabled
i.e. change the [pager] style = making it worst. I actually looking for the pager control file...ended up in web control...somemore is a .dll file zzzzz
This is the broswer source view file:
<table class="PagingTable" border="0"> <tr> <td class="Normal" align="left" style="width:50%;">Page 1 of 4td> <td class="Normal" align="right" style="width:50%;">
<span class="NormalDisabled">Firstspan> <span class="NormalDisabled">Previousspan> <span class="NormalDisabled">Ώ]span>
<a href="/Default.aspx" class="CommandButton">2a> <a href="/Default.aspx" class="CommandButton">3a> <a href="/Default.aspx" class="CommandButton">Lasta> td> tr> table>
So, in order to avoid affecting other controls that sharing the class .commandbuttion, and .normaldisabled...try this
.PagingTable {border:1px solid gray;height:40px;width:100%}
.PagingTable td.span.NormalDisabled,.PagingTable td.a.commandButton {border:1px solid gray;background:#f0f0f0;padding 3 5px;line-height:2;}
I'm really not sure if this work: .PagingTable td.span.commandButton I'll try it this weekend and see...3am....ledi...
Just hope that they will give [pager] a own style rather than sharing it again in DNN 5.0.
George.
|