Underline columns on sort results page so users will know it is a link

Restore the CSS to display the up/down arrow on sort columns
This commit is contained in:
Rob Crittenden 2007-11-12 15:14:35 -05:00
parent 547e6e920e
commit 6f03dde1ab

View File

@ -383,3 +383,22 @@ ul.checkboxlist li input {
#inactive { #inactive {
background-color: silver; background-color: silver;
} }
/*
* * TableKit css
*
*/
.sortcol {
cursor: pointer;
padding-right: 20px !important;
background-repeat: no-repeat !important;
background-position: right center !important;
text-decoration: underline;
}
.sortasc {
background-image: url(/static/images/up.gif) !important;
}
.sortdesc {
background-image: url(/static/images/down.gif) !important;
}