@jupyterlab/nbconvert-css 3.4.2 → 3.4.5
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 +23 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/nbconvert-css",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.5",
|
|
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.4.
|
|
35
|
-
"@jupyterlab/apputils": "^3.4.
|
|
36
|
-
"@jupyterlab/cells": "^3.4.
|
|
37
|
-
"@jupyterlab/codemirror": "^3.4.
|
|
38
|
-
"@jupyterlab/notebook": "^3.4.
|
|
39
|
-
"@jupyterlab/outputarea": "^3.4.
|
|
40
|
-
"@jupyterlab/rendermime": "^3.4.
|
|
34
|
+
"@jupyterlab/application": "^3.4.5",
|
|
35
|
+
"@jupyterlab/apputils": "^3.4.5",
|
|
36
|
+
"@jupyterlab/cells": "^3.4.5",
|
|
37
|
+
"@jupyterlab/codemirror": "^3.4.5",
|
|
38
|
+
"@jupyterlab/notebook": "^3.4.5",
|
|
39
|
+
"@jupyterlab/outputarea": "^3.4.5",
|
|
40
|
+
"@jupyterlab/rendermime": "^3.4.5"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"css-loader": "^5.0.1",
|
package/style/index.css
CHANGED
|
@@ -12070,6 +12070,10 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
12070
12070
|
padding: 0 var(--jp-code-padding);
|
|
12071
12071
|
}
|
|
12072
12072
|
|
|
12073
|
+
.CodeMirror.cm-fat-cursor .cm-overlay.cm-searching {
|
|
12074
|
+
opacity: 0.5;
|
|
12075
|
+
}
|
|
12076
|
+
|
|
12073
12077
|
.jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-dialog {
|
|
12074
12078
|
background-color: var(--jp-layout-color0);
|
|
12075
12079
|
color: var(--jp-content-font-color1);
|
|
@@ -13375,6 +13379,12 @@ body.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated:before {
|
|
|
13375
13379
|
margin: 0;
|
|
13376
13380
|
}
|
|
13377
13381
|
|
|
13382
|
+
.jp-TrimmedOutputs a {
|
|
13383
|
+
margin: 10px;
|
|
13384
|
+
text-decoration: none;
|
|
13385
|
+
cursor: pointer;
|
|
13386
|
+
}
|
|
13387
|
+
|
|
13378
13388
|
/* Hide the gutter in case of
|
|
13379
13389
|
* - nested output areas (e.g. in the case of output widgets)
|
|
13380
13390
|
* - mirrored output areas
|
|
@@ -13383,6 +13393,12 @@ body.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated:before {
|
|
|
13383
13393
|
display: none;
|
|
13384
13394
|
}
|
|
13385
13395
|
|
|
13396
|
+
/* Hide empty lines in the output area, for instance due to cleared widgets */
|
|
13397
|
+
.jp-OutputArea-prompt:empty {
|
|
13398
|
+
padding: 0;
|
|
13399
|
+
border: 0;
|
|
13400
|
+
}
|
|
13401
|
+
|
|
13386
13402
|
/*-----------------------------------------------------------------------------
|
|
13387
13403
|
| executeResult is added to any Output-result for the display of the object
|
|
13388
13404
|
| returned by a cell
|
|
@@ -13726,6 +13742,7 @@ body[data-format='mobile'] .jp-InputPrompt {
|
|
|
13726
13742
|
.jp-collapseHeadingButton {
|
|
13727
13743
|
display: none;
|
|
13728
13744
|
min-height: var(--jp-cell-collapser-min-height);
|
|
13745
|
+
font-size: var(--jp-code-font-size);
|
|
13729
13746
|
position: absolute;
|
|
13730
13747
|
right: 0;
|
|
13731
13748
|
top: 0;
|
|
@@ -13764,32 +13781,32 @@ body[data-format='mobile'] .jp-InputPrompt {
|
|
|
13764
13781
|
Align collapseHeadingButton with cell top header
|
|
13765
13782
|
The font sizes are identical to the ones in packages/rendermime/style/base.css
|
|
13766
13783
|
*/
|
|
13767
|
-
.jp-collapseHeadingButton[data-heading-level='1'] {
|
|
13784
|
+
.jp-mod-rendered .jp-collapseHeadingButton[data-heading-level='1'] {
|
|
13768
13785
|
font-size: var(--jp-content-font-size5);
|
|
13769
13786
|
background-position-y: calc(0.3 * var(--jp-content-font-size5));
|
|
13770
13787
|
}
|
|
13771
13788
|
|
|
13772
|
-
.jp-collapseHeadingButton[data-heading-level='2'] {
|
|
13789
|
+
.jp-mod-rendered .jp-collapseHeadingButton[data-heading-level='2'] {
|
|
13773
13790
|
font-size: var(--jp-content-font-size4);
|
|
13774
13791
|
background-position-y: calc(0.3 * var(--jp-content-font-size4));
|
|
13775
13792
|
}
|
|
13776
13793
|
|
|
13777
|
-
.jp-collapseHeadingButton[data-heading-level='3'] {
|
|
13794
|
+
.jp-mod-rendered .jp-collapseHeadingButton[data-heading-level='3'] {
|
|
13778
13795
|
font-size: var(--jp-content-font-size3);
|
|
13779
13796
|
background-position-y: calc(0.3 * var(--jp-content-font-size3));
|
|
13780
13797
|
}
|
|
13781
13798
|
|
|
13782
|
-
.jp-collapseHeadingButton[data-heading-level='4'] {
|
|
13799
|
+
.jp-mod-rendered .jp-collapseHeadingButton[data-heading-level='4'] {
|
|
13783
13800
|
font-size: var(--jp-content-font-size2);
|
|
13784
13801
|
background-position-y: calc(0.3 * var(--jp-content-font-size2));
|
|
13785
13802
|
}
|
|
13786
13803
|
|
|
13787
|
-
.jp-collapseHeadingButton[data-heading-level='5'] {
|
|
13804
|
+
.jp-mod-rendered .jp-collapseHeadingButton[data-heading-level='5'] {
|
|
13788
13805
|
font-size: var(--jp-content-font-size1);
|
|
13789
13806
|
background-position-y: top;
|
|
13790
13807
|
}
|
|
13791
13808
|
|
|
13792
|
-
.jp-collapseHeadingButton[data-heading-level='6'] {
|
|
13809
|
+
.jp-mod-rendered .jp-collapseHeadingButton[data-heading-level='6'] {
|
|
13793
13810
|
font-size: var(--jp-content-font-size0);
|
|
13794
13811
|
background-position-y: top;
|
|
13795
13812
|
}
|