Subversion-Projekte lars-tiefland.faltradxxs.de

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
2 lars 1
div.dataTables_length label {
2
	font-weight: normal;
3
	text-align: left;
4
	white-space: nowrap;
5
}
6
 
7
div.dataTables_length select {
8
	width: 75px;
9
	display: inline-block;
10
}
11
 
12
div.dataTables_filter {
13
	text-align: right;
14
}
15
 
16
div.dataTables_filter label {
17
	font-weight: normal;
18
	white-space: nowrap;
19
	text-align: left;
20
}
21
 
22
div.dataTables_filter input {
23
	margin-left: 0.5em;
24
	display: inline-block;
25
}
26
 
27
div.dataTables_info {
28
	padding-top: 8px;
29
	white-space: nowrap;
30
}
31
 
32
div.dataTables_paginate {
33
	margin: 0;
34
	white-space: nowrap;
35
	text-align: right;
36
}
37
 
38
div.dataTables_paginate ul.pagination {
39
	margin: 2px 0;
40
	white-space: nowrap;
41
}
42
 
43
@media screen and (max-width: 767px) {
44
	div.dataTables_length,
45
	div.dataTables_filter,
46
	div.dataTables_info,
47
	div.dataTables_paginate {
48
		text-align: center;
49
	}
50
}
51
 
52
 
53
table.dataTable td,
54
table.dataTable th {
55
	-webkit-box-sizing: content-box;
56
	-moz-box-sizing: content-box;
57
	box-sizing: content-box;
58
}
59
 
60
 
61
table.dataTable {
62
	clear: both;
63
	margin-top: 6px !important;
64
	margin-bottom: 6px !important;
65
	max-width: none !important;
66
}
67
 
68
table.dataTable thead .sorting,
69
table.dataTable thead .sorting_asc,
70
table.dataTable thead .sorting_desc,
71
table.dataTable thead .sorting_asc_disabled,
72
table.dataTable thead .sorting_desc_disabled {
73
	cursor: pointer;
74
	position: relative;
75
}
76
 
77
table.dataTable thead .sorting:after,
78
table.dataTable thead .sorting_asc:after,
79
table.dataTable thead .sorting_desc:after {
80
	position: absolute;
81
	top: 8px;
82
	right: 8px;
83
	display: block;
84
	font-family: 'Glyphicons Halflings';
85
	opacity: 0.5;
86
}
87
table.dataTable thead .sorting:after {
88
	opacity: 0.2;
89
	content: "\e150"; /* sort */
90
}
91
table.dataTable thead .sorting_asc:after {
92
	content: "\e155"; /* sort-by-attributes */
93
}
94
table.dataTable thead .sorting_desc:after {
95
	content: "\e156"; /* sort-by-attributes-alt */
96
}
97
div.dataTables_scrollBody table.dataTable thead .sorting:after,
98
div.dataTables_scrollBody table.dataTable thead .sorting_asc:after,
99
div.dataTables_scrollBody table.dataTable thead .sorting_desc:after {
100
	display: none;
101
}
102
 
103
table.dataTable thead .sorting_asc_disabled:after,
104
table.dataTable thead .sorting_desc_disabled:after {
105
	color: #eee;
106
}
107
 
108
table.dataTable thead > tr > th {
109
	padding-left: 8px;
110
	padding-right: 30px;
111
}
112
 
113
table.dataTable th:active {
114
	outline: none;
115
}
116
 
117
/* Scrolling */
118
div.dataTables_scrollHead table {
119
	margin-bottom: 0 !important;
120
	border-bottom-left-radius: 0;
121
	border-bottom-right-radius: 0;
122
}
123
 
124
div.dataTables_scrollHead table thead tr:last-child th:first-child,
125
div.dataTables_scrollHead table thead tr:last-child td:first-child {
126
	border-bottom-left-radius: 0 !important;
127
	border-bottom-right-radius: 0 !important;
128
}
129
 
130
div.dataTables_scrollBody table {
131
	border-top: none;
132
	margin-top: 0 !important;
133
	margin-bottom: 0 !important;
134
}
135
 
136
div.dataTables_scrollBody tbody tr:first-child th,
137
div.dataTables_scrollBody tbody tr:first-child td {
138
	border-top: none;
139
}
140
 
141
div.dataTables_scrollFoot table {
142
	margin-top: 0 !important;
143
	border-top: none;
144
}
145
 
146
/* Frustratingly the border-collapse:collapse used by Bootstrap makes the column
147
   width calculations when using scrolling impossible to align columns. We have
148
   to use separate
149
 */
150
table.table-bordered.dataTable {
151
	border-collapse: separate !important;
152
}
153
table.table-bordered thead th,
154
table.table-bordered thead td {
155
	border-left-width: 0;
156
	border-top-width: 0;
157
}
158
table.table-bordered tbody th,
159
table.table-bordered tbody td {
160
	border-left-width: 0;
161
	border-bottom-width: 0;
162
}
163
table.table-bordered th:last-child,
164
table.table-bordered td:last-child {
165
	border-right-width: 0;
166
}
167
div.dataTables_scrollHead table.table-bordered {
168
	border-bottom-width: 0;
169
}
170
 
171
 
172
 
173
 
174
/*
175
 * TableTools styles
176
 */
177
.table.dataTable tbody tr.active td,
178
.table.dataTable tbody tr.active th {
179
	background-color: #08C;
180
	color: white;
181
}
182
 
183
.table.dataTable tbody tr.active:hover td,
184
.table.dataTable tbody tr.active:hover th {
185
	background-color: #0075b0 !important;
186
}
187
 
188
.table.dataTable tbody tr.active th > a,
189
.table.dataTable tbody tr.active td > a {
190
	color: white;
191
}
192
 
193
.table-striped.dataTable tbody tr.active:nth-child(odd) td,
194
.table-striped.dataTable tbody tr.active:nth-child(odd) th {
195
	background-color: #017ebc;
196
}
197
 
198
table.DTTT_selectable tbody tr {
199
	cursor: pointer;
200
}
201
 
202
div.DTTT .btn:hover {
203
	text-decoration: none !important;
204
}
205
 
206
ul.DTTT_dropdown.dropdown-menu {
207
  z-index: 2003;
208
}
209
 
210
ul.DTTT_dropdown.dropdown-menu a {
211
	color: #333 !important; /* needed only when demo_page.css is included */
212
}
213
 
214
ul.DTTT_dropdown.dropdown-menu li {
215
	position: relative;
216
}
217
 
218
ul.DTTT_dropdown.dropdown-menu li:hover a {
219
	background-color: #0088cc;
220
	color: white !important;
221
}
222
 
223
div.DTTT_collection_background {
224
	z-index: 2002;
225
}
226
 
227
/* TableTools information display */
228
div.DTTT_print_info {
229
	position: fixed;
230
	top: 50%;
231
	left: 50%;
232
	width: 400px;
233
	height: 150px;
234
	margin-left: -200px;
235
	margin-top: -75px;
236
	text-align: center;
237
	color: #333;
238
	padding: 10px 30px;
239
	opacity: 0.95;
240
 
241
	background-color: white;
242
	border: 1px solid rgba(0, 0, 0, 0.2);
243
	border-radius: 6px;
244
 
245
	-webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
246
	        box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
247
}
248
 
249
div.DTTT_print_info h6 {
250
	font-weight: normal;
251
	font-size: 28px;
252
	line-height: 28px;
253
	margin: 1em;
254
}
255
 
256
div.DTTT_print_info p {
257
	font-size: 14px;
258
	line-height: 20px;
259
}
260
 
261
div.dataTables_processing {
262
    position: absolute;
263
    top: 50%;
264
    left: 50%;
265
    width: 100%;
266
    height: 60px;
267
    margin-left: -50%;
268
    margin-top: -25px;
269
    padding-top: 20px;
270
    padding-bottom: 20px;
271
    text-align: center;
272
    font-size: 1.2em;
273
    background-color: white;
274
    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)));
275
    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%);
276
    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%);
277
    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%);
278
    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%);
279
    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%);
280
}
281
 
282
 
283
 
284
/*
285
 * FixedColumns styles
286
 */
287
div.DTFC_LeftHeadWrapper table,
288
div.DTFC_LeftFootWrapper table,
289
div.DTFC_RightHeadWrapper table,
290
div.DTFC_RightFootWrapper table,
291
table.DTFC_Cloned tr.even {
292
    background-color: white;
293
    margin-bottom: 0;
294
}
295
 
296
div.DTFC_RightHeadWrapper table ,
297
div.DTFC_LeftHeadWrapper table {
298
	border-bottom: none !important;
299
    margin-bottom: 0 !important;
300
    border-top-right-radius: 0 !important;
301
    border-bottom-left-radius: 0 !important;
302
    border-bottom-right-radius: 0 !important;
303
}
304
 
305
div.DTFC_RightHeadWrapper table thead tr:last-child th:first-child,
306
div.DTFC_RightHeadWrapper table thead tr:last-child td:first-child,
307
div.DTFC_LeftHeadWrapper table thead tr:last-child th:first-child,
308
div.DTFC_LeftHeadWrapper table thead tr:last-child td:first-child {
309
    border-bottom-left-radius: 0 !important;
310
    border-bottom-right-radius: 0 !important;
311
}
312
 
313
div.DTFC_RightBodyWrapper table,
314
div.DTFC_LeftBodyWrapper table {
315
    border-top: none;
316
    margin: 0 !important;
317
}
318
 
319
div.DTFC_RightBodyWrapper tbody tr:first-child th,
320
div.DTFC_RightBodyWrapper tbody tr:first-child td,
321
div.DTFC_LeftBodyWrapper tbody tr:first-child th,
322
div.DTFC_LeftBodyWrapper tbody tr:first-child td {
323
    border-top: none;
324
}
325
 
326
div.DTFC_RightFootWrapper table,
327
div.DTFC_LeftFootWrapper table {
328
    border-top: none;
329
    margin-top: 0 !important;
330
}
331
 
332
 
333
/*
334
 * FixedHeader styles
335
 */
336
div.FixedHeader_Cloned table {
337
	margin: 0 !important
338
}
339