summaryrefslogtreecommitdiffstats
path: root/data/css
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2013-05-23 17:44:45 +0200
committerFlorian Pritz <bluewind@xinu.at>2013-05-24 00:11:26 +0200
commit2a6a1c63cb21015009fe4fd13f62cdac64e1fe36 (patch)
treea01b7cdf6e8819b5f41df4dae8b31c04d9904e38 /data/css
parentb7ff91d8e34e1d9f04ad0b153e94441efd312f78 (diff)
upload_history: Allow column sorting (jquery.tablesorter)
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'data/css')
-rw-r--r--data/css/style.css24
1 files changed, 24 insertions, 0 deletions
diff --git a/data/css/style.css b/data/css/style.css
index 625ab7a06..1808836d8 100644
--- a/data/css/style.css
+++ b/data/css/style.css
@@ -285,3 +285,27 @@ code, pre, textarea {
margin: 0 auto 0 0;
color: #999;
}
+
+/* tables */
+table.tablesorter thead tr th, table.tablesorter tfoot tr th {
+ background-color: #e6EEEE;
+}
+table.tablesorter thead tr .header {
+ background-image: url(../img/bg.gif);
+ background-repeat: no-repeat;
+ background-position: center right;
+ cursor: pointer;
+}
+table.tablesorter tbody td {
+ color: #3D3D3D;
+ vertical-align: top;
+}
+table.tablesorter thead tr .headerSortUp {
+ background-image: url(../img/asc.gif);
+}
+table.tablesorter thead tr .headerSortDown {
+ background-image: url(../img/desc.gif);
+}
+table.tablesorter thead tr .headerSortDown, table.tablesorter thead tr .headerSortUp {
+ background-color: #8dbdd8;
+}