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