@jupyterlab/nbconvert-css 4.4.2 → 4.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +8 -8
- package/style/index.css +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/nbconvert-css",
|
|
3
|
-
"version": "4.4.
|
|
3
|
+
"version": "4.4.4",
|
|
4
4
|
"description": "CSS bundle for the JupyterLab nbconvert template",
|
|
5
5
|
"homepage": "https://github.com/jupyterlab/jupyterlab",
|
|
6
6
|
"bugs": {
|
|
@@ -31,13 +31,13 @@
|
|
|
31
31
|
"watch": "webpack --watch"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@jupyterlab/application": "^4.4.
|
|
35
|
-
"@jupyterlab/apputils": "^4.5.
|
|
36
|
-
"@jupyterlab/cells": "^4.4.
|
|
37
|
-
"@jupyterlab/codemirror": "^4.4.
|
|
38
|
-
"@jupyterlab/notebook": "^4.4.
|
|
39
|
-
"@jupyterlab/outputarea": "^4.4.
|
|
40
|
-
"@jupyterlab/rendermime": "^4.4.
|
|
34
|
+
"@jupyterlab/application": "^4.4.4",
|
|
35
|
+
"@jupyterlab/apputils": "^4.5.4",
|
|
36
|
+
"@jupyterlab/cells": "^4.4.4",
|
|
37
|
+
"@jupyterlab/codemirror": "^4.4.4",
|
|
38
|
+
"@jupyterlab/notebook": "^4.4.4",
|
|
39
|
+
"@jupyterlab/outputarea": "^4.4.4",
|
|
40
|
+
"@jupyterlab/rendermime": "^4.4.4"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"css-loader": "^6.7.1",
|
package/style/index.css
CHANGED
|
@@ -4504,6 +4504,11 @@ button.jp-Dialog-close-button {
|
|
|
4504
4504
|
padding-top: var(--jp-code-padding);
|
|
4505
4505
|
}
|
|
4506
4506
|
|
|
4507
|
+
/* fix illegible yellow text with yellow background in exception stacktrace */
|
|
4508
|
+
.jp-RenderedText pre .ansi-yellow-bg.ansi-yellow-fg {
|
|
4509
|
+
color: black;
|
|
4510
|
+
}
|
|
4511
|
+
|
|
4507
4512
|
/*-----------------------------------------------------------------------------
|
|
4508
4513
|
| RenderedLatex
|
|
4509
4514
|
|----------------------------------------------------------------------------*/
|