@jupyterlab/nbconvert-css 4.0.8 → 4.0.10
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 +24 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/nbconvert-css",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.10",
|
|
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.
|
|
35
|
-
"@jupyterlab/apputils": "^4.1.
|
|
36
|
-
"@jupyterlab/cells": "^4.0.
|
|
37
|
-
"@jupyterlab/codemirror": "^4.0.
|
|
38
|
-
"@jupyterlab/notebook": "^4.0.
|
|
39
|
-
"@jupyterlab/outputarea": "^4.0.
|
|
40
|
-
"@jupyterlab/rendermime": "^4.0.
|
|
34
|
+
"@jupyterlab/application": "^4.0.10",
|
|
35
|
+
"@jupyterlab/apputils": "^4.1.10",
|
|
36
|
+
"@jupyterlab/cells": "^4.0.10",
|
|
37
|
+
"@jupyterlab/codemirror": "^4.0.10",
|
|
38
|
+
"@jupyterlab/notebook": "^4.0.10",
|
|
39
|
+
"@jupyterlab/outputarea": "^4.0.10",
|
|
40
|
+
"@jupyterlab/rendermime": "^4.0.10"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"css-loader": "^6.7.1",
|
package/style/index.css
CHANGED
|
@@ -4348,6 +4348,8 @@ h6:hover .jp-InternalAnchorLink {
|
|
|
4348
4348
|
|----------------------------------------------------------------------------*/
|
|
4349
4349
|
|
|
4350
4350
|
.lm-cursor-backdrop {
|
|
4351
|
+
top: 0px;
|
|
4352
|
+
left: 0px;
|
|
4351
4353
|
position: fixed;
|
|
4352
4354
|
width: 200px;
|
|
4353
4355
|
height: 200px;
|
|
@@ -4355,9 +4357,25 @@ h6:hover .jp-InternalAnchorLink {
|
|
|
4355
4357
|
margin-left: -100px;
|
|
4356
4358
|
will-change: transform;
|
|
4357
4359
|
z-index: 100;
|
|
4360
|
+
scrollbar-width: none;
|
|
4361
|
+
-ms-overflow-style: none;
|
|
4362
|
+
overflow: scroll;
|
|
4363
|
+
}
|
|
4364
|
+
|
|
4365
|
+
.lm-cursor-backdrop::after {
|
|
4366
|
+
content: '';
|
|
4367
|
+
height: 1200px;
|
|
4368
|
+
width: 1200px;
|
|
4369
|
+
display: block;
|
|
4370
|
+
}
|
|
4371
|
+
|
|
4372
|
+
.lm-cursor-backdrop::-webkit-scrollbar {
|
|
4373
|
+
display: none;
|
|
4358
4374
|
}
|
|
4359
4375
|
|
|
4360
4376
|
.lm-mod-drag-image {
|
|
4377
|
+
top: 0px;
|
|
4378
|
+
left: 0px;
|
|
4361
4379
|
will-change: transform;
|
|
4362
4380
|
}
|
|
4363
4381
|
|
|
@@ -5525,6 +5543,12 @@ body.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated::before {
|
|
|
5525
5543
|
opacity: 1;
|
|
5526
5544
|
}
|
|
5527
5545
|
|
|
5546
|
+
.jp-OutputArea-stdin-hiding {
|
|
5547
|
+
/* soft-hide the output, preserving focus */
|
|
5548
|
+
opacity: 0;
|
|
5549
|
+
height: 0;
|
|
5550
|
+
}
|
|
5551
|
+
|
|
5528
5552
|
/*-----------------------------------------------------------------------------
|
|
5529
5553
|
| Output Area View
|
|
5530
5554
|
|----------------------------------------------------------------------------*/
|