@jupyterlab/nbconvert-css 4.1.0 → 4.1.2
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 +6 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/nbconvert-css",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.2",
|
|
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.1.
|
|
35
|
-
"@jupyterlab/apputils": "^4.2.
|
|
36
|
-
"@jupyterlab/cells": "^4.1.
|
|
37
|
-
"@jupyterlab/codemirror": "^4.1.
|
|
38
|
-
"@jupyterlab/notebook": "^4.1.
|
|
39
|
-
"@jupyterlab/outputarea": "^4.1.
|
|
40
|
-
"@jupyterlab/rendermime": "^4.1.
|
|
34
|
+
"@jupyterlab/application": "^4.1.2",
|
|
35
|
+
"@jupyterlab/apputils": "^4.2.2",
|
|
36
|
+
"@jupyterlab/cells": "^4.1.2",
|
|
37
|
+
"@jupyterlab/codemirror": "^4.1.2",
|
|
38
|
+
"@jupyterlab/notebook": "^4.1.2",
|
|
39
|
+
"@jupyterlab/outputarea": "^4.1.2",
|
|
40
|
+
"@jupyterlab/rendermime": "^4.1.2"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"css-loader": "^6.7.1",
|
package/style/index.css
CHANGED
|
@@ -5050,10 +5050,15 @@ h6:hover .jp-InternalAnchorLink {
|
|
|
5050
5050
|
}
|
|
5051
5051
|
}
|
|
5052
5052
|
|
|
5053
|
-
|
|
5053
|
+
/* stylelint-disable selector-max-class */
|
|
5054
|
+
|
|
5055
|
+
/* We need all this classes for higher specificity to override CodeMirror's rule */
|
|
5056
|
+
.cm-editor.jp-mod-readOnly > .cm-scroller > .cm-cursorLayer .cm-cursor {
|
|
5054
5057
|
display: none;
|
|
5055
5058
|
}
|
|
5056
5059
|
|
|
5060
|
+
/* stylelint-enable selector-max-class */
|
|
5061
|
+
|
|
5057
5062
|
.jp-CollaboratorCursor {
|
|
5058
5063
|
border-left: 5px solid transparent;
|
|
5059
5064
|
border-right: 5px solid transparent;
|