@jupyterlab/nbconvert-css 3.4.8 → 3.5.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 +14 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/nbconvert-css",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.5.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": "^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-beta.0",
|
|
35
|
+
"@jupyterlab/apputils": "^3.5.0-beta.0",
|
|
36
|
+
"@jupyterlab/cells": "^3.5.0-beta.0",
|
|
37
|
+
"@jupyterlab/codemirror": "^3.5.0-beta.0",
|
|
38
|
+
"@jupyterlab/notebook": "^3.5.0-beta.0",
|
|
39
|
+
"@jupyterlab/outputarea": "^3.5.0-beta.0",
|
|
40
|
+
"@jupyterlab/rendermime": "^3.5.0-beta.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"css-loader": "^5.0.1",
|
package/style/index.css
CHANGED
|
@@ -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;
|