@jupyterlab/outputarea 3.2.5 → 3.2.6
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/base.css +16 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/outputarea",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.6",
|
|
4
4
|
"description": "JupyterLab - Notebook Output Area",
|
|
5
5
|
"homepage": "https://github.com/jupyterlab/jupyterlab",
|
|
6
6
|
"bugs": {
|
|
@@ -41,12 +41,12 @@
|
|
|
41
41
|
"watch": "tsc -b --watch"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@jupyterlab/apputils": "^3.2.
|
|
45
|
-
"@jupyterlab/nbformat": "^3.2.
|
|
46
|
-
"@jupyterlab/observables": "^4.2.
|
|
47
|
-
"@jupyterlab/rendermime": "^3.2.
|
|
48
|
-
"@jupyterlab/rendermime-interfaces": "^3.2.
|
|
49
|
-
"@jupyterlab/services": "^6.2.
|
|
44
|
+
"@jupyterlab/apputils": "^3.2.6",
|
|
45
|
+
"@jupyterlab/nbformat": "^3.2.6",
|
|
46
|
+
"@jupyterlab/observables": "^4.2.6",
|
|
47
|
+
"@jupyterlab/rendermime": "^3.2.6",
|
|
48
|
+
"@jupyterlab/rendermime-interfaces": "^3.2.6",
|
|
49
|
+
"@jupyterlab/services": "^6.2.6",
|
|
50
50
|
"@lumino/algorithm": "^1.3.3",
|
|
51
51
|
"@lumino/coreutils": "^1.5.3",
|
|
52
52
|
"@lumino/disposable": "^1.4.3",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"resize-observer-polyfill": "^1.5.1"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@jupyterlab/testutils": "^3.2.
|
|
60
|
+
"@jupyterlab/testutils": "^3.2.6",
|
|
61
61
|
"@types/jest": "^26.0.10",
|
|
62
62
|
"jest": "^26.4.2",
|
|
63
63
|
"rimraf": "~3.0.0",
|
package/style/base.css
CHANGED
|
@@ -24,10 +24,6 @@
|
|
|
24
24
|
flex-direction: row;
|
|
25
25
|
}
|
|
26
26
|
|
|
27
|
-
body[data-format='mobile'] .jp-OutputArea-child {
|
|
28
|
-
flex-direction: column;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
27
|
.jp-OutputPrompt {
|
|
32
28
|
flex: 0 0 var(--jp-cell-prompt-width);
|
|
33
29
|
color: var(--jp-cell-outprompt-font-color);
|
|
@@ -50,11 +46,6 @@ body[data-format='mobile'] .jp-OutputArea-child {
|
|
|
50
46
|
user-select: none;
|
|
51
47
|
}
|
|
52
48
|
|
|
53
|
-
body[data-format='mobile'] .jp-OutputPrompt {
|
|
54
|
-
flex: 0 0 auto;
|
|
55
|
-
text-align: left;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
49
|
.jp-OutputArea-output {
|
|
59
50
|
height: auto;
|
|
60
51
|
overflow: auto;
|
|
@@ -69,10 +60,6 @@ body[data-format='mobile'] .jp-OutputPrompt {
|
|
|
69
60
|
flex-shrink: 1;
|
|
70
61
|
}
|
|
71
62
|
|
|
72
|
-
body[data-format='mobile'] .jp-OutputArea-child .jp-OutputArea-output {
|
|
73
|
-
margin-left: var(--jp-notebook-padding);
|
|
74
|
-
}
|
|
75
|
-
|
|
76
63
|
/**
|
|
77
64
|
* Isolated output.
|
|
78
65
|
*/
|
|
@@ -225,3 +212,19 @@ body.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated:before {
|
|
|
225
212
|
.jp-LinkedOutputView .jp-OutputArea-output:only-child {
|
|
226
213
|
height: 100%;
|
|
227
214
|
}
|
|
215
|
+
|
|
216
|
+
/*-----------------------------------------------------------------------------
|
|
217
|
+
| Mobile
|
|
218
|
+
|----------------------------------------------------------------------------*/
|
|
219
|
+
@media only screen and (max-width: 760px) {
|
|
220
|
+
.jp-OutputArea-child .jp-OutputArea-output {
|
|
221
|
+
margin-left: var(--jp-notebook-padding);
|
|
222
|
+
}
|
|
223
|
+
.jp-OutputArea-child {
|
|
224
|
+
flex-direction: column;
|
|
225
|
+
}
|
|
226
|
+
.jp-OutputPrompt {
|
|
227
|
+
flex: 0 0 auto;
|
|
228
|
+
text-align: left;
|
|
229
|
+
}
|
|
230
|
+
}
|