@jupyterlab/nbconvert-css 3.2.0-rc.0 → 3.2.3
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 +24 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/nbconvert-css",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.3",
|
|
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.2.
|
|
35
|
-
"@jupyterlab/apputils": "^3.2.
|
|
36
|
-
"@jupyterlab/cells": "^3.2.
|
|
37
|
-
"@jupyterlab/codemirror": "^3.2.
|
|
38
|
-
"@jupyterlab/notebook": "^3.2.
|
|
39
|
-
"@jupyterlab/outputarea": "^3.2.
|
|
40
|
-
"@jupyterlab/rendermime": "^3.2.
|
|
34
|
+
"@jupyterlab/application": "^3.2.3",
|
|
35
|
+
"@jupyterlab/apputils": "^3.2.3",
|
|
36
|
+
"@jupyterlab/cells": "^3.2.3",
|
|
37
|
+
"@jupyterlab/codemirror": "^3.2.3",
|
|
38
|
+
"@jupyterlab/notebook": "^3.2.3",
|
|
39
|
+
"@jupyterlab/outputarea": "^3.2.3",
|
|
40
|
+
"@jupyterlab/rendermime": "^3.2.3"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"css-loader": "^5.0.1",
|
package/style/index.css
CHANGED
|
@@ -10682,8 +10682,7 @@ select {
|
|
|
10682
10682
|
margin-left: auto;
|
|
10683
10683
|
margin-right: auto;
|
|
10684
10684
|
background: var(--jp-layout-color1);
|
|
10685
|
-
padding: 24px;
|
|
10686
|
-
padding-bottom: 12px;
|
|
10685
|
+
padding: 24px 24px 12px 24px;
|
|
10687
10686
|
min-width: 300px;
|
|
10688
10687
|
min-height: 150px;
|
|
10689
10688
|
max-width: 1000px;
|
|
@@ -10699,6 +10698,10 @@ select {
|
|
|
10699
10698
|
resize: both;
|
|
10700
10699
|
}
|
|
10701
10700
|
|
|
10701
|
+
.jp-Dialog-content.jp-Dialog-content-small {
|
|
10702
|
+
max-width: 500px;
|
|
10703
|
+
}
|
|
10704
|
+
|
|
10702
10705
|
.jp-Dialog-button {
|
|
10703
10706
|
overflow: visible;
|
|
10704
10707
|
}
|
|
@@ -10713,6 +10716,25 @@ button.jp-Dialog-button:focus::-moz-focus-inner {
|
|
|
10713
10716
|
border: 0;
|
|
10714
10717
|
}
|
|
10715
10718
|
|
|
10719
|
+
button.jp-Dialog-button.jp-mod-styled.jp-mod-accept:focus,
|
|
10720
|
+
button.jp-Dialog-button.jp-mod-styled.jp-mod-warn:focus,
|
|
10721
|
+
button.jp-Dialog-button.jp-mod-styled.jp-mod-reject:focus {
|
|
10722
|
+
outline-offset: 4px;
|
|
10723
|
+
-moz-outline-radius: 0px;
|
|
10724
|
+
}
|
|
10725
|
+
|
|
10726
|
+
button.jp-Dialog-button.jp-mod-styled.jp-mod-accept:focus {
|
|
10727
|
+
outline: 1px solid var(--md-blue-700);
|
|
10728
|
+
}
|
|
10729
|
+
|
|
10730
|
+
button.jp-Dialog-button.jp-mod-styled.jp-mod-warn:focus {
|
|
10731
|
+
outline: 1px solid var(--md-red-600);
|
|
10732
|
+
}
|
|
10733
|
+
|
|
10734
|
+
button.jp-Dialog-button.jp-mod-styled.jp-mod-reject:focus {
|
|
10735
|
+
outline: 1px solid var(--md-grey-700);
|
|
10736
|
+
}
|
|
10737
|
+
|
|
10716
10738
|
button.jp-Dialog-close-button {
|
|
10717
10739
|
padding: 0;
|
|
10718
10740
|
height: 100%;
|