@jupyterlab/nbconvert-css 3.4.4 → 3.4.5
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 +6 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/nbconvert-css",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.5",
|
|
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": "^3.4.
|
|
35
|
-
"@jupyterlab/apputils": "^3.4.
|
|
36
|
-
"@jupyterlab/cells": "^3.4.
|
|
37
|
-
"@jupyterlab/codemirror": "^3.4.
|
|
38
|
-
"@jupyterlab/notebook": "^3.4.
|
|
39
|
-
"@jupyterlab/outputarea": "^3.4.
|
|
40
|
-
"@jupyterlab/rendermime": "^3.4.
|
|
34
|
+
"@jupyterlab/application": "^3.4.5",
|
|
35
|
+
"@jupyterlab/apputils": "^3.4.5",
|
|
36
|
+
"@jupyterlab/cells": "^3.4.5",
|
|
37
|
+
"@jupyterlab/codemirror": "^3.4.5",
|
|
38
|
+
"@jupyterlab/notebook": "^3.4.5",
|
|
39
|
+
"@jupyterlab/outputarea": "^3.4.5",
|
|
40
|
+
"@jupyterlab/rendermime": "^3.4.5"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"css-loader": "^5.0.1",
|
package/style/index.css
CHANGED
|
@@ -13393,6 +13393,12 @@ body.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated:before {
|
|
|
13393
13393
|
display: none;
|
|
13394
13394
|
}
|
|
13395
13395
|
|
|
13396
|
+
/* Hide empty lines in the output area, for instance due to cleared widgets */
|
|
13397
|
+
.jp-OutputArea-prompt:empty {
|
|
13398
|
+
padding: 0;
|
|
13399
|
+
border: 0;
|
|
13400
|
+
}
|
|
13401
|
+
|
|
13396
13402
|
/*-----------------------------------------------------------------------------
|
|
13397
13403
|
| executeResult is added to any Output-result for the display of the object
|
|
13398
13404
|
| returned by a cell
|