Skip to content

Commit

Permalink
Merge pull request #151 from kabilar/main
Browse files Browse the repository at this point in the history
Fix readability of tables in dark mode
  • Loading branch information
dimitri-yatsenko authored May 26, 2023
2 parents ad9588f + 100913e commit 47dea95
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 5 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
[Keep a Changelog](https://keepachangelog.com/en/1.0.0/) convention.

## [0.2.10] - 2023-05-22
## [0.2.10] - 2023-05-26

+ Add - Kilosort, NWB, and DANDI citations
+ Fix - CSS to improve readability of tables in dark mode
+ Update - mkdocs.yaml

## [0.2.9] - 2023-05-11
Expand Down
20 changes: 17 additions & 3 deletions docs/src/.overrides/assets/stylesheets/extra.css
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,21 @@ html a[title="YouTube"].md-social__link svg {
/* --md-footer-fg-color: var(--dj-white); */
}

[data-md-color-scheme="slate"] td,
th {
color: var(--dj-black)
table {
border-collapse: collapse;
}

tr {
border-left: 1px solid var(--dj-black);
border-right: 1px solid var(--dj-black);
}

td, th {
border-top: 1px solid var(--dj-black);
border-bottom: 1px solid var(--dj-black);
}

[data-md-color-scheme="slate"] td, th {
background-color: var(--dj-white);
color: var(--dj-black);
}
2 changes: 1 addition & 1 deletion docs/src/citation.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ If your work uses the following resources, please cite the respective manuscript
+ [RRID:SCR_021894](https://scicrunch.org/resolver/SCR_021894)

+ Kilosort
+ [Manuscripts](https://github.com/MouseLand/Kilosort#citation-requirement).
+ [Manuscripts](https://github.com/MouseLand/Kilosort#citation-requirement)

+ NWB
+ [Manuscript](https://www.nwb.org/publications/)
Expand Down

0 comments on commit 47dea95

Please sign in to comment.