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