Skip to content

Commit ee95f02

Browse files
Merge pull request #1080 from kushalbakshi/master
Fix readability of tutorials in dark mode
2 parents 3320e22 + 696a080 commit ee95f02

File tree

5 files changed

+18
-5
lines changed

5 files changed

+18
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
### Upcoming
44
- Fixed - Fix altering a part table that uses the "master" keyword - PR [#991](https://github.com/datajoint/datajoint-python/pull/991)
5-
5+
- Fixed - `.ipynb` output in tutorials is not visible in dark mode ([#1078](https://github.com/datajoint/datajoint-python/issues/1078)) PR [#1080](https://github.com/datajoint/datajoint-python/pull/1080)
6+
67
### 0.14.0 -- Feb 13, 2023
78
- Added - `json` data type ([#245](https://github.com/datajoint/datajoint-python/issues/245)) PR [#1051](https://github.com/datajoint/datajoint-python/pull/1051)
89
- Fixed - Activating a schema requires all tables to exist even if `create_tables=False` PR [#1058](https://github.com/datajoint/datajoint-python/pull/1058)
@@ -16,7 +17,7 @@
1617
- Deprecated - `table._update()` PR [#1073](https://github.com/datajoint/datajoint-python/pull/1073)
1718
- Deprecated - old-style foreign key syntax PR [#1073](https://github.com/datajoint/datajoint-python/pull/1073)
1819
- Deprecated - `dj.migrate_dj011_external_blob_storage_to_dj012()` PR [#1073](https://github.com/datajoint/datajoint-python/pull/1073)
19-
* Added - Method to set job keys to "ignore" status - PR [#1068](https://github.com/datajoint/datajoint-python/pull/1068)
20+
- Added - Method to set job keys to "ignore" status - PR [#1068](https://github.com/datajoint/datajoint-python/pull/1068)
2021

2122
### 0.13.8 -- Sep 21, 2022
2223
- Added - New documentation structure based on markdown PR [#1052](https://github.com/datajoint/datajoint-python/pull/1052)

LNX-docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ services:
4444
interval: 15s
4545
fakeservices.datajoint.io:
4646
<<: *net
47-
image: datajoint/nginx:v0.2.4
47+
image: datajoint/nginx:v0.2.5
4848
environment:
4949
- ADD_db_TYPE=DATABASE
5050
- ADD_db_ENDPOINT=db:3306

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: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,27 +15,35 @@
1515
html a[title="DataJoint"].md-social__link svg {
1616
color: var(--dj-primary);
1717
}
18+
1819
html a[title="Slack"].md-social__link svg {
1920
color: var(--dj-primary);
2021
}
22+
2123
html a[title="LinkedIn"].md-social__link svg {
2224
color: var(--dj-primary);
2325
}
26+
2427
html a[title="Twitter"].md-social__link svg {
2528
color: var(--dj-primary);
2629
}
30+
2731
html a[title="GitHub"].md-social__link svg {
2832
color: var(--dj-primary);
2933
}
34+
3035
html a[title="DockerHub"].md-social__link svg {
3136
color: var(--dj-primary);
3237
}
38+
3339
html a[title="PyPI"].md-social__link svg {
3440
color: var(--dj-primary);
3541
}
42+
3643
html a[title="StackOverflow"].md-social__link svg {
3744
color: var(--dj-primary);
3845
}
46+
3947
html a[title="YouTube"].md-social__link svg {
4048
color: var(--dj-primary);
4149
}
@@ -91,3 +99,7 @@ html a[title="YouTube"].md-social__link svg {
9199
/* previous/next text */
92100
/* --md-footer-fg-color: var(--dj-white); */
93101
}
102+
103+
[data-md-color-scheme="slate"] .jupyter-wrapper .Table Td {
104+
color: var(--dj-black)
105+
}

local-docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ services:
4646
interval: 15s
4747
fakeservices.datajoint.io:
4848
<<: *net
49-
image: datajoint/nginx:v0.2.4
49+
image: datajoint/nginx:v0.2.5
5050
environment:
5151
- ADD_db_TYPE=DATABASE
5252
- ADD_db_ENDPOINT=db:3306

0 commit comments

Comments
 (0)