1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
| .sort-table {
| font: Arial;
| border: 1px Solid #ffb300 ;
| background: Window;
| color: #000000;
| padding: 1px 1px;
| border-collapse: collapse;
| width:95%;
| text-align:center;
| margin-left:auto;
| margin-right:auto;
| }
|
| .sort-table thead {
| background:#ffc726;
| }
|
| .sort-table td {
|
| border: 1px solid;
| border-color: #ffb300;
| }
|
| .sort-table thead td {
|
| cursor: default;
| font-weight: bold;
| }
|
|
| .sort-arrow {
| width: 11px;
| height: 11px;
| background-position: center center;
| background-repeat: no-repeat;
| margin: 0 2px;
| }
|
| .sort-arrow.descending {
| background-image: url("../images/downsimple.png");
|
| }
|
| .sort-arrow.ascending {
| background-image: url("../images/upsimple.png");
| }
|
|