annotate jquery.dataTables.css.new @ 9:7300ed4c1481 draft default tip

Uploaded
author saskia-hiltemann
date Mon, 04 Sep 2017 10:49:00 -0400
parents 42076db43d42
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
1 /*
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
2 * Table styles
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
3 */
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
4 table.dataTable {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
5 width: 100%;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
6 margin: 0 auto;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
7 clear: both;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
8 border-collapse: separate;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
9 border-spacing: 0;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
10 /*
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
11 * Header and footer styles
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
12 */
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
13 /*
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
14 * Body styles
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
15 */
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
16 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
17 table.dataTable thead th,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
18 table.dataTable tfoot th {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
19 font-weight: bold;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
20 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
21 table.dataTable thead th,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
22 table.dataTable thead td {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
23 padding: 10px 18px;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
24 border-bottom: 1px solid #111;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
25 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
26 table.dataTable thead th:active,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
27 table.dataTable thead td:active {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
28 outline: none;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
29 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
30 table.dataTable tfoot th,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
31 table.dataTable tfoot td {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
32 padding: 10px 18px 6px 18px;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
33 border-top: 1px solid #111;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
34 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
35 table.dataTable thead .sorting,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
36 table.dataTable thead .sorting_asc,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
37 table.dataTable thead .sorting_desc {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
38 cursor: pointer;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
39 *cursor: hand;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
40 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
41 table.dataTable thead .sorting,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
42 table.dataTable thead .sorting_asc,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
43 table.dataTable thead .sorting_desc,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
44 table.dataTable thead .sorting_asc_disabled,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
45 table.dataTable thead .sorting_desc_disabled {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
46 background-repeat: no-repeat;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
47 background-position: center right;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
48 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
49 table.dataTable thead .sorting {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
50 background-image: url("../images/sort_both.png");
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
51 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
52 table.dataTable thead .sorting_asc {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
53 background-image: url("../images/sort_asc.png");
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
54 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
55 table.dataTable thead .sorting_desc {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
56 background-image: url("../images/sort_desc.png");
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
57 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
58 table.dataTable thead .sorting_asc_disabled {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
59 background-image: url("../images/sort_asc_disabled.png");
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
60 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
61 table.dataTable thead .sorting_desc_disabled {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
62 background-image: url("../images/sort_desc_disabled.png");
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
63 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
64 table.dataTable tbody tr {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
65 background-color: #ffffff;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
66 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
67 table.dataTable tbody tr.selected {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
68 background-color: #B0BED9;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
69 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
70 table.dataTable tbody th,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
71 table.dataTable tbody td {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
72 padding: 8px 10px;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
73 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
74 table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table.dataTable.display tbody th, table.dataTable.display tbody td {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
75 border-top: 1px solid #ddd;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
76 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
77 table.dataTable.row-border tbody tr:first-child th,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
78 table.dataTable.row-border tbody tr:first-child td, table.dataTable.display tbody tr:first-child th,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
79 table.dataTable.display tbody tr:first-child td {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
80 border-top: none;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
81 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
82 table.dataTable.cell-border tbody th, table.dataTable.cell-border tbody td {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
83 border-top: 1px solid #ddd;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
84 border-right: 1px solid #ddd;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
85 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
86 table.dataTable.cell-border tbody tr th:first-child,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
87 table.dataTable.cell-border tbody tr td:first-child {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
88 border-left: 1px solid #ddd;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
89 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
90 table.dataTable.cell-border tbody tr:first-child th,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
91 table.dataTable.cell-border tbody tr:first-child td {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
92 border-top: none;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
93 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
94 table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
95 background-color: #f9f9f9;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
96 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
97 table.dataTable.stripe tbody tr.odd.selected, table.dataTable.display tbody tr.odd.selected {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
98 background-color: #acbad4;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
99 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
100 table.dataTable.hover tbody tr:hover, table.dataTable.display tbody tr:hover {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
101 background-color: #f6f6f6;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
102 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
103 table.dataTable.hover tbody tr:hover.selected, table.dataTable.display tbody tr:hover.selected {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
104 background-color: #aab7d1;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
105 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
106 table.dataTable.order-column tbody tr > .sorting_1,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
107 table.dataTable.order-column tbody tr > .sorting_2,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
108 table.dataTable.order-column tbody tr > .sorting_3, table.dataTable.display tbody tr > .sorting_1,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
109 table.dataTable.display tbody tr > .sorting_2,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
110 table.dataTable.display tbody tr > .sorting_3 {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
111 background-color: #fafafa;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
112 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
113 table.dataTable.order-column tbody tr.selected > .sorting_1,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
114 table.dataTable.order-column tbody tr.selected > .sorting_2,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
115 table.dataTable.order-column tbody tr.selected > .sorting_3, table.dataTable.display tbody tr.selected > .sorting_1,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
116 table.dataTable.display tbody tr.selected > .sorting_2,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
117 table.dataTable.display tbody tr.selected > .sorting_3 {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
118 background-color: #acbad5;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
119 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
120 table.dataTable.display tbody tr.odd > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd > .sorting_1 {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
121 background-color: #f1f1f1;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
122 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
123 table.dataTable.display tbody tr.odd > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd > .sorting_2 {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
124 background-color: #f3f3f3;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
125 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
126 table.dataTable.display tbody tr.odd > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd > .sorting_3 {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
127 background-color: whitesmoke;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
128 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
129 table.dataTable.display tbody tr.odd.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_1 {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
130 background-color: #a6b4cd;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
131 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
132 table.dataTable.display tbody tr.odd.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_2 {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
133 background-color: #a8b5cf;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
134 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
135 table.dataTable.display tbody tr.odd.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_3 {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
136 background-color: #a9b7d1;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
137 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
138 table.dataTable.display tbody tr.even > .sorting_1, table.dataTable.order-column.stripe tbody tr.even > .sorting_1 {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
139 background-color: #fafafa;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
140 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
141 table.dataTable.display tbody tr.even > .sorting_2, table.dataTable.order-column.stripe tbody tr.even > .sorting_2 {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
142 background-color: #fcfcfc;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
143 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
144 table.dataTable.display tbody tr.even > .sorting_3, table.dataTable.order-column.stripe tbody tr.even > .sorting_3 {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
145 background-color: #fefefe;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
146 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
147 table.dataTable.display tbody tr.even.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_1 {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
148 background-color: #acbad5;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
149 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
150 table.dataTable.display tbody tr.even.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_2 {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
151 background-color: #aebcd6;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
152 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
153 table.dataTable.display tbody tr.even.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_3 {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
154 background-color: #afbdd8;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
155 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
156 table.dataTable.display tbody tr:hover > .sorting_1, table.dataTable.order-column.hover tbody tr:hover > .sorting_1 {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
157 background-color: #eaeaea;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
158 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
159 table.dataTable.display tbody tr:hover > .sorting_2, table.dataTable.order-column.hover tbody tr:hover > .sorting_2 {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
160 background-color: #ececec;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
161 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
162 table.dataTable.display tbody tr:hover > .sorting_3, table.dataTable.order-column.hover tbody tr:hover > .sorting_3 {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
163 background-color: #efefef;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
164 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
165 table.dataTable.display tbody tr:hover.selected > .sorting_1, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1 {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
166 background-color: #a2aec7;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
167 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
168 table.dataTable.display tbody tr:hover.selected > .sorting_2, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2 {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
169 background-color: #a3b0c9;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
170 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
171 table.dataTable.display tbody tr:hover.selected > .sorting_3, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3 {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
172 background-color: #a5b2cb;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
173 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
174 table.dataTable.no-footer {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
175 border-bottom: 1px solid #111;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
176 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
177 table.dataTable.nowrap th, table.dataTable.nowrap td {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
178 white-space: nowrap;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
179 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
180 table.dataTable.compact thead th,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
181 table.dataTable.compact thead td {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
182 padding: 4px 17px 4px 4px;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
183 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
184 table.dataTable.compact tfoot th,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
185 table.dataTable.compact tfoot td {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
186 padding: 4px;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
187 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
188 table.dataTable.compact tbody th,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
189 table.dataTable.compact tbody td {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
190 padding: 4px;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
191 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
192 table.dataTable th.dt-left,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
193 table.dataTable td.dt-left {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
194 text-align: left;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
195 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
196 table.dataTable th.dt-center,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
197 table.dataTable td.dt-center,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
198 table.dataTable td.dataTables_empty {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
199 text-align: center;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
200 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
201 table.dataTable th.dt-right,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
202 table.dataTable td.dt-right {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
203 text-align: right;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
204 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
205 table.dataTable th.dt-justify,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
206 table.dataTable td.dt-justify {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
207 text-align: justify;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
208 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
209 table.dataTable th.dt-nowrap,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
210 table.dataTable td.dt-nowrap {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
211 white-space: nowrap;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
212 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
213 table.dataTable thead th.dt-head-left,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
214 table.dataTable thead td.dt-head-left,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
215 table.dataTable tfoot th.dt-head-left,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
216 table.dataTable tfoot td.dt-head-left {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
217 text-align: left;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
218 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
219 table.dataTable thead th.dt-head-center,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
220 table.dataTable thead td.dt-head-center,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
221 table.dataTable tfoot th.dt-head-center,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
222 table.dataTable tfoot td.dt-head-center {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
223 text-align: center;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
224 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
225 table.dataTable thead th.dt-head-right,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
226 table.dataTable thead td.dt-head-right,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
227 table.dataTable tfoot th.dt-head-right,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
228 table.dataTable tfoot td.dt-head-right {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
229 text-align: right;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
230 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
231 table.dataTable thead th.dt-head-justify,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
232 table.dataTable thead td.dt-head-justify,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
233 table.dataTable tfoot th.dt-head-justify,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
234 table.dataTable tfoot td.dt-head-justify {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
235 text-align: justify;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
236 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
237 table.dataTable thead th.dt-head-nowrap,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
238 table.dataTable thead td.dt-head-nowrap,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
239 table.dataTable tfoot th.dt-head-nowrap,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
240 table.dataTable tfoot td.dt-head-nowrap {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
241 white-space: nowrap;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
242 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
243 table.dataTable tbody th.dt-body-left,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
244 table.dataTable tbody td.dt-body-left {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
245 text-align: left;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
246 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
247 table.dataTable tbody th.dt-body-center,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
248 table.dataTable tbody td.dt-body-center {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
249 text-align: center;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
250 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
251 table.dataTable tbody th.dt-body-right,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
252 table.dataTable tbody td.dt-body-right {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
253 text-align: right;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
254 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
255 table.dataTable tbody th.dt-body-justify,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
256 table.dataTable tbody td.dt-body-justify {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
257 text-align: justify;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
258 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
259 table.dataTable tbody th.dt-body-nowrap,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
260 table.dataTable tbody td.dt-body-nowrap {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
261 white-space: nowrap;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
262 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
263
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
264 table.dataTable,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
265 table.dataTable th,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
266 table.dataTable td {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
267 -webkit-box-sizing: content-box;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
268 -moz-box-sizing: content-box;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
269 box-sizing: content-box;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
270 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
271
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
272 /*
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
273 * Control feature layout
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
274 */
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
275 .dataTables_wrapper {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
276 position: relative;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
277 clear: both;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
278 *zoom: 1;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
279 zoom: 1;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
280 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
281 .dataTables_wrapper .dataTables_length {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
282 float: left;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
283 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
284 .dataTables_wrapper .dataTables_filter {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
285 float: right;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
286 text-align: right;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
287 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
288 .dataTables_wrapper .dataTables_filter input {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
289 margin-left: 0.5em;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
290 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
291 .dataTables_wrapper .dataTables_info {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
292 clear: both;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
293 float: left;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
294 padding-top: 0.755em;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
295 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
296 .dataTables_wrapper .dataTables_paginate {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
297 float: right;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
298 text-align: right;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
299 padding-top: 0.25em;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
300 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
301 .dataTables_wrapper .dataTables_paginate .paginate_button {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
302 box-sizing: border-box;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
303 display: inline-block;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
304 min-width: 1.5em;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
305 padding: 0.5em 1em;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
306 margin-left: 2px;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
307 text-align: center;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
308 text-decoration: none !important;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
309 cursor: pointer;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
310 *cursor: hand;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
311 color: #333 !important;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
312 border: 1px solid transparent;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
313 border-radius: 2px;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
314 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
315 .dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
316 color: #333 !important;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
317 border: 1px solid #979797;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
318 background-color: white;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
319 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, #dcdcdc));
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
320 /* Chrome,Safari4+ */
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
321 background: -webkit-linear-gradient(top, white 0%, #dcdcdc 100%);
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
322 /* Chrome10+,Safari5.1+ */
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
323 background: -moz-linear-gradient(top, white 0%, #dcdcdc 100%);
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
324 /* FF3.6+ */
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
325 background: -ms-linear-gradient(top, white 0%, #dcdcdc 100%);
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
326 /* IE10+ */
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
327 background: -o-linear-gradient(top, white 0%, #dcdcdc 100%);
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
328 /* Opera 11.10+ */
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
329 background: linear-gradient(to bottom, white 0%, #dcdcdc 100%);
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
330 /* W3C */
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
331 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
332 .dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
333 cursor: default;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
334 color: #666 !important;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
335 border: 1px solid transparent;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
336 background: transparent;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
337 box-shadow: none;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
338 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
339 .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
340 color: white !important;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
341 border: 1px solid #111;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
342 background-color: #585858;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
343 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111));
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
344 /* Chrome,Safari4+ */
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
345 background: -webkit-linear-gradient(top, #585858 0%, #111 100%);
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
346 /* Chrome10+,Safari5.1+ */
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
347 background: -moz-linear-gradient(top, #585858 0%, #111 100%);
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
348 /* FF3.6+ */
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
349 background: -ms-linear-gradient(top, #585858 0%, #111 100%);
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
350 /* IE10+ */
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
351 background: -o-linear-gradient(top, #585858 0%, #111 100%);
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
352 /* Opera 11.10+ */
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
353 background: linear-gradient(to bottom, #585858 0%, #111 100%);
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
354 /* W3C */
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
355 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
356 .dataTables_wrapper .dataTables_paginate .paginate_button:active {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
357 outline: none;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
358 background-color: #2b2b2b;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
359 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c));
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
360 /* Chrome,Safari4+ */
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
361 background: -webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
362 /* Chrome10+,Safari5.1+ */
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
363 background: -moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
364 /* FF3.6+ */
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
365 background: -ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
366 /* IE10+ */
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
367 background: -o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
368 /* Opera 11.10+ */
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
369 background: linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
370 /* W3C */
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
371 box-shadow: inset 0 0 3px #111;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
372 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
373 .dataTables_wrapper .dataTables_paginate .ellipsis {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
374 padding: 0 1em;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
375 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
376 .dataTables_wrapper .dataTables_processing {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
377 position: absolute;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
378 top: 50%;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
379 left: 50%;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
380 width: 100%;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
381 height: 40px;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
382 margin-left: -50%;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
383 margin-top: -25px;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
384 padding-top: 20px;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
385 text-align: center;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
386 font-size: 1.2em;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
387 background-color: white;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
388 background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, 0.9)), color-stop(75%, rgba(255, 255, 255, 0.9)), color-stop(100%, rgba(255, 255, 255, 0)));
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
389 background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
390 background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
391 background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
392 background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
393 background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
394 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
395 .dataTables_wrapper .dataTables_length,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
396 .dataTables_wrapper .dataTables_filter,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
397 .dataTables_wrapper .dataTables_info,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
398 .dataTables_wrapper .dataTables_processing,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
399 .dataTables_wrapper .dataTables_paginate {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
400 color: #333;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
401 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
402 .dataTables_wrapper .dataTables_scroll {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
403 clear: both;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
404 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
405 .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
406 *margin-top: -1px;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
407 -webkit-overflow-scrolling: touch;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
408 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
409 .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody th > div.dataTables_sizing,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
410 .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody td > div.dataTables_sizing {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
411 height: 0;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
412 overflow: hidden;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
413 margin: 0 !important;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
414 padding: 0 !important;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
415 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
416 .dataTables_wrapper.no-footer .dataTables_scrollBody {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
417 border-bottom: 1px solid #111;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
418 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
419 .dataTables_wrapper.no-footer div.dataTables_scrollHead table,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
420 .dataTables_wrapper.no-footer div.dataTables_scrollBody table {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
421 border-bottom: none;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
422 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
423 .dataTables_wrapper:after {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
424 visibility: hidden;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
425 display: block;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
426 content: "";
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
427 clear: both;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
428 height: 0;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
429 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
430
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
431 @media screen and (max-width: 767px) {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
432 .dataTables_wrapper .dataTables_info,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
433 .dataTables_wrapper .dataTables_paginate {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
434 float: none;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
435 text-align: center;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
436 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
437 .dataTables_wrapper .dataTables_paginate {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
438 margin-top: 0.5em;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
439 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
440 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
441 @media screen and (max-width: 640px) {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
442 .dataTables_wrapper .dataTables_length,
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
443 .dataTables_wrapper .dataTables_filter {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
444 float: none;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
445 text-align: center;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
446 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
447 .dataTables_wrapper .dataTables_filter {
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
448 margin-top: 0.5em;
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
449 }
42076db43d42 Fixed auto resizing plus various other minor bugs
saskia-hiltemann
parents:
diff changeset
450 }