| 1 |
table.dataTable { |
| 2 |
width: 100%; |
| 3 |
margin: 0 auto; |
| 4 |
clear: both; |
| 5 |
border-collapse: separate; |
| 6 |
border-spacing: 0 |
| 7 |
} |
| 8 |
|
| 9 |
table.dataTable thead th,table.dataTable tfoot th { |
| 10 |
font-weight: bold |
| 11 |
} |
| 12 |
|
| 13 |
table.dataTable thead th,table.dataTable thead td { |
| 14 |
padding: 10px 18px; |
| 15 |
border-bottom: 1px solid #111111 |
| 16 |
} |
| 17 |
|
| 18 |
table.dataTable thead th:active,table.dataTable thead td:active { |
| 19 |
outline: none |
| 20 |
} |
| 21 |
|
| 22 |
table.dataTable tfoot th,table.dataTable tfoot td { |
| 23 |
padding: 10px 18px 6px 18px; |
| 24 |
border-top: 1px solid #111111 |
| 25 |
} |
| 26 |
|
| 27 |
table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc,table.dataTable thead .sorting_asc_disabled,table.dataTable thead .sorting_desc_disabled { |
| 28 |
cursor: pointer; |
| 29 |
*cursor: hand; |
| 30 |
background-repeat: no-repeat; |
| 31 |
background-position: center right |
| 32 |
} |
| 33 |
|
| 34 |
table.dataTable thead .sorting { |
| 35 |
background-image: url("../img/datatables/sort_both.png") |
| 36 |
} |
| 37 |
|
| 38 |
table.dataTable thead .sorting_asc { |
| 39 |
background-image: url("../img/datatables/sort_asc.png") |
| 40 |
} |
| 41 |
|
| 42 |
table.dataTable thead .sorting_desc { |
| 43 |
background-image: url("../img/datatables/sort_desc.png") |
| 44 |
} |
| 45 |
|
| 46 |
table.dataTable thead .sorting_asc_disabled { |
| 47 |
background-image: url("../img/datatables/sort_asc_disabled.png") |
| 48 |
} |
| 49 |
|
| 50 |
table.dataTable thead .sorting_desc_disabled { |
| 51 |
background-image: url("../img/datatables/sort_desc_disabled.png") |
| 52 |
} |
| 53 |
|
| 54 |
table.dataTable tbody tr { |
| 55 |
background-color: white |
| 56 |
} |
| 57 |
|
| 58 |
table.dataTable tbody tr.selected { |
| 59 |
background-color: #b0bed9 |
| 60 |
} |
| 61 |
|
| 62 |
table.dataTable tbody th,table.dataTable tbody td { |
| 63 |
padding: 8px 10px |
| 64 |
} |
| 65 |
|
| 66 |
table.dataTable.row-border tbody th,table.dataTable.row-border tbody td,table.dataTable.display tbody th,table.dataTable.display tbody td { |
| 67 |
border-top: 1px solid #dddddd |
| 68 |
} |
| 69 |
|
| 70 |
table.dataTable.row-border tbody tr:first-child th,table.dataTable.row-border tbody tr:first-child td,table.dataTable.display tbody tr:first-child th,table.dataTable.display tbody tr:first-child td { |
| 71 |
border-top: none |
| 72 |
} |
| 73 |
|
| 74 |
table.dataTable.cell-border tbody th,table.dataTable.cell-border tbody td { |
| 75 |
border-top: 1px solid #dddddd; |
| 76 |
border-right: 1px solid #dddddd |
| 77 |
} |
| 78 |
|
| 79 |
table.dataTable.cell-border tbody tr th:first-child,table.dataTable.cell-border tbody tr td:first-child { |
| 80 |
border-left: 1px solid #dddddd |
| 81 |
} |
| 82 |
|
| 83 |
table.dataTable.cell-border tbody tr:first-child th,table.dataTable.cell-border tbody tr:first-child td { |
| 84 |
border-top: none |
| 85 |
} |
| 86 |
|
| 87 |
table.dataTable.stripe tbody tr.odd,table.dataTable.display tbody tr.odd { |
| 88 |
background-color: #f9f9f9 |
| 89 |
} |
| 90 |
|
| 91 |
table.dataTable.stripe tbody tr.odd.selected,table.dataTable.display tbody tr.odd.selected { |
| 92 |
background-color: #abb9d3 |
| 93 |
} |
| 94 |
|
| 95 |
table.dataTable.hover tbody tr:hover,table.dataTable.display tbody tr:hover { |
| 96 |
background-color: whitesmoke |
| 97 |
} |
| 98 |
|
| 99 |
table.dataTable.hover tbody tr:hover.selected,table.dataTable.display tbody tr:hover.selected { |
| 100 |
background-color: #a9b7d1 |
| 101 |
} |
| 102 |
|
| 103 |
table.dataTable.order-column tbody tr>.sorting_1,table.dataTable.order-column tbody tr>.sorting_2,table.dataTable.order-column tbody tr>.sorting_3,table.dataTable.display tbody tr>.sorting_1,table.dataTable.display tbody tr>.sorting_2,table.dataTable.display tbody tr>.sorting_3 { |
| 104 |
background-color: #f9f9f9 |
| 105 |
} |
| 106 |
|
| 107 |
table.dataTable.order-column tbody tr.selected>.sorting_1,table.dataTable.order-column tbody tr.selected>.sorting_2,table.dataTable.order-column tbody tr.selected>.sorting_3,table.dataTable.display tbody tr.selected>.sorting_1,table.dataTable.display tbody tr.selected>.sorting_2,table.dataTable.display tbody tr.selected>.sorting_3 { |
| 108 |
background-color: #acbad4 |
| 109 |
} |
| 110 |
|
| 111 |
table.dataTable.display tbody tr.odd>.sorting_1,table.dataTable.order-column.stripe tbody tr.odd>.sorting_1 { |
| 112 |
background-color: #f1f1f1 |
| 113 |
} |
| 114 |
|
| 115 |
table.dataTable.display tbody tr.odd>.sorting_2,table.dataTable.order-column.stripe tbody tr.odd>.sorting_2 { |
| 116 |
background-color: #f3f3f3 |
| 117 |
} |
| 118 |
|
| 119 |
table.dataTable.display tbody tr.odd>.sorting_3,table.dataTable.order-column.stripe tbody tr.odd>.sorting_3 { |
| 120 |
background-color: whitesmoke |
| 121 |
} |
| 122 |
|
| 123 |
table.dataTable.display tbody tr.odd.selected>.sorting_1,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_1 { |
| 124 |
background-color: #a6b3cd |
| 125 |
} |
| 126 |
|
| 127 |
table.dataTable.display tbody tr.odd.selected>.sorting_2,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_2 { |
| 128 |
background-color: #a7b5ce |
| 129 |
} |
| 130 |
|
| 131 |
table.dataTable.display tbody tr.odd.selected>.sorting_3,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_3 { |
| 132 |
background-color: #a9b6d0 |
| 133 |
} |
| 134 |
|
| 135 |
table.dataTable.display tbody tr.even>.sorting_1,table.dataTable.order-column.stripe tbody tr.even>.sorting_1 { |
| 136 |
background-color: #f9f9f9 |
| 137 |
} |
| 138 |
|
| 139 |
table.dataTable.display tbody tr.even>.sorting_2,table.dataTable.order-column.stripe tbody tr.even>.sorting_2 { |
| 140 |
background-color: #fbfbfb |
| 141 |
} |
| 142 |
|
| 143 |
table.dataTable.display tbody tr.even>.sorting_3,table.dataTable.order-column.stripe tbody tr.even>.sorting_3 { |
| 144 |
background-color: #fdfdfd |
| 145 |
} |
| 146 |
|
| 147 |
table.dataTable.display tbody tr.even.selected>.sorting_1,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_1 { |
| 148 |
background-color: #acbad4 |
| 149 |
} |
| 150 |
|
| 151 |
table.dataTable.display tbody tr.even.selected>.sorting_2,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_2 { |
| 152 |
background-color: #adbbd6 |
| 153 |
} |
| 154 |
|
| 155 |
table.dataTable.display tbody tr.even.selected>.sorting_3,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_3 { |
| 156 |
background-color: #afbdd8 |
| 157 |
} |
| 158 |
|
| 159 |
table.dataTable.display tbody tr:hover>.sorting_1,table.dataTable.order-column.hover tbody tr:hover>.sorting_1 { |
| 160 |
background-color: #eaeaea |
| 161 |
} |
| 162 |
|
| 163 |
table.dataTable.display tbody tr:hover>.sorting_2,table.dataTable.order-column.hover tbody tr:hover>.sorting_2 { |
| 164 |
background-color: #ebebeb |
| 165 |
} |
| 166 |
|
| 167 |
table.dataTable.display tbody tr:hover>.sorting_3,table.dataTable.order-column.hover tbody tr:hover>.sorting_3 { |
| 168 |
background-color: #eeeeee |
| 169 |
} |
| 170 |
|
| 171 |
table.dataTable.display tbody tr:hover.selected>.sorting_1,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_1 { |
| 172 |
background-color: #a1aec7 |
| 173 |
} |
| 174 |
|
| 175 |
table.dataTable.display tbody tr:hover.selected>.sorting_2,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_2 { |
| 176 |
background-color: #a2afc8 |
| 177 |
} |
| 178 |
|
| 179 |
table.dataTable.display tbody tr:hover.selected>.sorting_3,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_3 { |
| 180 |
background-color: #a4b2cb |
| 181 |
} |
| 182 |
|
| 183 |
table.dataTable.no-footer { |
| 184 |
border-bottom: 1px solid #111111 |
| 185 |
} |
| 186 |
|
| 187 |
table.dataTable.nowrap th,table.dataTable.nowrap td { |
| 188 |
white-space: nowrap |
| 189 |
} |
| 190 |
|
| 191 |
table.dataTable.compact thead th,table.dataTable.compact thead td { |
| 192 |
padding: 4px 17px 4px 4px |
| 193 |
} |
| 194 |
|
| 195 |
table.dataTable.compact tfoot th,table.dataTable.compact tfoot td { |
| 196 |
padding: 4px |
| 197 |
} |
| 198 |
|
| 199 |
table.dataTable.compact tbody th,table.dataTable.compact tbody td { |
| 200 |
padding: 4px |
| 201 |
} |
| 202 |
|
| 203 |
table.dataTable th.dt-left,table.dataTable td.dt-left { |
| 204 |
text-align: left |
| 205 |
} |
| 206 |
|
| 207 |
table.dataTable th.dt-center,table.dataTable td.dt-center,table.dataTable td.dataTables_empty { |
| 208 |
text-align: center |
| 209 |
} |
| 210 |
|
| 211 |
table.dataTable th.dt-right,table.dataTable td.dt-right { |
| 212 |
text-align: right |
| 213 |
} |
| 214 |
|
| 215 |
table.dataTable th.dt-justify,table.dataTable td.dt-justify { |
| 216 |
text-align: justify |
| 217 |
} |
| 218 |
|
| 219 |
table.dataTable th.dt-nowrap,table.dataTable td.dt-nowrap { |
| 220 |
white-space: nowrap |
| 221 |
} |
| 222 |
|
| 223 |
table.dataTable thead th.dt-head-left,table.dataTable thead td.dt-head-left,table.dataTable tfoot th.dt-head-left,table.dataTable tfoot td.dt-head-left { |
| 224 |
text-align: left |
| 225 |
} |
| 226 |
|
| 227 |
table.dataTable thead th.dt-head-center,table.dataTable thead td.dt-head-center,table.dataTable tfoot th.dt-head-center,table.dataTable tfoot td.dt-head-center { |
| 228 |
text-align: center |
| 229 |
} |
| 230 |
|
| 231 |
table.dataTable thead th.dt-head-right,table.dataTable thead td.dt-head-right,table.dataTable tfoot th.dt-head-right,table.dataTable tfoot td.dt-head-right { |
| 232 |
text-align: right |
| 233 |
} |
| 234 |
|
| 235 |
table.dataTable thead th.dt-head-justify,table.dataTable thead td.dt-head-justify,table.dataTable tfoot th.dt-head-justify,table.dataTable tfoot td.dt-head-justify { |
| 236 |
text-align: justify |
| 237 |
} |
| 238 |
|
| 239 |
table.dataTable thead th.dt-head-nowrap,table.dataTable thead td.dt-head-nowrap,table.dataTable tfoot th.dt-head-nowrap,table.dataTable tfoot td.dt-head-nowrap { |
| 240 |
white-space: nowrap |
| 241 |
} |
| 242 |
|
| 243 |
table.dataTable tbody th.dt-body-left,table.dataTable tbody td.dt-body-left { |
| 244 |
text-align: left |
| 245 |
} |
| 246 |
|
| 247 |
table.dataTable tbody th.dt-body-center,table.dataTable tbody td.dt-body-center { |
| 248 |
text-align: center |
| 249 |
} |
| 250 |
|
| 251 |
table.dataTable tbody th.dt-body-right,table.dataTable tbody td.dt-body-right { |
| 252 |
text-align: right |
| 253 |
} |
| 254 |
|
| 255 |
table.dataTable tbody th.dt-body-justify,table.dataTable tbody td.dt-body-justify { |
| 256 |
text-align: justify |
| 257 |
} |
| 258 |
|
| 259 |
table.dataTable tbody th.dt-body-nowrap,table.dataTable tbody td.dt-body-nowrap { |
| 260 |
white-space: nowrap |
| 261 |
} |
| 262 |
|
| 263 |
table.dataTable,table.dataTable th,table.dataTable td { |
| 264 |
box-sizing: content-box |
| 265 |
} |
| 266 |
|
| 267 |
.dataTables_wrapper { |
| 268 |
position: relative; |
| 269 |
clear: both; |
| 270 |
*zoom: 1; |
| 271 |
zoom: 1 |
| 272 |
} |
| 273 |
|
| 274 |
.dataTables_wrapper .dataTables_length { |
| 275 |
float: right |
| 276 |
} |
| 277 |
|
| 278 |
.dataTables_wrapper .dataTables_length label { |
| 279 |
line-height: 28px |
| 280 |
} |
| 281 |
|
| 282 |
.dataTables_wrapper .dataTables_length select { |
| 283 |
min-height: 28px !important |
| 284 |
} |
| 285 |
|
| 286 |
.dataTables_wrapper .dataTables_filter { |
| 287 |
float: left; |
| 288 |
text-align: left |
| 289 |
} |
| 290 |
|
| 291 |
.dataTables_wrapper .dataTables_filter input { |
| 292 |
margin-left: 0.5em |
| 293 |
} |
| 294 |
|
| 295 |
.dataTables_wrapper .dataTables_info { |
| 296 |
clear: both; |
| 297 |
float: left; |
| 298 |
padding-top: 0.755em |
| 299 |
} |
| 300 |
|
| 301 |
.dataTables_wrapper .dataTables_paginate { |
| 302 |
float: right; |
| 303 |
text-align: right; |
| 304 |
padding-top: 0.25em |
| 305 |
} |
| 306 |
|
| 307 |
.dataTables_wrapper .dataTables_paginate .paginate_button { |
| 308 |
box-sizing: border-box; |
| 309 |
display: inline-block; |
| 310 |
min-width: 1.5em; |
| 311 |
padding: 3px 8px; |
| 312 |
margin-left: 3px; |
| 313 |
text-align: center; |
| 314 |
text-decoration: none !important; |
| 315 |
cursor: pointer; |
| 316 |
*cursor: hand; |
| 317 |
color: #333333 !important; |
| 318 |
border: 1px solid transparent; |
| 319 |
border-radius: 2px |
| 320 |
} |
| 321 |
|
| 322 |
.dataTables_wrapper .dataTables_paginate .paginate_button.current,.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover { |
| 323 |
color: #A1C7DE !important; |
| 324 |
border: 1px solid #A1C7DE; |
| 325 |
background-color: #FFF; |
| 326 |
border-radius: 3px |
| 327 |
} |
| 328 |
|
| 329 |
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active { |
| 330 |
cursor: default; |
| 331 |
color: #666 !important; |
| 332 |
border: 1px solid transparent; |
| 333 |
background: transparent; |
| 334 |
box-shadow: none |
| 335 |
} |
| 336 |
|
| 337 |
.dataTables_wrapper .dataTables_paginate .paginate_button:hover { |
| 338 |
color: #007cba !important; |
| 339 |
border: 1px solid #007cba; |
| 340 |
background-color: #F7FBFE |
| 341 |
} |
| 342 |
|
| 343 |
.dataTables_wrapper .dataTables_paginate .paginate_button:active { |
| 344 |
outline: none; |
| 345 |
background-color: #007cba; |
| 346 |
color: #fff !important |
| 347 |
} |
| 348 |
|
| 349 |
.dataTables_wrapper .dataTables_paginate .ellipsis { |
| 350 |
padding: 0 1em |
| 351 |
} |
| 352 |
|
| 353 |
.dataTables_wrapper .dataTables_processing { |
| 354 |
position: absolute; |
| 355 |
top: 50%; |
| 356 |
left: 50%; |
| 357 |
width: 100%; |
| 358 |
height: 40px; |
| 359 |
margin-left: -50%; |
| 360 |
margin-top: -25px; |
| 361 |
padding-top: 20px; |
| 362 |
text-align: center; |
| 363 |
font-size: 1.2em; |
| 364 |
background-color: white; |
| 365 |
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))); |
| 366 |
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%); |
| 367 |
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%); |
| 368 |
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%); |
| 369 |
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%); |
| 370 |
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%) |
| 371 |
} |
| 372 |
|
| 373 |
.dataTables_wrapper .dataTables_length,.dataTables_wrapper .dataTables_filter,.dataTables_wrapper .dataTables_info,.dataTables_wrapper .dataTables_processing,.dataTables_wrapper .dataTables_paginate { |
| 374 |
color: #333333 |
| 375 |
} |
| 376 |
|
| 377 |
.dataTables_wrapper .dataTables_scroll { |
| 378 |
clear: both |
| 379 |
} |
| 380 |
|
| 381 |
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody { |
| 382 |
*margin-top: -1px; |
| 383 |
-webkit-overflow-scrolling: touch |
| 384 |
} |
| 385 |
|
| 386 |
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td { |
| 387 |
vertical-align: middle |
| 388 |
} |
| 389 |
|
| 390 |
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td>div.dataTables_sizing { |
| 391 |
height: 0; |
| 392 |
overflow: hidden; |
| 393 |
margin: 0 !important; |
| 394 |
padding: 0 !important |
| 395 |
} |
| 396 |
|
| 397 |
.dataTables_wrapper.no-footer .dataTables_scrollBody { |
| 398 |
border-bottom: 1px solid #111111 |
| 399 |
} |
| 400 |
|
| 401 |
.dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable,.dataTables_wrapper.no-footer div.dataTables_scrollBody>table { |
| 402 |
border-bottom: none |
| 403 |
} |
| 404 |
|
| 405 |
.dataTables_wrapper:after { |
| 406 |
visibility: hidden; |
| 407 |
display: block; |
| 408 |
content: ""; |
| 409 |
clear: both; |
| 410 |
height: 0 |
| 411 |
} |
| 412 |
|
| 413 |
@media screen and (max-width: 767px) { |
| 414 |
.dataTables_wrapper .dataTables_info,.dataTables_wrapper .dataTables_paginate { |
| 415 |
float: none; |
| 416 |
text-align: center |
| 417 |
} |
| 418 |
|
| 419 |
.dataTables_wrapper .dataTables_paginate { |
| 420 |
margin-top: 0.5em |
| 421 |
} |
| 422 |
} |
| 423 |
|
| 424 |
@media screen and (max-width: 640px) { |
| 425 |
.dataTables_wrapper .dataTables_length,.dataTables_wrapper .dataTables_filter { |
| 426 |
display: none |
| 427 |
} |
| 428 |
} |
| 429 |
|