Skip to content

Commit d5db912

Browse files
committed
Fix readability of tutorials in dark mode
1 parent 4360b17 commit d5db912

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
## Release notes
22

3+
### 0.14.1 -- Feb 21, 2023
4+
- Fixed - .ipynb output in tutorials is not visible in dark mode ([#1078](https://github.com/datajoint/datajoint-python/issues/1078))
5+
36
### 0.14.0 -- Feb 13, 2023
47
- Added - `json` data type ([#245](https://github.com/datajoint/datajoint-python/issues/245)) PR [#1051](https://github.com/datajoint/datajoint-python/pull/1051)
58
- Fixed - Activating a schema requires all tables to exist even if `create_tables=False` PR [#1058](https://github.com/datajoint/datajoint-python/pull/1058)

datajoint/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = "0.14.0"
1+
__version__ = "0.14.1"
22

33
assert len(__version__) <= 10 # The log table limits version to the 10 characters

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,3 +91,7 @@ html a[title="YouTube"].md-social__link svg {
9191
/* previous/next text */
9292
/* --md-footer-fg-color: var(--dj-white); */
9393
}
94+
95+
[data-md-color-scheme="slate"] .jupyter-wrapper .Table td {
96+
color: var(--dj-primary);
97+
}

0 commit comments

Comments
 (0)