blob: a88acc0909b909769a86a56df2b4ee76e0fefcbd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* Table Sorting */
table.jquery-tablesorter th.headerSort {
/* @embed */
background-image: url(images/sort_both.gif);
cursor: pointer;
background-repeat: no-repeat;
background-position: center right;
padding-right: 21px;
}
table.jquery-tablesorter th.headerSortUp {
/* @embed */
background-image: url(images/sort_up.gif);
}
table.jquery-tablesorter th.headerSortDown {
/* @embed */
background-image: url(images/sort_down.gif);
}
|