@jupyterlab/nbconvert-css 3.4.7 → 3.4.8
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 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/nbconvert-css",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.8",
|
|
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.4.
|
|
35
|
-
"@jupyterlab/apputils": "^3.4.
|
|
36
|
-
"@jupyterlab/cells": "^3.4.
|
|
37
|
-
"@jupyterlab/codemirror": "^3.4.
|
|
38
|
-
"@jupyterlab/notebook": "^3.4.
|
|
39
|
-
"@jupyterlab/outputarea": "^3.4.
|
|
40
|
-
"@jupyterlab/rendermime": "^3.4.
|
|
34
|
+
"@jupyterlab/application": "^3.4.8",
|
|
35
|
+
"@jupyterlab/apputils": "^3.4.8",
|
|
36
|
+
"@jupyterlab/cells": "^3.4.8",
|
|
37
|
+
"@jupyterlab/codemirror": "^3.4.8",
|
|
38
|
+
"@jupyterlab/notebook": "^3.4.8",
|
|
39
|
+
"@jupyterlab/outputarea": "^3.4.8",
|
|
40
|
+
"@jupyterlab/rendermime": "^3.4.8"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"css-loader": "^5.0.1",
|
package/style/index.css
CHANGED
|
@@ -10066,7 +10066,7 @@ span.bp3-popover-target{
|
|
|
10066
10066
|
| Distributed under the terms of the Modified BSD License.
|
|
10067
10067
|
|----------------------------------------------------------------------------*/
|
|
10068
10068
|
|
|
10069
|
-
.jp-icon-hoverShow:not(:hover)
|
|
10069
|
+
.jp-icon-hoverShow:not(:hover) .jp-icon-hoverShow-content {
|
|
10070
10070
|
display: none !important;
|
|
10071
10071
|
}
|
|
10072
10072
|
|
|
@@ -12323,7 +12323,10 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
12323
12323
|
opacity: 0;
|
|
12324
12324
|
}
|
|
12325
12325
|
|
|
12326
|
-
|
|
12326
|
+
/* Use `div[style]` as more specific selector on 3.4.x to reduce the impact of
|
|
12327
|
+
* Chromium style invalidation strategy on performance when many divs are present.
|
|
12328
|
+
*/
|
|
12329
|
+
.jp-CodeMirrorEditor .remote-caret:hover > div[style] {
|
|
12327
12330
|
opacity: 1;
|
|
12328
12331
|
transition-delay: 0s;
|
|
12329
12332
|
}
|