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