@jupyterlab/nbconvert-css 3.6.0-rc.0 → 3.6.0
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 +13 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/nbconvert-css",
|
|
3
|
-
"version": "3.6.0
|
|
3
|
+
"version": "3.6.0",
|
|
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.6.0
|
|
35
|
-
"@jupyterlab/apputils": "^3.6.0
|
|
36
|
-
"@jupyterlab/cells": "^3.6.0
|
|
37
|
-
"@jupyterlab/codemirror": "^3.6.0
|
|
38
|
-
"@jupyterlab/notebook": "^3.6.0
|
|
39
|
-
"@jupyterlab/outputarea": "^3.6.0
|
|
40
|
-
"@jupyterlab/rendermime": "^3.6.0
|
|
34
|
+
"@jupyterlab/application": "^3.6.0",
|
|
35
|
+
"@jupyterlab/apputils": "^3.6.0",
|
|
36
|
+
"@jupyterlab/cells": "^3.6.0",
|
|
37
|
+
"@jupyterlab/codemirror": "^3.6.0",
|
|
38
|
+
"@jupyterlab/notebook": "^3.6.0",
|
|
39
|
+
"@jupyterlab/outputarea": "^3.6.0",
|
|
40
|
+
"@jupyterlab/rendermime": "^3.6.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"css-loader": "^5.0.1",
|
package/style/index.css
CHANGED
|
@@ -10380,6 +10380,13 @@ a:hover {
|
|
|
10380
10380
|
color: unset;
|
|
10381
10381
|
}
|
|
10382
10382
|
|
|
10383
|
+
/* Override Blueprint's _accessibility.scss styles */
|
|
10384
|
+
:focus {
|
|
10385
|
+
outline: unset;
|
|
10386
|
+
outline-offset: unset;
|
|
10387
|
+
-moz-outline-radius: unset;
|
|
10388
|
+
}
|
|
10389
|
+
|
|
10383
10390
|
/* Styles for ui-components */
|
|
10384
10391
|
.jp-Button {
|
|
10385
10392
|
border-radius: var(--jp-border-radius);
|
|
@@ -10979,6 +10986,10 @@ body.lm-mod-override-cursor .jp-IFrame:before {
|
|
|
10979
10986
|
word-wrap: break-word;
|
|
10980
10987
|
}
|
|
10981
10988
|
|
|
10989
|
+
.jp-MainAreaWidget {
|
|
10990
|
+
contain: strict;
|
|
10991
|
+
}
|
|
10992
|
+
|
|
10982
10993
|
/**
|
|
10983
10994
|
* google-material-color v1.2.6
|
|
10984
10995
|
* https://github.com/danlevan/google-material-color
|
|
@@ -13247,6 +13258,8 @@ h6:hover .jp-InternalAnchorLink {
|
|
|
13247
13258
|
flex: 1 0 64px;
|
|
13248
13259
|
outline: none;
|
|
13249
13260
|
border: none;
|
|
13261
|
+
color: var(--jp-ui-font-color1);
|
|
13262
|
+
background-color: var(--jp-layout-color1);
|
|
13250
13263
|
}
|
|
13251
13264
|
|
|
13252
13265
|
.jp-DirListing-item.jp-mod-running .jp-DirListing-itemIcon:before {
|