summaryrefslogtreecommitdiffstats
path: root/css
diff options
context:
space:
mode:
authorArun Persaud <arun@nubati.net>2009-02-12 22:12:23 -0800
committerArun Persaud <arun@nubati.net>2009-02-12 22:12:23 -0800
commit5edd63b115fe7712c6e220fc6a0b78dbace4f3cd (patch)
treedf5d9584d2c6f2821a49b8db90602f23df31e641 /css
parent65322d53842f9ee7e166970e5250f76c36fc3e6a (diff)
downloade-DoKo-5edd63b115fe7712c6e220fc6a0b78dbace4f3cd.tar.gz
e-DoKo-5edd63b115fe7712c6e220fc6a0b78dbace4f3cd.tar.bz2
e-DoKo-5edd63b115fe7712c6e220fc6a0b78dbace4f3cd.zip
NEW FEATURE + CLEANUP: added some table sorting to the statistics page via jquery
using jquery to add table sorting, might also use it for other things later. Also optimized some DB-queries and cleaned up some code.
Diffstat (limited to 'css')
-rw-r--r--css/asc.pngbin0 -> 263 bytes
-rw-r--r--css/bg.pngbin0 -> 273 bytes
-rw-r--r--css/desc.pngbin0 -> 263 bytes
-rw-r--r--css/standard019.css (renamed from css/standard018.css)35
4 files changed, 30 insertions, 5 deletions
diff --git a/css/asc.png b/css/asc.png
new file mode 100644
index 0000000..bea6c3a
--- /dev/null
+++ b/css/asc.png
Binary files differ
diff --git a/css/bg.png b/css/bg.png
new file mode 100644
index 0000000..710f119
--- /dev/null
+++ b/css/bg.png
Binary files differ
diff --git a/css/desc.png b/css/desc.png
new file mode 100644
index 0000000..193dbd6
--- /dev/null
+++ b/css/desc.png
Binary files differ
diff --git a/css/standard018.css b/css/standard019.css
index d1eeb25..2483c99 100644
--- a/css/standard018.css
+++ b/css/standard019.css
@@ -523,6 +523,8 @@ div span img.button { width: 2em;}
.bigger{ font-size:larger;}
+
+/* statistics using jquery*/
caption {
text-align: center;
margin: 0.5em;
@@ -530,13 +532,15 @@ caption {
padding-bottom: 0em;
margin-bottom: 0;
}
-table.stats { margin: 0.5em 1em;
+
+table.stats {
+ margin: 0.5em 1em;
border: solid 0.2em #aeaeae;
-moz-border-radius: 0.5em ;
float: left;
}
-table.stats tr.odd { background-color:#aeaeae; }
-table.stats tr.even { background-color:#eaeaea; }
+table.stats tbody tr.odd td { background-color:#aeaeae; }
+table.stats tbody tr.even td { background-color:#eaeaea; }
table.stats td, table.stats th {
margin-left: 0.2em;
margin-right: 0.2em;
@@ -544,10 +548,31 @@ table.stats td, table.stats th {
padding-right: 0.2em;
border-right: solid 0.1em #000;
}
-table.stats tr td:last-child, table.stats tr th:last-child { border-right: solid 0 #000; }
-
+table.stats tr td:last-child, table.stats tr th:last-child { border-right: solid 0 #000; }
table.stats th { border-bottom: solid 0.2em #000 }
+table.stats thead tr .header {
+ background-image: url(bg.png);
+ background-repeat: no-repeat;
+ background-position: center right;
+ cursor: pointer;
+}
+table.stats tbody td {
+ padding: 4px;
+ background-color: #eaeaea;
+ vertical-align: top;
+}
+table.stats thead tr .headerSortUp {
+ background-image: url(asc.png);
+}
+table.stats thead tr .headerSortDown {
+ background-image: url(desc.png);
+}
+table.stats thead tr .headerSortDown, table.tablesorter thead tr .headerSortUp {
+ background-color: #8dbdd8;
+}
+
+
/* the login window */
.login {