@jupyterlab/nbconvert-css 3.2.3 → 3.2.7
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 +41 -25
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/nbconvert-css",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.7",
|
|
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.2.
|
|
35
|
-
"@jupyterlab/apputils": "^3.2.
|
|
36
|
-
"@jupyterlab/cells": "^3.2.
|
|
37
|
-
"@jupyterlab/codemirror": "^3.2.
|
|
38
|
-
"@jupyterlab/notebook": "^3.2.
|
|
39
|
-
"@jupyterlab/outputarea": "^3.2.
|
|
40
|
-
"@jupyterlab/rendermime": "^3.2.
|
|
34
|
+
"@jupyterlab/application": "^3.2.7",
|
|
35
|
+
"@jupyterlab/apputils": "^3.2.7",
|
|
36
|
+
"@jupyterlab/cells": "^3.2.7",
|
|
37
|
+
"@jupyterlab/codemirror": "^3.2.7",
|
|
38
|
+
"@jupyterlab/notebook": "^3.2.7",
|
|
39
|
+
"@jupyterlab/outputarea": "^3.2.7",
|
|
40
|
+
"@jupyterlab/rendermime": "^3.2.7"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"css-loader": "^5.0.1",
|
package/style/index.css
CHANGED
|
@@ -13125,10 +13125,6 @@ h6:hover .jp-InternalAnchorLink {
|
|
|
13125
13125
|
flex-direction: row;
|
|
13126
13126
|
}
|
|
13127
13127
|
|
|
13128
|
-
body[data-format='mobile'] .jp-OutputArea-child {
|
|
13129
|
-
flex-direction: column;
|
|
13130
|
-
}
|
|
13131
|
-
|
|
13132
13128
|
.jp-OutputPrompt {
|
|
13133
13129
|
flex: 0 0 var(--jp-cell-prompt-width);
|
|
13134
13130
|
color: var(--jp-cell-outprompt-font-color);
|
|
@@ -13151,11 +13147,6 @@ body[data-format='mobile'] .jp-OutputArea-child {
|
|
|
13151
13147
|
user-select: none;
|
|
13152
13148
|
}
|
|
13153
13149
|
|
|
13154
|
-
body[data-format='mobile'] .jp-OutputPrompt {
|
|
13155
|
-
flex: 0 0 auto;
|
|
13156
|
-
text-align: left;
|
|
13157
|
-
}
|
|
13158
|
-
|
|
13159
13150
|
.jp-OutputArea-output {
|
|
13160
13151
|
height: auto;
|
|
13161
13152
|
overflow: auto;
|
|
@@ -13170,10 +13161,6 @@ body[data-format='mobile'] .jp-OutputPrompt {
|
|
|
13170
13161
|
flex-shrink: 1;
|
|
13171
13162
|
}
|
|
13172
13163
|
|
|
13173
|
-
body[data-format='mobile'] .jp-OutputArea-child .jp-OutputArea-output {
|
|
13174
|
-
margin-left: var(--jp-notebook-padding);
|
|
13175
|
-
}
|
|
13176
|
-
|
|
13177
13164
|
/**
|
|
13178
13165
|
* Isolated output.
|
|
13179
13166
|
*/
|
|
@@ -13327,6 +13314,22 @@ body.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated:before {
|
|
|
13327
13314
|
height: 100%;
|
|
13328
13315
|
}
|
|
13329
13316
|
|
|
13317
|
+
/*-----------------------------------------------------------------------------
|
|
13318
|
+
| Mobile
|
|
13319
|
+
|----------------------------------------------------------------------------*/
|
|
13320
|
+
@media only screen and (max-width: 760px) {
|
|
13321
|
+
.jp-OutputArea-child .jp-OutputArea-output {
|
|
13322
|
+
margin-left: var(--jp-notebook-padding);
|
|
13323
|
+
}
|
|
13324
|
+
.jp-OutputArea-child {
|
|
13325
|
+
flex-direction: column;
|
|
13326
|
+
}
|
|
13327
|
+
.jp-OutputPrompt {
|
|
13328
|
+
flex: 0 0 auto;
|
|
13329
|
+
text-align: left;
|
|
13330
|
+
}
|
|
13331
|
+
}
|
|
13332
|
+
|
|
13330
13333
|
/*-----------------------------------------------------------------------------
|
|
13331
13334
|
| Copyright (c) Jupyter Development Team.
|
|
13332
13335
|
| Distributed under the terms of the Modified BSD License.
|
|
@@ -13390,10 +13393,6 @@ body.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated:before {
|
|
|
13390
13393
|
overflow: hidden;
|
|
13391
13394
|
}
|
|
13392
13395
|
|
|
13393
|
-
body[data-format='mobile'] .jp-InputArea {
|
|
13394
|
-
flex-direction: column;
|
|
13395
|
-
}
|
|
13396
|
-
|
|
13397
13396
|
.jp-InputArea-editor {
|
|
13398
13397
|
flex: 1 1 auto;
|
|
13399
13398
|
overflow: hidden;
|
|
@@ -13406,10 +13405,6 @@ body[data-format='mobile'] .jp-InputArea {
|
|
|
13406
13405
|
background: var(--jp-cell-editor-background);
|
|
13407
13406
|
}
|
|
13408
13407
|
|
|
13409
|
-
body[data-format='mobile'] .jp-InputArea-editor {
|
|
13410
|
-
margin-left: var(--jp-notebook-padding);
|
|
13411
|
-
}
|
|
13412
|
-
|
|
13413
13408
|
.jp-InputPrompt {
|
|
13414
13409
|
flex: 0 0 var(--jp-cell-prompt-width);
|
|
13415
13410
|
color: var(--jp-cell-inprompt-font-color);
|
|
@@ -13433,9 +13428,22 @@ body[data-format='mobile'] .jp-InputArea-editor {
|
|
|
13433
13428
|
user-select: none;
|
|
13434
13429
|
}
|
|
13435
13430
|
|
|
13436
|
-
|
|
13437
|
-
|
|
13438
|
-
|
|
13431
|
+
/*-----------------------------------------------------------------------------
|
|
13432
|
+
| Mobile
|
|
13433
|
+
|----------------------------------------------------------------------------*/
|
|
13434
|
+
@media only screen and (max-width: 760px) {
|
|
13435
|
+
.jp-InputArea {
|
|
13436
|
+
flex-direction: column;
|
|
13437
|
+
}
|
|
13438
|
+
|
|
13439
|
+
.jp-InputArea-editor {
|
|
13440
|
+
margin-left: var(--jp-notebook-padding);
|
|
13441
|
+
}
|
|
13442
|
+
|
|
13443
|
+
.jp-InputPrompt {
|
|
13444
|
+
flex: 0 0 auto;
|
|
13445
|
+
text-align: left;
|
|
13446
|
+
}
|
|
13439
13447
|
}
|
|
13440
13448
|
|
|
13441
13449
|
/*-----------------------------------------------------------------------------
|
|
@@ -13550,9 +13558,10 @@ body[data-format='mobile'] .jp-InputPrompt {
|
|
|
13550
13558
|
|
|
13551
13559
|
.jp-CodeCell.jp-mod-outputsScrolled .jp-Cell-outputArea {
|
|
13552
13560
|
overflow-y: auto;
|
|
13553
|
-
max-height:
|
|
13561
|
+
max-height: 24em;
|
|
13554
13562
|
box-shadow: inset 0 0 6px 2px rgba(0, 0, 0, 0.3);
|
|
13555
13563
|
margin-left: var(--jp-private-cell-scrolling-output-offset);
|
|
13564
|
+
padding-top: 6px;
|
|
13556
13565
|
}
|
|
13557
13566
|
|
|
13558
13567
|
.jp-CodeCell.jp-mod-outputsScrolled .jp-OutputArea-prompt {
|
|
@@ -13975,6 +13984,13 @@ body[data-format='mobile'] .jp-InputPrompt {
|
|
|
13975
13984
|
--jp-side-by-side-resized-cell: var(--jp-side-by-side-output-size);
|
|
13976
13985
|
}
|
|
13977
13986
|
|
|
13987
|
+
.jp-mod-sideBySide.jp-Notebook .jp-Notebook-cell {
|
|
13988
|
+
margin-top: 3em;
|
|
13989
|
+
margin-bottom: 3em;
|
|
13990
|
+
margin-left: 5%;
|
|
13991
|
+
margin-right: 5%;
|
|
13992
|
+
}
|
|
13993
|
+
|
|
13978
13994
|
.jp-mod-sideBySide.jp-Notebook .jp-CodeCell {
|
|
13979
13995
|
display: grid;
|
|
13980
13996
|
grid-template-columns: minmax(0, 1fr) min-content minmax(
|