Skip to content

Commit d15b57d

Browse files
authored
Merge pull request #750 from meeseeksmachine/auto-backport-of-pr-748-on-0.11.x
Backport PR #748 on branch 0.11.x (Theme status widget text)
2 parents d3d9b56 + 551abdf commit d15b57d

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
- name: Install dependencies
5959
run: |
6060
pip install wheel
61-
pip install --upgrade --upgrade-strategy=eager pytest pytest-asyncio "jupyterlab~=2.0"
61+
pip install --upgrade --upgrade-strategy=eager pytest pytest-asyncio "jupyterlab~=1.2"
6262
6363
- name: Test the extension
6464
run: |

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Install dependencies
2323
run: |
2424
python -m pip install --upgrade pip
25-
pip install jupyterlab packaging setuptools twine wheel
25+
pip install jupyterlab~=1.2 packaging setuptools twine wheel
2626
- name: Test version are matching
2727
run: python -c "from release import assertEqualVersion; assertEqualVersion()"
2828
- name: Publish the Python package

src/style/StatusWidget.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
import { style } from 'typestyle';
22

33
export const statusWidgetClass = style({
4+
color: 'var(--jp-ui-font-color1)',
5+
fontFamily: 'var(--jp-ui-font-family)',
6+
fontSize: 'var(--jp-ui-font-size1)',
47
lineHeight: '24px'
58
});

0 commit comments

Comments
 (0)