@jupyterlab/nbconvert-css 4.0.0-alpha.18 → 4.0.0-alpha.19
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": "4.0.0-alpha.
|
|
3
|
+
"version": "4.0.0-alpha.19",
|
|
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.19",
|
|
35
|
+
"@jupyterlab/apputils": "^4.0.0-alpha.19",
|
|
36
|
+
"@jupyterlab/cells": "^4.0.0-alpha.19",
|
|
37
|
+
"@jupyterlab/codemirror": "^4.0.0-alpha.19",
|
|
38
|
+
"@jupyterlab/notebook": "^4.0.0-alpha.19",
|
|
39
|
+
"@jupyterlab/outputarea": "^4.0.0-alpha.19",
|
|
40
|
+
"@jupyterlab/rendermime": "^4.0.0-alpha.19"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"css-loader": "^6.7.1",
|
package/style/index.css
CHANGED
|
@@ -2044,10 +2044,6 @@ body.lm-mod-override-cursor .jp-IFrame::before {
|
|
|
2044
2044
|
| Distributed under the terms of the Modified BSD License.
|
|
2045
2045
|
|----------------------------------------------------------------------------*/
|
|
2046
2046
|
|
|
2047
|
-
form.rjsf button[type='submit'] {
|
|
2048
|
-
display: none;
|
|
2049
|
-
}
|
|
2050
|
-
|
|
2051
2047
|
.jp-FormGroup-content fieldset {
|
|
2052
2048
|
border: none;
|
|
2053
2049
|
padding: 0;
|
|
@@ -4416,8 +4412,18 @@ h6:hover .jp-InternalAnchorLink {
|
|
|
4416
4412
|
| The full license is in the file LICENSE, distributed with this software.
|
|
4417
4413
|
|----------------------------------------------------------------------------*/
|
|
4418
4414
|
|
|
4419
|
-
|
|
4420
|
-
|
|
4415
|
+
.lm-cursor-backdrop {
|
|
4416
|
+
position: fixed;
|
|
4417
|
+
width: 200px;
|
|
4418
|
+
height: 200px;
|
|
4419
|
+
margin-top: -100px;
|
|
4420
|
+
margin-left: -100px;
|
|
4421
|
+
will-change: transform;
|
|
4422
|
+
z-index: 100;
|
|
4423
|
+
}
|
|
4424
|
+
|
|
4425
|
+
.lm-mod-drag-image {
|
|
4426
|
+
will-change: transform;
|
|
4421
4427
|
}
|
|
4422
4428
|
|
|
4423
4429
|
/*
|
|
@@ -5231,6 +5237,8 @@ body.lm-mod-override-cursor * {
|
|
|
5231
5237
|
flex: 1 0 64px;
|
|
5232
5238
|
outline: none;
|
|
5233
5239
|
border: none;
|
|
5240
|
+
color: var(--jp-ui-font-color1);
|
|
5241
|
+
background-color: var(--jp-layout-color1);
|
|
5234
5242
|
}
|
|
5235
5243
|
|
|
5236
5244
|
.jp-DirListing-item.jp-mod-running .jp-DirListing-itemIcon::before {
|
|
@@ -6070,6 +6078,9 @@ cell outputs.
|
|
|
6070
6078
|
|
|
6071
6079
|
.jp-NotebookPanel-toolbar {
|
|
6072
6080
|
padding: var(--jp-notebook-toolbar-padding);
|
|
6081
|
+
|
|
6082
|
+
/* disable paint containment from lumino 2.0 default strict CSS containment */
|
|
6083
|
+
contain: style size !important;
|
|
6073
6084
|
}
|
|
6074
6085
|
|
|
6075
6086
|
.jp-Toolbar-item.jp-Notebook-toolbarCellType .jp-select-wrapper.jp-mod-focused {
|