@jupyterlab/nbconvert-css 3.4.1 → 3.4.4
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 +17 -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.4",
|
|
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.4",
|
|
35
|
+
"@jupyterlab/apputils": "^3.4.4",
|
|
36
|
+
"@jupyterlab/cells": "^3.4.4",
|
|
37
|
+
"@jupyterlab/codemirror": "^3.4.4",
|
|
38
|
+
"@jupyterlab/notebook": "^3.4.4",
|
|
39
|
+
"@jupyterlab/outputarea": "^3.4.4",
|
|
40
|
+
"@jupyterlab/rendermime": "^3.4.4"
|
|
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
|
|
@@ -13726,6 +13736,7 @@ body[data-format='mobile'] .jp-InputPrompt {
|
|
|
13726
13736
|
.jp-collapseHeadingButton {
|
|
13727
13737
|
display: none;
|
|
13728
13738
|
min-height: var(--jp-cell-collapser-min-height);
|
|
13739
|
+
font-size: var(--jp-code-font-size);
|
|
13729
13740
|
position: absolute;
|
|
13730
13741
|
right: 0;
|
|
13731
13742
|
top: 0;
|
|
@@ -13764,32 +13775,32 @@ body[data-format='mobile'] .jp-InputPrompt {
|
|
|
13764
13775
|
Align collapseHeadingButton with cell top header
|
|
13765
13776
|
The font sizes are identical to the ones in packages/rendermime/style/base.css
|
|
13766
13777
|
*/
|
|
13767
|
-
.jp-collapseHeadingButton[data-heading-level='1'] {
|
|
13778
|
+
.jp-mod-rendered .jp-collapseHeadingButton[data-heading-level='1'] {
|
|
13768
13779
|
font-size: var(--jp-content-font-size5);
|
|
13769
13780
|
background-position-y: calc(0.3 * var(--jp-content-font-size5));
|
|
13770
13781
|
}
|
|
13771
13782
|
|
|
13772
|
-
.jp-collapseHeadingButton[data-heading-level='2'] {
|
|
13783
|
+
.jp-mod-rendered .jp-collapseHeadingButton[data-heading-level='2'] {
|
|
13773
13784
|
font-size: var(--jp-content-font-size4);
|
|
13774
13785
|
background-position-y: calc(0.3 * var(--jp-content-font-size4));
|
|
13775
13786
|
}
|
|
13776
13787
|
|
|
13777
|
-
.jp-collapseHeadingButton[data-heading-level='3'] {
|
|
13788
|
+
.jp-mod-rendered .jp-collapseHeadingButton[data-heading-level='3'] {
|
|
13778
13789
|
font-size: var(--jp-content-font-size3);
|
|
13779
13790
|
background-position-y: calc(0.3 * var(--jp-content-font-size3));
|
|
13780
13791
|
}
|
|
13781
13792
|
|
|
13782
|
-
.jp-collapseHeadingButton[data-heading-level='4'] {
|
|
13793
|
+
.jp-mod-rendered .jp-collapseHeadingButton[data-heading-level='4'] {
|
|
13783
13794
|
font-size: var(--jp-content-font-size2);
|
|
13784
13795
|
background-position-y: calc(0.3 * var(--jp-content-font-size2));
|
|
13785
13796
|
}
|
|
13786
13797
|
|
|
13787
|
-
.jp-collapseHeadingButton[data-heading-level='5'] {
|
|
13798
|
+
.jp-mod-rendered .jp-collapseHeadingButton[data-heading-level='5'] {
|
|
13788
13799
|
font-size: var(--jp-content-font-size1);
|
|
13789
13800
|
background-position-y: top;
|
|
13790
13801
|
}
|
|
13791
13802
|
|
|
13792
|
-
.jp-collapseHeadingButton[data-heading-level='6'] {
|
|
13803
|
+
.jp-mod-rendered .jp-collapseHeadingButton[data-heading-level='6'] {
|
|
13793
13804
|
font-size: var(--jp-content-font-size0);
|
|
13794
13805
|
background-position-y: top;
|
|
13795
13806
|
}
|