]> git.uio.no Git - usit-rt.git/blob - share/static/css/base/tablesorter.css
Master to 4.2.8
[usit-rt.git] / share / static / css / base / tablesorter.css
1 /*
2  *
3  * TableSorter 2.0 - Client-side table sorting with ease!
4  * @requires jQuery v1.2.3
5  *
6  * Copyright (c) 2007 Christian Bach
7  * Examples and docs at: http://tablesorter.com
8  * Dual licensed under the MIT and GPL licenses:
9  * http://www.opensource.org/licenses/mit-license.php
10  * http://www.gnu.org/licenses/gpl.html
11  *
12  */
13
14 /* tables */
15 table.tablesorter {
16         background-color: #CDCDCD;
17         margin:10px 0pt 15px;
18         font-size: 8pt;
19         width: 100%;
20         text-align: left;
21 }
22 table.tablesorter thead tr th, table.tablesorter tfoot tr th {
23         background-color: #e6EEEE;
24         border: 1px solid #FFF;
25         font-size: 8pt;
26         padding: 4px;
27 }
28 table.tablesorter thead tr .header {
29         background-image: url(../../../static/images/tablesorter/bg.gif);
30         background-repeat: no-repeat;
31         background-position: center right;
32         cursor: pointer;
33         padding-right: 20px;
34 }
35 table.tablesorter tbody td {
36         color: #3D3D3D;
37         padding: 4px;
38         background-color: #FFF;
39         vertical-align: top;
40 }
41 table.tablesorter tbody tr.odd td {
42         background-color:#F0F0F6;
43 }
44 table.tablesorter thead tr .headerSortUp {
45         background-image: url(../../../static/images/tablesorter/asc.gif);
46 }
47 table.tablesorter thead tr .headerSortDown {
48         background-image: url(../../../static/images/tablesorter/desc.gif);
49 }
50 table.tablesorter thead tr .headerSortDown, table.tablesorter thead tr .headerSortUp {
51 background-color: #8dbdd8;
52 }