You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

datatables-crosstalk.css 699B

4 jaren geleden
1234567891011121314151617181920212223
  1. .dt-crosstalk-fade {
  2. opacity: 0.2;
  3. }
  4. html body div.DTS div.dataTables_scrollBody {
  5. background: none;
  6. }
  7. /*
  8. Fix https://github.com/rstudio/DT/issues/563
  9. If the `table.display` is set to "block" (e.g., pkgdown), the browser will display
  10. datatable objects strangely. The search panel and the page buttons will still be
  11. in full-width but the table body will be "compact" and shorter.
  12. In therory, having this attributes will affect `dom="t"`
  13. with `display: block` users. But in reality, there should be no one.
  14. We may remove the below lines in the future if the upstream agree to have this there.
  15. See https://github.com/DataTables/DataTablesSrc/issues/160
  16. */
  17. table.dataTable {
  18. display: table;
  19. }