@jupyterlab/nbconvert-css 4.0.0-alpha.2 → 4.0.0-alpha.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 +27 -21
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/nbconvert-css",
|
|
3
|
-
"version": "4.0.0-alpha.
|
|
3
|
+
"version": "4.0.0-alpha.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.0.0-alpha.
|
|
35
|
-
"@jupyterlab/apputils": "^4.0.0-alpha.
|
|
36
|
-
"@jupyterlab/cells": "^4.0.0-alpha.
|
|
37
|
-
"@jupyterlab/codemirror": "^4.0.0-alpha.
|
|
38
|
-
"@jupyterlab/notebook": "^4.0.0-alpha.
|
|
39
|
-
"@jupyterlab/outputarea": "^4.0.0-alpha.
|
|
40
|
-
"@jupyterlab/rendermime": "^4.0.0-alpha.
|
|
34
|
+
"@jupyterlab/application": "^4.0.0-alpha.3",
|
|
35
|
+
"@jupyterlab/apputils": "^4.0.0-alpha.3",
|
|
36
|
+
"@jupyterlab/cells": "^4.0.0-alpha.3",
|
|
37
|
+
"@jupyterlab/codemirror": "^4.0.0-alpha.3",
|
|
38
|
+
"@jupyterlab/notebook": "^4.0.0-alpha.3",
|
|
39
|
+
"@jupyterlab/outputarea": "^4.0.0-alpha.3",
|
|
40
|
+
"@jupyterlab/rendermime": "^4.0.0-alpha.3"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"css-loader": "^5.0.1",
|
package/style/index.css
CHANGED
|
@@ -4998,11 +4998,6 @@ h6:hover .jp-InternalAnchorLink {
|
|
|
4998
4998
|
user-select: none;
|
|
4999
4999
|
}
|
|
5000
5000
|
|
|
5001
|
-
body[data-format='mobile'] .jp-OutputPrompt {
|
|
5002
|
-
display: table-row;
|
|
5003
|
-
text-align: left;
|
|
5004
|
-
}
|
|
5005
|
-
|
|
5006
5001
|
.jp-OutputArea-output {
|
|
5007
5002
|
display: table-cell;
|
|
5008
5003
|
width: 100%;
|
|
@@ -5014,11 +5009,6 @@ body[data-format='mobile'] .jp-OutputPrompt {
|
|
|
5014
5009
|
-ms-user-select: text;
|
|
5015
5010
|
}
|
|
5016
5011
|
|
|
5017
|
-
body[data-format='mobile'] .jp-OutputArea-child .jp-OutputArea-output {
|
|
5018
|
-
display: table-row;
|
|
5019
|
-
margin-left: var(--jp-notebook-padding);
|
|
5020
|
-
}
|
|
5021
|
-
|
|
5022
5012
|
/**
|
|
5023
5013
|
* Isolated output.
|
|
5024
5014
|
*/
|
|
@@ -5182,6 +5172,20 @@ body.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated:before {
|
|
|
5182
5172
|
}
|
|
5183
5173
|
}
|
|
5184
5174
|
|
|
5175
|
+
/*-----------------------------------------------------------------------------
|
|
5176
|
+
| Mobile
|
|
5177
|
+
|----------------------------------------------------------------------------*/
|
|
5178
|
+
@media only screen and (max-width: 760px) {
|
|
5179
|
+
.jp-OutputPrompt {
|
|
5180
|
+
display: table-row;
|
|
5181
|
+
text-align: left;
|
|
5182
|
+
}
|
|
5183
|
+
.jp-OutputArea-child .jp-OutputArea-output {
|
|
5184
|
+
display: table-row;
|
|
5185
|
+
margin-left: var(--jp-notebook-padding);
|
|
5186
|
+
}
|
|
5187
|
+
}
|
|
5188
|
+
|
|
5185
5189
|
/*-----------------------------------------------------------------------------
|
|
5186
5190
|
| Copyright (c) Jupyter Development Team.
|
|
5187
5191
|
| Distributed under the terms of the Modified BSD License.
|
|
@@ -5267,10 +5271,6 @@ Note: input and output wrappers have "display: block" propery in print mode.
|
|
|
5267
5271
|
vertical-align: top;
|
|
5268
5272
|
}
|
|
5269
5273
|
|
|
5270
|
-
body[data-format='mobile'] .jp-InputArea-editor {
|
|
5271
|
-
display: table-row;
|
|
5272
|
-
}
|
|
5273
|
-
|
|
5274
5274
|
.jp-InputArea-editor {
|
|
5275
5275
|
/* This is the non-active, default styling */
|
|
5276
5276
|
border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);
|
|
@@ -5278,10 +5278,6 @@ body[data-format='mobile'] .jp-InputArea-editor {
|
|
|
5278
5278
|
background: var(--jp-cell-editor-background);
|
|
5279
5279
|
}
|
|
5280
5280
|
|
|
5281
|
-
body[data-format='mobile'] .jp-InputArea-editor {
|
|
5282
|
-
margin-left: var(--jp-notebook-padding);
|
|
5283
|
-
}
|
|
5284
|
-
|
|
5285
5281
|
.jp-InputPrompt {
|
|
5286
5282
|
display: table-cell;
|
|
5287
5283
|
vertical-align: top;
|
|
@@ -5307,9 +5303,19 @@ body[data-format='mobile'] .jp-InputArea-editor {
|
|
|
5307
5303
|
user-select: none;
|
|
5308
5304
|
}
|
|
5309
5305
|
|
|
5310
|
-
|
|
5311
|
-
|
|
5312
|
-
|
|
5306
|
+
/*-----------------------------------------------------------------------------
|
|
5307
|
+
| Mobile
|
|
5308
|
+
|----------------------------------------------------------------------------*/
|
|
5309
|
+
@media only screen and (max-width: 760px) {
|
|
5310
|
+
.jp-InputArea-editor {
|
|
5311
|
+
display: table-row;
|
|
5312
|
+
margin-left: var(--jp-notebook-padding);
|
|
5313
|
+
}
|
|
5314
|
+
|
|
5315
|
+
.jp-InputPrompt {
|
|
5316
|
+
display: table-row;
|
|
5317
|
+
text-align: left;
|
|
5318
|
+
}
|
|
5313
5319
|
}
|
|
5314
5320
|
|
|
5315
5321
|
/*-----------------------------------------------------------------------------
|