* Added pagination
[django-tables2.git] / django_tables / static / django_tables / themes / paleblue / css / screen.css
1 table.paleblue {
2     border-collapse: collapse;
3     border-color: #CCC;
4     border: 1px solid #DDD;
5     font-family: 'Lucida Grande', Verdana, Arial, sans-serif;
6 }
7
8 table.paleblue a:link,
9 table.paleblue a:visited,
10 table.paleblue + ul.pagination > li > a {
11     color: #5B80B2;
12     text-decoration: none;
13     font-weight: bold;
14 }
15
16 table.paleblue a:hover {
17     color: #036;
18 }
19
20 table.paleblue td,
21 table.paleblue th {
22     padding: 5px;
23     line-height: 13px;
24     border-bottom: 1px solid #EEE;
25     border-left: 1px solid #DDD;
26 }
27
28 table.paleblue thead th:first-child,
29 table.paleblue thead td:first-child {
30     border-left: none !important;
31 }
32
33 table.paleblue thead th,
34 table.paleblue thead td {
35     background: #FCFCFC url(../img/header-bg.gif) top left repeat-x;
36     border-bottom: 1px solid #DDD;
37     padding: 2px 5px;
38     font-size: 11px;
39     vertical-align: middle;
40     white-space: nowrap;
41     color: #666;
42 }
43
44 table.paleblue thead th > a:link,
45 table.paleblue thead th > a:visited {
46     color: #666;
47     display: block;
48 }
49
50 table.paleblue thead th.sortable > a {
51     padding-right: 20px;
52     background: url(../img/arrow-inactive-up.png) right center no-repeat;
53 }
54 table.paleblue thead th.sortable.asc > a {
55     background-image: url(../img/arrow-active-up.png);
56 }
57 table.paleblue thead th.sortable.desc > a {
58     background-image: url(../img/arrow-active-down.png);
59 }
60
61 table.paleblue tr.odd {
62     background-color: #EDF3FE;
63 }
64
65 table.paleblue tr.even {
66     background-color: white;
67 }
68
69 table.paleblue + ul.pagination {
70     background: white url(../img/pagination-bg.gif) left 180% repeat-x;
71     overflow: auto;
72     padding: 10px;
73     border: 1px solid #DDD;
74 }
75
76 table.paleblue + ul.pagination > li {
77     float: left;
78     line-height: 22px;
79     margin-left: 10px;
80 }
81
82 table.paleblue + ul.pagination > li:first-child {
83     margin-left: 0;
84 }
85
86 div.table-container {
87     display: inline-block;
88 }