Project

General

Profile

1
table.dataTable {
2
  clear: both;
3
  margin-top: 6px !important;
4
  margin-bottom: 6px !important;
5
  max-width: none !important;
6
}
7
table.dataTable td,
8
table.dataTable th {
9
  -webkit-box-sizing: content-box;
10
  -moz-box-sizing: content-box;
11
  box-sizing: content-box;
12
}
13
table.dataTable.nowrap th,
14
table.dataTable.nowrap td {
15
  white-space: nowrap;
16
}
17

    
18
div.dataTables_wrapper div.dataTables_length label {
19
  font-weight: normal;
20
  text-align: left;
21
  white-space: nowrap;
22
}
23
div.dataTables_wrapper div.dataTables_length select {
24
  width: 75px;
25
  display: inline-block;
26
}
27
div.dataTables_wrapper div.dataTables_filter {
28
  text-align: right;
29
}
30
div.dataTables_wrapper div.dataTables_filter label {
31
  font-weight: normal;
32
  white-space: nowrap;
33
  text-align: left;
34
}
35
div.dataTables_wrapper div.dataTables_filter input {
36
  margin-left: 0.5em;
37
  display: inline-block;
38
  width: auto;
39
}
40
div.dataTables_wrapper div.dataTables_info {
41
  padding-top: 8px;
42
  white-space: nowrap;
43
}
44
div.dataTables_wrapper div.dataTables_paginate {
45
  margin: 0;
46
  white-space: nowrap;
47
  text-align: right;
48
}
49
div.dataTables_wrapper div.dataTables_paginate ul.pagination {
50
  margin: 2px 0;
51
  white-space: nowrap;
52
}
53

    
54
table.dataTable thead > tr > th,
55
table.dataTable thead > tr > td {
56
  padding-right: 30px;
57
}
58
table.dataTable thead > tr > th:active,
59
table.dataTable thead > tr > td:active {
60
  outline: none;
61
}
62
table.dataTable thead .sorting,
63
table.dataTable thead .sorting_asc,
64
table.dataTable thead .sorting_desc,
65
table.dataTable thead .sorting_asc_disabled,
66
table.dataTable thead .sorting_desc_disabled {
67
  cursor: pointer;
68
  position: relative;
69
}
70
table.dataTable thead .sorting:after,
71
table.dataTable thead .sorting_asc:after,
72
table.dataTable thead .sorting_desc:after,
73
table.dataTable thead .sorting_asc_disabled:after,
74
table.dataTable thead .sorting_desc_disabled:after {
75
  position: absolute;
76
  bottom: 8px;
77
  right: 8px;
78
  display: block;
79
  font-family: 'Glyphicons Halflings';
80
  opacity: 0.5;
81
}
82
table.dataTable thead .sorting:after {
83
  opacity: 0.2;
84
  content: "\e150";
85
  /* sort */
86
}
87
table.dataTable thead .sorting_asc:after {
88
  content: "\e155";
89
  /* sort-by-attributes */
90
}
91
table.dataTable thead .sorting_desc:after {
92
  content: "\e156";
93
  /* sort-by-attributes-alt */
94
}
95
table.dataTable thead .sorting_asc_disabled:after,
96
table.dataTable thead .sorting_desc_disabled:after {
97
  color: #eee;
98
}
99

    
100
div.dataTables_scrollHead table.dataTable {
101
  margin-bottom: 0 !important;
102
}
103

    
104
div.dataTables_scrollBody table {
105
  border-top: none;
106
  margin-top: 0 !important;
107
  margin-bottom: 0 !important;
108
}
109
div.dataTables_scrollBody table thead .sorting:after,
110
div.dataTables_scrollBody table thead .sorting_asc:after,
111
div.dataTables_scrollBody table thead .sorting_desc:after {
112
  display: none;
113
}
114
div.dataTables_scrollBody table tbody tr:first-child th,
115
div.dataTables_scrollBody table tbody tr:first-child td {
116
  border-top: none;
117
}
118

    
119
div.dataTables_scrollFoot table {
120
  margin-top: 0 !important;
121
  border-top: none;
122
}
123

    
124
@media screen and (max-width: 767px) {
125
  div.dataTables_wrapper div.dataTables_length,
126
  div.dataTables_wrapper div.dataTables_filter,
127
  div.dataTables_wrapper div.dataTables_info,
128
  div.dataTables_wrapper div.dataTables_paginate {
129
    text-align: center;
130
  }
131
}
132
table.dataTable.table-condensed > thead > tr > th {
133
  padding-right: 20px;
134
}
135
table.dataTable.table-condensed .sorting:after,
136
table.dataTable.table-condensed .sorting_asc:after,
137
table.dataTable.table-condensed .sorting_desc:after {
138
  top: 6px;
139
  right: 6px;
140
}
141

    
142
table.table-bordered.dataTable {
143
  border-collapse: separate !important;
144
}
145
table.table-bordered.dataTable th,
146
table.table-bordered.dataTable td {
147
  border-left-width: 0;
148
}
149
table.table-bordered.dataTable th:last-child, table.table-bordered.dataTable th:last-child,
150
table.table-bordered.dataTable td:last-child,
151
table.table-bordered.dataTable td:last-child {
152
  border-right-width: 0;
153
}
154
table.table-bordered.dataTable tbody th,
155
table.table-bordered.dataTable tbody td {
156
  border-bottom-width: 0;
157
}
158

    
159
div.dataTables_scrollHead table.table-bordered {
160
  border-bottom-width: 0;
161
}
(1-1/3)