@jupyterlab/nbconvert-css 3.4.7 → 3.5.0-alpha.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 +19 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/nbconvert-css",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.5.0-alpha.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.
|
|
35
|
-
"@jupyterlab/apputils": "^3.
|
|
36
|
-
"@jupyterlab/cells": "^3.
|
|
37
|
-
"@jupyterlab/codemirror": "^3.
|
|
38
|
-
"@jupyterlab/notebook": "^3.
|
|
39
|
-
"@jupyterlab/outputarea": "^3.
|
|
40
|
-
"@jupyterlab/rendermime": "^3.
|
|
34
|
+
"@jupyterlab/application": "^3.5.0-alpha.0",
|
|
35
|
+
"@jupyterlab/apputils": "^3.5.0-alpha.0",
|
|
36
|
+
"@jupyterlab/cells": "^3.5.0-alpha.0",
|
|
37
|
+
"@jupyterlab/codemirror": "^3.5.0-alpha.0",
|
|
38
|
+
"@jupyterlab/notebook": "^3.5.0-alpha.0",
|
|
39
|
+
"@jupyterlab/outputarea": "^3.5.0-alpha.0",
|
|
40
|
+
"@jupyterlab/rendermime": "^3.5.0-alpha.0"
|
|
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
|
|
|
@@ -10806,12 +10806,26 @@ button.jp-Dialog-close-button {
|
|
|
10806
10806
|
display: flex;
|
|
10807
10807
|
flex-direction: row;
|
|
10808
10808
|
justify-content: flex-end;
|
|
10809
|
+
align-items: center;
|
|
10809
10810
|
flex: 0 0 auto;
|
|
10810
10811
|
margin-left: -12px;
|
|
10811
10812
|
margin-right: -12px;
|
|
10812
10813
|
padding: 12px;
|
|
10813
10814
|
}
|
|
10814
10815
|
|
|
10816
|
+
.jp-Dialog-checkbox {
|
|
10817
|
+
padding-right: 5px;
|
|
10818
|
+
}
|
|
10819
|
+
|
|
10820
|
+
.jp-Dialog-checkbox > input:focus-visible {
|
|
10821
|
+
outline: 1px solid var(--jp-input-active-border-color);
|
|
10822
|
+
outline-offset: 1px;
|
|
10823
|
+
}
|
|
10824
|
+
|
|
10825
|
+
.jp-Dialog-spacer {
|
|
10826
|
+
flex: 1 1 auto;
|
|
10827
|
+
}
|
|
10828
|
+
|
|
10815
10829
|
.jp-Dialog-title {
|
|
10816
10830
|
overflow: hidden;
|
|
10817
10831
|
white-space: nowrap;
|
|
@@ -12323,7 +12337,10 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
12323
12337
|
opacity: 0;
|
|
12324
12338
|
}
|
|
12325
12339
|
|
|
12326
|
-
|
|
12340
|
+
/* Use `div[style]` as more specific selector on 3.4.x to reduce the impact of
|
|
12341
|
+
* Chromium style invalidation strategy on performance when many divs are present.
|
|
12342
|
+
*/
|
|
12343
|
+
.jp-CodeMirrorEditor .remote-caret:hover > div[style] {
|
|
12327
12344
|
opacity: 1;
|
|
12328
12345
|
transition-delay: 0s;
|
|
12329
12346
|
}
|