modifying css and image links to support our altered folder structure
[oweals/karmaworld.git] / karmaworld / assets / css / table_sort.css
1 table.tablesorter thead tr .tablesorter-header {
2         background-image: url(../img/bg.gif);
3         background-repeat: no-repeat;
4         background-position: center right;
5         cursor: pointer;
6 }
7
8 table.tablesorter thead tr .tablesorter-headerAsc {
9         background-image: url(../img/asc.gif);
10 }
11
12 table.tablesorter thead tr .tablesorter-headerDesc {
13         background-image: url(../img/desc.gif);
14 }
15
16 /* Below stolen from docs:*/
17
18 /* filter row */ 
19 .tablesorter-filter-row td { 
20   background: #eee; 
21   line-height: normal; 
22   text-align: center; /* center the input */ 
23   -webkit-transition: line-height 0.1s ease; 
24   -moz-transition: line-height 0.1s ease; 
25   -o-transition: line-height 0.1s ease; 
26   transition: line-height 0.1s ease; 
27
28 /* optional disabled input styling */ 
29 .tablesorter-filter-row .disabled { 
30   opacity: 0.5; 
31   filter: alpha(opacity=50); 
32   cursor: not-allowed; 
33
34  
35 /* hidden filter row */ 
36 .tablesorter-filter-row.hideme td { 
37   /*** *********************************************** ***/ 
38   /*** change this padding to modify the thickness     ***/ 
39   /*** of the closed filter row (height = padding x 2) ***/ 
40   padding: 2px; 
41   /*** *********************************************** ***/ 
42   margin: 0; 
43   line-height: 0; 
44   cursor: pointer; 
45
46 .tablesorter-filter-row.hideme .tablesorter-filter { 
47   height: 1px; 
48   min-height: 0; 
49   border: 0; 
50   padding: 0; 
51   margin: 0; 
52   /* don't use visibility: hidden because it disables tabbing */ 
53   opacity: 0; 
54   filter: alpha(opacity=0); 
55
56  
57 /* filters */ 
58 .tablesorter-filter { 
59   width: 95%; 
60   height: inherit; 
61   margin: 4px; 
62   padding: 4px; 
63   background-color: #fff; 
64   border: 1px solid #bbb; 
65   color: #333; 
66   -webkit-box-sizing: border-box; 
67   -moz-box-sizing: border-box; 
68   box-sizing: border-box; 
69   -webkit-transition: height 0.1s ease; 
70   -moz-transition: height 0.1s ease; 
71   -o-transition: height 0.1s ease; 
72   transition: height 0.1s ease; 
73 }