* Some jQuery / CSS hackery.

This commit is contained in:
Eelco Dolstra
2008-10-28 15:34:29 +00:00
parent 9f7403765c
commit 08798f3c07
6 changed files with 90 additions and 12 deletions

View File

@ -150,4 +150,30 @@ span.error-msg {
pre.buildlog {
border: 1px solid black;
padding: 0.3em;
}
}
/* Sortable tables */
table.tablesorter {
text-align: left;
}
table.tablesorter thead tr .header {
background-image: url(/static/js/tablesorter/themes/blue/bg.gif);
background-repeat: no-repeat;
background-position: center right;
cursor: pointer;
}
table.tablesorter thead tr .headerSortUp {
background-image: url(/static/js/tablesorter/themes/blue/asc.gif);
}
table.tablesorter thead tr .headerSortDown {
background-image: url(/static/js/tablesorter/themes/blue/desc.gif);
}
table.tablesorter thead tr .headerSortDown, table.tablesorter thead tr .headerSortUp {
background-color: #ffe000;
}