GUAC-1140: Set different CSS classes depending on primary sort column and direction.

This commit is contained in:
Michael Jumper
2015-03-23 13:54:31 -07:00
parent 6135883643
commit 4d81272d42
3 changed files with 68 additions and 4 deletions

View File

@@ -43,3 +43,15 @@
min-width: 2em;
text-align: center;
}
.manage table.session-list th.sort-primary {
text-decoration: underline;
}
.manage table.session-list th.sort-primary:after {
content: ' \25be';
}
.manage table.session-list th.sort-primary.sort-descending:after {
content: ' \25b2';
}