diff options
author | Ranke Johannes <johannes.ranke@agroscope.admin.ch> | 2025-10-22 15:52:56 +0200 |
---|---|---|
committer | Ranke Johannes <johannes.ranke@agroscope.admin.ch> | 2025-10-22 15:52:56 +0200 |
commit | b9a839f29beb9c10f22ace4b0dd4eee167ae6836 (patch) | |
tree | 5d0f7371e2943af431576bae6892102d42cd7625 /docs/coverage/lib/dt-core-1.13.6/css/jquery.dataTables.extra.css | |
parent | fadda8cd9c85f0adc74f027b7b570c1c166a0516 (diff) |
Add new files for the transition to README.rmd
Diffstat (limited to 'docs/coverage/lib/dt-core-1.13.6/css/jquery.dataTables.extra.css')
-rw-r--r-- | docs/coverage/lib/dt-core-1.13.6/css/jquery.dataTables.extra.css | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/docs/coverage/lib/dt-core-1.13.6/css/jquery.dataTables.extra.css b/docs/coverage/lib/dt-core-1.13.6/css/jquery.dataTables.extra.css new file mode 100644 index 0000000..b2dd141 --- /dev/null +++ b/docs/coverage/lib/dt-core-1.13.6/css/jquery.dataTables.extra.css @@ -0,0 +1,28 @@ +/* Selected rows/cells */ +table.dataTable tr.selected td, table.dataTable td.selected { + background-color: #b0bed9 !important; +} +/* In case of scrollX/Y or FixedHeader */ +.dataTables_scrollBody .dataTables_sizing { + visibility: hidden; +} + +/* The datatables' theme CSS file doesn't define +the color but with white background. It leads to an issue that +when the HTML's body color is set to 'white', the user can't +see the text since the background is white. One case happens in the +RStudio's IDE when inline viewing the DT table inside an Rmd file, +if the IDE theme is set to "Cobalt". + +See https://github.com/rstudio/DT/issues/447 for more info + +This fixes should have little side-effects because all the other elements +of the default theme use the #333 font color. + +TODO: The upstream may use relative colors for both the table background +and the color. It means the table can display well without this patch +then. At that time, we need to remove the below CSS attributes. +*/ +div.datatables { + color: #333; +} |