@jupyterlab/nbconvert-css 4.5.1 → 4.5.2
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 +17 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/nbconvert-css",
|
|
3
|
-
"version": "4.5.
|
|
3
|
+
"version": "4.5.2",
|
|
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.5.
|
|
35
|
-
"@jupyterlab/apputils": "^4.6.
|
|
36
|
-
"@jupyterlab/cells": "^4.5.
|
|
37
|
-
"@jupyterlab/codemirror": "^4.5.
|
|
38
|
-
"@jupyterlab/notebook": "^4.5.
|
|
39
|
-
"@jupyterlab/outputarea": "^4.5.
|
|
40
|
-
"@jupyterlab/rendermime": "^4.5.
|
|
34
|
+
"@jupyterlab/application": "^4.5.2",
|
|
35
|
+
"@jupyterlab/apputils": "^4.6.2",
|
|
36
|
+
"@jupyterlab/cells": "^4.5.2",
|
|
37
|
+
"@jupyterlab/codemirror": "^4.5.2",
|
|
38
|
+
"@jupyterlab/notebook": "^4.5.2",
|
|
39
|
+
"@jupyterlab/outputarea": "^4.5.2",
|
|
40
|
+
"@jupyterlab/rendermime": "^4.5.2"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"css-loader": "^6.7.1",
|
package/style/index.css
CHANGED
|
@@ -7146,6 +7146,23 @@ cell outputs.
|
|
|
7146
7146
|
}
|
|
7147
7147
|
}
|
|
7148
7148
|
|
|
7149
|
+
/* For all the screens smaller than 760px */
|
|
7150
|
+
@media (width <= 760px) {
|
|
7151
|
+
.jp-Notebook-footer {
|
|
7152
|
+
margin-left: calc(
|
|
7153
|
+
var(--jp-cell-collapser-width) + var(--jp-code-padding) +
|
|
7154
|
+
var(--jp-cell-padding) + var(--jp-notebook-padding)
|
|
7155
|
+
);
|
|
7156
|
+
width: calc(
|
|
7157
|
+
100% -
|
|
7158
|
+
(
|
|
7159
|
+
var(--jp-cell-collapser-width) + 2 * var(--jp-cell-padding) + 2 *
|
|
7160
|
+
var(--jp-notebook-padding) + var(--jp-code-padding)
|
|
7161
|
+
)
|
|
7162
|
+
);
|
|
7163
|
+
}
|
|
7164
|
+
}
|
|
7165
|
+
|
|
7149
7166
|
/*-----------------------------------------------------------------------------
|
|
7150
7167
|
| Copyright (c) Jupyter Development Team.
|
|
7151
7168
|
| Distributed under the terms of the Modified BSD License.
|