@jupyterlab/nbconvert-css 4.5.1 → 4.5.3
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 +19 -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.3",
|
|
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.3",
|
|
35
|
+
"@jupyterlab/apputils": "^4.6.3",
|
|
36
|
+
"@jupyterlab/cells": "^4.5.3",
|
|
37
|
+
"@jupyterlab/codemirror": "^4.5.3",
|
|
38
|
+
"@jupyterlab/notebook": "^4.5.3",
|
|
39
|
+
"@jupyterlab/outputarea": "^4.5.3",
|
|
40
|
+
"@jupyterlab/rendermime": "^4.5.3"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"css-loader": "^6.7.1",
|
package/style/index.css
CHANGED
|
@@ -357,6 +357,8 @@
|
|
|
357
357
|
.lm-Menu {
|
|
358
358
|
z-index: 10000;
|
|
359
359
|
position: absolute;
|
|
360
|
+
top: 0;
|
|
361
|
+
left: 0;
|
|
360
362
|
white-space: nowrap;
|
|
361
363
|
overflow-x: hidden;
|
|
362
364
|
overflow-y: auto;
|
|
@@ -7146,6 +7148,23 @@ cell outputs.
|
|
|
7146
7148
|
}
|
|
7147
7149
|
}
|
|
7148
7150
|
|
|
7151
|
+
/* For all the screens smaller than 760px */
|
|
7152
|
+
@media (width <= 760px) {
|
|
7153
|
+
.jp-Notebook-footer {
|
|
7154
|
+
margin-left: calc(
|
|
7155
|
+
var(--jp-cell-collapser-width) + var(--jp-code-padding) +
|
|
7156
|
+
var(--jp-cell-padding) + var(--jp-notebook-padding)
|
|
7157
|
+
);
|
|
7158
|
+
width: calc(
|
|
7159
|
+
100% -
|
|
7160
|
+
(
|
|
7161
|
+
var(--jp-cell-collapser-width) + 2 * var(--jp-cell-padding) + 2 *
|
|
7162
|
+
var(--jp-notebook-padding) + var(--jp-code-padding)
|
|
7163
|
+
)
|
|
7164
|
+
);
|
|
7165
|
+
}
|
|
7166
|
+
}
|
|
7167
|
+
|
|
7149
7168
|
/*-----------------------------------------------------------------------------
|
|
7150
7169
|
| Copyright (c) Jupyter Development Team.
|
|
7151
7170
|
| Distributed under the terms of the Modified BSD License.
|