Skip to content

Commit 47dea95

Browse files
Merge pull request #151 from kabilar/main
Fix readability of tables in dark mode
2 parents ad9588f + 100913e commit 47dea95

File tree

3 files changed

+20
-5
lines changed

3 files changed

+20
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
44
[Keep a Changelog](https://keepachangelog.com/en/1.0.0/) convention.
55

6-
## [0.2.10] - 2023-05-22
6+
## [0.2.10] - 2023-05-26
77

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

1112
## [0.2.9] - 2023-05-11

docs/src/.overrides/assets/stylesheets/extra.css

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,21 @@ html a[title="YouTube"].md-social__link svg {
9292
/* --md-footer-fg-color: var(--dj-white); */
9393
}
9494

95-
[data-md-color-scheme="slate"] td,
96-
th {
97-
color: var(--dj-black)
95+
table {
96+
border-collapse: collapse;
97+
}
98+
99+
tr {
100+
border-left: 1px solid var(--dj-black);
101+
border-right: 1px solid var(--dj-black);
102+
}
103+
104+
td, th {
105+
border-top: 1px solid var(--dj-black);
106+
border-bottom: 1px solid var(--dj-black);
107+
}
108+
109+
[data-md-color-scheme="slate"] td, th {
110+
background-color: var(--dj-white);
111+
color: var(--dj-black);
98112
}

docs/src/citation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ If your work uses the following resources, please cite the respective manuscript
1010
+ [RRID:SCR_021894](https://scicrunch.org/resolver/SCR_021894)
1111

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

1515
+ NWB
1616
+ [Manuscript](https://www.nwb.org/publications/)

0 commit comments

Comments
 (0)