Subversion-Projekte lars-tiefland.faltradxxs.de

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
2 lars 1
 
2
/*
3
 * Namespace: DTS (DataTables Scroller)
4
 */
5
 
6
div.DTS tbody th,
7
div.DTS tbody td {
8
	white-space: nowrap;
9
}
10
 
11
div.DTS tbody tr.even {
12
	background-color: white;
13
}
14
 
15
div.DTS div.DTS_Loading {
16
	position: absolute;
17
	top: 50%;
18
	left: 50%;
19
	width: 200px;
20
	height: 20px;
21
	margin-top: -20px;
22
	margin-left: -100px;
23
	z-index: 1;
24
 
25
	border: 1px solid #999;
26
	padding: 20px 0;
27
	text-align: center;
28
	background-color: white;
29
	background-color: rgba(255, 255, 255, 0.5);
30
}
31
 
32
div.DTS div.dataTables_scrollHead,
33
div.DTS div.dataTables_scrollFoot {
34
	background-color: white;
35
}
36
 
37
div.DTS div.dataTables_scrollBody {
38
	z-index: 2;
39
}
40
 
41
div.DTS div.dataTables_scroll {
42
	background: url('../images/loading-background.png') repeat 0 0;
43
}
44