style.datatables.css
1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
@import url('dataTables.bootstrap.css');
.dataTables_length, .dataTables_filter {
margin-top: 8px;
}
div.dataTables_length label {
margin-top: 3px;
margin-bottom: 5px !important;
}
.dataTables_length .form-control,
.dataTables_filter .form-control {
margin-left: 5px;
vertical-align: baseline;
}
.table.dataTable thead .sorting_asc {
background-image: url('../images/datatables/sort_asc.png');
}
.table.dataTable thead .sorting_desc {
background-image: url('../images/datatables/sort_desc.png');
}
.table.dataTable thead > tr > th {
padding-left: 8px;
}
td.details-control {
cursor: pointer;
}
td.details-control:before {
font-family: 'FontAwesome';
content: '\f105';
display: block;
text-align: center;
font-size: 16px;
}
tr.shown td.details-control:before {
font-family: 'FontAwesome';
content: '\f107';
display: block;
text-align: center;
font-size: 16px;
}
.dataTables_wrapper table > tbody > tr > td table {
width: 500px;
}
/* For table length select using select2 */
.select2-container .select2-choice {
padding-top: 2px;
padding-bottom: 2px;
}
.select2-container .select2-choice .select2-arrow {
top: -1px;
}