]> git.uio.no Git - usit-rt.git/blame - share/html/NoAuth/css/base/tablesorter.css
Merge branch 'master' of git.uio.no:usit-rt
[usit-rt.git] / share / html / NoAuth / css / base / tablesorter.css
CommitLineData
84fb5b46
MKG
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 */
15table.tablesorter {
16 background-color: #CDCDCD;
17 margin:10px 0pt 15px;
18 font-size: 8pt;
19 width: 100%;
20 text-align: left;
21}
22table.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}
28table.tablesorter thead tr .header {
29 background-image: url(<%RT->Config->Get('WebPath')%>/NoAuth/images/tablesorter/bg.gif);
30 background-repeat: no-repeat;
31 background-position: center right;
32 cursor: pointer;
33 padding-right: 20px;
34}
35table.tablesorter tbody td {
36 color: #3D3D3D;
37 padding: 4px;
38 background-color: #FFF;
39 vertical-align: top;
40}
41table.tablesorter tbody tr.odd td {
42 background-color:#F0F0F6;
43}
44table.tablesorter thead tr .headerSortUp {
45 background-image: url(<%RT->Config->Get('WebPath')%>/NoAuth/images/tablesorter/asc.gif);
46}
47table.tablesorter thead tr .headerSortDown {
48 background-image: url(<%RT->Config->Get('WebPath')%>/NoAuth/images/tablesorter/desc.gif);
49}
50table.tablesorter thead tr .headerSortDown, table.tablesorter thead tr .headerSortUp {
51background-color: #8dbdd8;
52}