annotate DataTables-1.9.4/media/css/demo_table.css @ 7:0f2b740536fb draft

Uploaded
author saskia-hiltemann
date Mon, 21 Aug 2017 09:16:07 -0400
parents ac5f9272033b
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
1 /*
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
2 * File: demo_table.css
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
3 * CVS: $Id$
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
4 * Description: CSS descriptions for DataTables demo pages
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
5 * Author: Allan Jardine
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
6 * Created: Tue May 12 06:47:22 BST 2009
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
7 * Modified: $Date$ by $Author$
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
8 * Language: CSS
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
9 * Project: DataTables
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
10 *
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
11 * Copyright 2009 Allan Jardine. All Rights Reserved.
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
12 *
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
13 * ***************************************************************************
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
14 * DESCRIPTION
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
15 *
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
16 * The styles given here are suitable for the demos that are used with the standard DataTables
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
17 * distribution (see www.datatables.net). You will most likely wish to modify these styles to
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
18 * meet the layout requirements of your site.
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
19 *
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
20 * Common issues:
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
21 * 'full_numbers' pagination - I use an extra selector on the body tag to ensure that there is
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
22 * no conflict between the two pagination types. If you want to use full_numbers pagination
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
23 * ensure that you either have "example_alt_pagination" as a body class name, or better yet,
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
24 * modify that selector.
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
25 * Note that the path used for Images is relative. All images are by default located in
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
26 * ../images/ - relative to this CSS file.
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
27 */
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
28
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
29 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
30 * DataTables features
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
31 */
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
32
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
33 .dataTables_wrapper {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
34 position: relative;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
35 clear: both;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
36 zoom: 1; /* Feeling sorry for IE */
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
37 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
38
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
39 .dataTables_processing {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
40 position: absolute;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
41 top: 50%;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
42 left: 50%;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
43 width: 250px;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
44 height: 30px;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
45 margin-left: -125px;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
46 margin-top: -15px;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
47 padding: 14px 0 2px 0;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
48 border: 1px solid #ddd;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
49 text-align: center;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
50 color: #999;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
51 font-size: 14px;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
52 background-color: white;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
53 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
54
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
55 .dataTables_length {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
56 width: 40%;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
57 float: left;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
58 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
59
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
60 .dataTables_filter {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
61 width: 50%;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
62 float: right;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
63 text-align: right;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
64 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
65
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
66 .dataTables_info {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
67 width: 60%;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
68 float: left;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
69 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
70
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
71 .dataTables_paginate {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
72 float: right;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
73 text-align: right;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
74 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
75
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
76 /* Pagination nested */
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
77 .paginate_disabled_previous, .paginate_enabled_previous,
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
78 .paginate_disabled_next, .paginate_enabled_next {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
79 height: 19px;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
80 float: left;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
81 cursor: pointer;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
82 *cursor: hand;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
83 color: #111 !important;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
84 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
85 .paginate_disabled_previous:hover, .paginate_enabled_previous:hover,
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
86 .paginate_disabled_next:hover, .paginate_enabled_next:hover {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
87 text-decoration: none !important;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
88 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
89 .paginate_disabled_previous:active, .paginate_enabled_previous:active,
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
90 .paginate_disabled_next:active, .paginate_enabled_next:active {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
91 outline: none;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
92 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
93
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
94 .paginate_disabled_previous,
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
95 .paginate_disabled_next {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
96 color: #666 !important;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
97 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
98 .paginate_disabled_previous, .paginate_enabled_previous {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
99 padding-left: 23px;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
100 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
101 .paginate_disabled_next, .paginate_enabled_next {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
102 padding-right: 23px;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
103 margin-left: 10px;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
104 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
105
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
106 .paginate_disabled_previous {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
107 background: url('../images/back_disabled.png') no-repeat top left;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
108 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
109
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
110 .paginate_enabled_previous {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
111 background: url('../images/back_enabled.png') no-repeat top left;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
112 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
113 .paginate_enabled_previous:hover {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
114 background: url('../images/back_enabled_hover.png') no-repeat top left;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
115 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
116
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
117 .paginate_disabled_next {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
118 background: url('../images/forward_disabled.png') no-repeat top right;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
119 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
120
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
121 .paginate_enabled_next {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
122 background: url('../images/forward_enabled.png') no-repeat top right;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
123 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
124 .paginate_enabled_next:hover {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
125 background: url('../images/forward_enabled_hover.png') no-repeat top right;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
126 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
127
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
128
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
129
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
130 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
131 * DataTables display
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
132 */
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
133 table.display {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
134 margin: 0 auto;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
135 clear: both;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
136 width: 100%;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
137
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
138 /* Note Firefox 3.5 and before have a bug with border-collapse
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
139 * ( https://bugzilla.mozilla.org/show%5Fbug.cgi?id=155955 )
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
140 * border-spacing: 0; is one possible option. Conditional-css.com is
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
141 * useful for this kind of thing
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
142 *
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
143 * Further note IE 6/7 has problems when calculating widths with border width.
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
144 * It subtracts one px relative to the other browsers from the first column, and
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
145 * adds one to the end...
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
146 *
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
147 * If you want that effect I'd suggest setting a border-top/left on th/td's and
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
148 * then filling in the gaps with other borders.
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
149 */
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
150 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
151
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
152 table.display thead th {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
153 padding: 3px 18px 3px 10px;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
154 border-bottom: 1px solid black;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
155 font-weight: bold;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
156 cursor: pointer;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
157 * cursor: hand;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
158 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
159
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
160 table.display tfoot th {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
161 padding: 3px 18px 3px 10px;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
162 border-top: 1px solid black;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
163 font-weight: bold;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
164 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
165
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
166 table.display tr.heading2 td {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
167 border-bottom: 1px solid #aaa;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
168 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
169
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
170 table.display td {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
171 padding: 3px 10px;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
172 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
173
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
174 table.display td.center {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
175 text-align: center;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
176 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
177
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
178
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
179
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
180 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
181 * DataTables sorting
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
182 */
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
183
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
184 .sorting_asc {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
185 background: url('../images/sort_asc.png') no-repeat center right;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
186 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
187
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
188 .sorting_desc {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
189 background: url('../images/sort_desc.png') no-repeat center right;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
190 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
191
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
192 .sorting {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
193 background: url('../images/sort_both.png') no-repeat center right;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
194 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
195
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
196 .sorting_asc_disabled {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
197 background: url('../images/sort_asc_disabled.png') no-repeat center right;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
198 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
199
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
200 .sorting_desc_disabled {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
201 background: url('../images/sort_desc_disabled.png') no-repeat center right;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
202 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
203
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
204 table.display thead th:active,
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
205 table.display thead td:active {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
206 outline: none;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
207 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
208
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
209
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
210
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
211
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
212 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
213 * DataTables row classes
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
214 */
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
215 table.display tr.odd.gradeA {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
216 background-color: #ddffdd;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
217 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
218
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
219 table.display tr.even.gradeA {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
220 background-color: #eeffee;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
221 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
222
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
223 table.display tr.odd.gradeC {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
224 background-color: #ddddff;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
225 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
226
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
227 table.display tr.even.gradeC {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
228 background-color: #eeeeff;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
229 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
230
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
231 table.display tr.odd.gradeX {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
232 background-color: #ffdddd;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
233 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
234
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
235 table.display tr.even.gradeX {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
236 background-color: #ffeeee;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
237 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
238
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
239 table.display tr.odd.gradeU {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
240 background-color: #ddd;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
241 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
242
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
243 table.display tr.even.gradeU {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
244 background-color: #eee;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
245 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
246
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
247
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
248 tr.odd {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
249 background-color: #E2E4FF;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
250 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
251
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
252 tr.even {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
253 background-color: white;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
254 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
255
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
256
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
257
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
258
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
259
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
260 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
261 * Misc
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
262 */
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
263 .dataTables_scroll {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
264 clear: both;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
265 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
266
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
267 .dataTables_scrollBody {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
268 *margin-top: -1px;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
269 -webkit-overflow-scrolling: touch;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
270 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
271
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
272 .top, .bottom {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
273 padding: 15px;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
274 background-color: #F5F5F5;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
275 border: 1px solid #CCCCCC;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
276 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
277
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
278 .top .dataTables_info {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
279 float: none;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
280 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
281
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
282 .clear {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
283 clear: both;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
284 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
285
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
286 .dataTables_empty {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
287 text-align: center;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
288 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
289
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
290 tfoot input {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
291 margin: 0.5em 0;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
292 width: 100%;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
293 color: #444;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
294 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
295
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
296 tfoot input.search_init {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
297 color: #999;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
298 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
299
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
300 td.group {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
301 background-color: #d1cfd0;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
302 border-bottom: 2px solid #A19B9E;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
303 border-top: 2px solid #A19B9E;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
304 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
305
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
306 td.details {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
307 background-color: #d1cfd0;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
308 border: 2px solid #A19B9E;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
309 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
310
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
311
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
312 .example_alt_pagination div.dataTables_info {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
313 width: 40%;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
314 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
315
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
316 .paging_full_numbers {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
317 width: 400px;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
318 height: 22px;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
319 line-height: 22px;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
320 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
321
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
322 .paging_full_numbers a:active {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
323 outline: none
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
324 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
325
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
326 .paging_full_numbers a:hover {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
327 text-decoration: none;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
328 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
329
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
330 .paging_full_numbers a.paginate_button,
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
331 .paging_full_numbers a.paginate_active {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
332 border: 1px solid #aaa;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
333 -webkit-border-radius: 5px;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
334 -moz-border-radius: 5px;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
335 padding: 2px 5px;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
336 margin: 0 3px;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
337 cursor: pointer;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
338 *cursor: hand;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
339 color: #333 !important;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
340 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
341
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
342 .paging_full_numbers a.paginate_button {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
343 background-color: #ddd;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
344 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
345
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
346 .paging_full_numbers a.paginate_button:hover {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
347 background-color: #ccc;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
348 text-decoration: none !important;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
349 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
350
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
351 .paging_full_numbers a.paginate_active {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
352 background-color: #99B3FF;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
353 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
354
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
355 table.display tr.even.row_selected td {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
356 background-color: #B0BED9;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
357 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
358
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
359 table.display tr.odd.row_selected td {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
360 background-color: #9FAFD1;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
361 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
362
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
363
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
364 /*
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
365 * Sorting classes for columns
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
366 */
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
367 /* For the standard odd/even */
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
368 tr.odd td.sorting_1 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
369 background-color: #D3D6FF;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
370 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
371
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
372 tr.odd td.sorting_2 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
373 background-color: #DADCFF;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
374 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
375
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
376 tr.odd td.sorting_3 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
377 background-color: #E0E2FF;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
378 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
379
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
380 tr.even td.sorting_1 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
381 background-color: #EAEBFF;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
382 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
383
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
384 tr.even td.sorting_2 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
385 background-color: #F2F3FF;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
386 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
387
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
388 tr.even td.sorting_3 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
389 background-color: #F9F9FF;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
390 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
391
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
392
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
393 /* For the Conditional-CSS grading rows */
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
394 /*
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
395 Colour calculations (based off the main row colours)
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
396 Level 1:
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
397 dd > c4
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
398 ee > d5
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
399 Level 2:
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
400 dd > d1
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
401 ee > e2
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
402 */
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
403 tr.odd.gradeA td.sorting_1 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
404 background-color: #c4ffc4;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
405 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
406
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
407 tr.odd.gradeA td.sorting_2 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
408 background-color: #d1ffd1;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
409 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
410
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
411 tr.odd.gradeA td.sorting_3 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
412 background-color: #d1ffd1;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
413 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
414
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
415 tr.even.gradeA td.sorting_1 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
416 background-color: #d5ffd5;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
417 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
418
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
419 tr.even.gradeA td.sorting_2 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
420 background-color: #e2ffe2;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
421 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
422
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
423 tr.even.gradeA td.sorting_3 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
424 background-color: #e2ffe2;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
425 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
426
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
427 tr.odd.gradeC td.sorting_1 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
428 background-color: #c4c4ff;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
429 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
430
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
431 tr.odd.gradeC td.sorting_2 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
432 background-color: #d1d1ff;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
433 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
434
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
435 tr.odd.gradeC td.sorting_3 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
436 background-color: #d1d1ff;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
437 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
438
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
439 tr.even.gradeC td.sorting_1 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
440 background-color: #d5d5ff;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
441 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
442
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
443 tr.even.gradeC td.sorting_2 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
444 background-color: #e2e2ff;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
445 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
446
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
447 tr.even.gradeC td.sorting_3 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
448 background-color: #e2e2ff;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
449 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
450
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
451 tr.odd.gradeX td.sorting_1 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
452 background-color: #ffc4c4;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
453 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
454
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
455 tr.odd.gradeX td.sorting_2 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
456 background-color: #ffd1d1;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
457 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
458
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
459 tr.odd.gradeX td.sorting_3 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
460 background-color: #ffd1d1;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
461 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
462
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
463 tr.even.gradeX td.sorting_1 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
464 background-color: #ffd5d5;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
465 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
466
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
467 tr.even.gradeX td.sorting_2 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
468 background-color: #ffe2e2;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
469 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
470
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
471 tr.even.gradeX td.sorting_3 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
472 background-color: #ffe2e2;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
473 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
474
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
475 tr.odd.gradeU td.sorting_1 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
476 background-color: #c4c4c4;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
477 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
478
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
479 tr.odd.gradeU td.sorting_2 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
480 background-color: #d1d1d1;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
481 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
482
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
483 tr.odd.gradeU td.sorting_3 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
484 background-color: #d1d1d1;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
485 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
486
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
487 tr.even.gradeU td.sorting_1 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
488 background-color: #d5d5d5;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
489 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
490
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
491 tr.even.gradeU td.sorting_2 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
492 background-color: #e2e2e2;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
493 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
494
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
495 tr.even.gradeU td.sorting_3 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
496 background-color: #e2e2e2;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
497 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
498
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
499
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
500 /*
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
501 * Row highlighting example
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
502 */
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
503 .ex_highlight #example tbody tr.even:hover, #example tbody tr.even td.highlighted {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
504 background-color: #ECFFB3;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
505 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
506
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
507 .ex_highlight #example tbody tr.odd:hover, #example tbody tr.odd td.highlighted {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
508 background-color: #E6FF99;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
509 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
510
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
511 .ex_highlight_row #example tr.even:hover {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
512 background-color: #ECFFB3;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
513 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
514
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
515 .ex_highlight_row #example tr.even:hover td.sorting_1 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
516 background-color: #DDFF75;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
517 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
518
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
519 .ex_highlight_row #example tr.even:hover td.sorting_2 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
520 background-color: #E7FF9E;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
521 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
522
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
523 .ex_highlight_row #example tr.even:hover td.sorting_3 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
524 background-color: #E2FF89;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
525 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
526
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
527 .ex_highlight_row #example tr.odd:hover {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
528 background-color: #E6FF99;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
529 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
530
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
531 .ex_highlight_row #example tr.odd:hover td.sorting_1 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
532 background-color: #D6FF5C;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
533 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
534
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
535 .ex_highlight_row #example tr.odd:hover td.sorting_2 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
536 background-color: #E0FF84;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
537 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
538
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
539 .ex_highlight_row #example tr.odd:hover td.sorting_3 {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
540 background-color: #DBFF70;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
541 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
542
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
543
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
544 /*
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
545 * KeyTable
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
546 */
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
547 table.KeyTable td {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
548 border: 3px solid transparent;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
549 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
550
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
551 table.KeyTable td.focus {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
552 border: 3px solid #3366FF;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
553 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
554
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
555 table.display tr.gradeA {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
556 background-color: #eeffee;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
557 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
558
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
559 table.display tr.gradeC {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
560 background-color: #ddddff;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
561 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
562
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
563 table.display tr.gradeX {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
564 background-color: #ffdddd;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
565 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
566
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
567 table.display tr.gradeU {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
568 background-color: #ddd;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
569 }
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
570
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
571 div.box {
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
572 height: 100px;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
573 padding: 10px;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
574 overflow: auto;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
575 border: 1px solid #8080FF;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
576 background-color: #E5E5FF;
ac5f9272033b first upload
saskia-hiltemann
parents:
diff changeset
577 }