@jupyterlab/nbconvert-css 4.2.0-alpha.2 → 4.2.0-beta.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 +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/nbconvert-css",
|
|
3
|
-
"version": "4.2.0-
|
|
3
|
+
"version": "4.2.0-beta.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": "^4.2.0-
|
|
35
|
-
"@jupyterlab/apputils": "^4.3.0-
|
|
36
|
-
"@jupyterlab/cells": "^4.2.0-
|
|
37
|
-
"@jupyterlab/codemirror": "^4.2.0-
|
|
38
|
-
"@jupyterlab/notebook": "^4.2.0-
|
|
39
|
-
"@jupyterlab/outputarea": "^4.2.0-
|
|
40
|
-
"@jupyterlab/rendermime": "^4.2.0-
|
|
34
|
+
"@jupyterlab/application": "^4.2.0-beta.0",
|
|
35
|
+
"@jupyterlab/apputils": "^4.3.0-beta.0",
|
|
36
|
+
"@jupyterlab/cells": "^4.2.0-beta.0",
|
|
37
|
+
"@jupyterlab/codemirror": "^4.2.0-beta.0",
|
|
38
|
+
"@jupyterlab/notebook": "^4.2.0-beta.0",
|
|
39
|
+
"@jupyterlab/outputarea": "^4.2.0-beta.0",
|
|
40
|
+
"@jupyterlab/rendermime": "^4.2.0-beta.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"css-loader": "^6.7.1",
|
package/style/index.css
CHANGED
|
@@ -5051,6 +5051,11 @@ button:not(:disabled) > .jp-DocumentSearch-up-down-button:active {
|
|
|
5051
5051
|
/* Changed to auto to autogrow */
|
|
5052
5052
|
}
|
|
5053
5053
|
|
|
5054
|
+
/* Suppress automatic focus indicator outline */
|
|
5055
|
+
.cm-editor.cm-focused {
|
|
5056
|
+
outline: unset;
|
|
5057
|
+
}
|
|
5058
|
+
|
|
5054
5059
|
.cm-editor pre {
|
|
5055
5060
|
padding: 0 var(--jp-code-padding);
|
|
5056
5061
|
}
|