@jupyterlab/application 3.2.0 → 3.2.4
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 +11 -11
- package/style/buttons.css +25 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/application",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.4",
|
|
4
4
|
"description": "JupyterLab - Application",
|
|
5
5
|
"homepage": "https://github.com/jupyterlab/jupyterlab",
|
|
6
6
|
"bugs": {
|
|
@@ -42,15 +42,15 @@
|
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@fortawesome/fontawesome-free": "^5.12.0",
|
|
45
|
-
"@jupyterlab/apputils": "^3.2.
|
|
46
|
-
"@jupyterlab/coreutils": "^5.2.
|
|
47
|
-
"@jupyterlab/docregistry": "^3.2.
|
|
48
|
-
"@jupyterlab/rendermime": "^3.2.
|
|
49
|
-
"@jupyterlab/rendermime-interfaces": "^3.2.
|
|
50
|
-
"@jupyterlab/services": "^6.2.
|
|
51
|
-
"@jupyterlab/statedb": "^3.2.
|
|
52
|
-
"@jupyterlab/translation": "^3.2.
|
|
53
|
-
"@jupyterlab/ui-components": "^3.2.
|
|
45
|
+
"@jupyterlab/apputils": "^3.2.4",
|
|
46
|
+
"@jupyterlab/coreutils": "^5.2.4",
|
|
47
|
+
"@jupyterlab/docregistry": "^3.2.4",
|
|
48
|
+
"@jupyterlab/rendermime": "^3.2.4",
|
|
49
|
+
"@jupyterlab/rendermime-interfaces": "^3.2.4",
|
|
50
|
+
"@jupyterlab/services": "^6.2.4",
|
|
51
|
+
"@jupyterlab/statedb": "^3.2.4",
|
|
52
|
+
"@jupyterlab/translation": "^3.2.4",
|
|
53
|
+
"@jupyterlab/ui-components": "^3.2.4",
|
|
54
54
|
"@lumino/algorithm": "^1.3.3",
|
|
55
55
|
"@lumino/application": "^1.16.0",
|
|
56
56
|
"@lumino/commands": "^1.12.0",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"@lumino/widgets": "^1.19.0"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
|
-
"@jupyterlab/testutils": "^3.2.
|
|
66
|
+
"@jupyterlab/testutils": "^3.2.4",
|
|
67
67
|
"@types/jest": "^26.0.10",
|
|
68
68
|
"jest": "^26.4.2",
|
|
69
69
|
"rimraf": "~3.0.0",
|
package/style/buttons.css
CHANGED
|
@@ -17,55 +17,67 @@ button {
|
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
button:focus-visible {
|
|
20
|
-
border: 1px solid var(--
|
|
20
|
+
border: 1px solid var(--md-blue-900);
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
button.jp-mod-styled.jp-mod-accept {
|
|
24
|
-
background: var(--md-blue-
|
|
24
|
+
background: var(--md-blue-700);
|
|
25
25
|
border: 0;
|
|
26
26
|
color: white;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
button.jp-mod-styled.jp-mod-accept:hover {
|
|
30
|
-
background: var(--md-blue-
|
|
30
|
+
background: var(--md-blue-800);
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
button.jp-mod-styled.jp-mod-accept:active {
|
|
34
|
-
background: var(--md-blue-
|
|
34
|
+
background: var(--md-blue-900);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
button.jp-mod-styled.jp-mod-accept:focus-visible {
|
|
38
|
+
border: 1px solid var(--md-blue-900);
|
|
35
39
|
}
|
|
36
40
|
|
|
37
41
|
button.jp-mod-styled.jp-mod-reject {
|
|
38
|
-
background: var(--md-grey-
|
|
42
|
+
background: var(--md-grey-600);
|
|
39
43
|
border: 0;
|
|
40
44
|
color: white;
|
|
41
45
|
}
|
|
42
46
|
|
|
43
47
|
button.jp-mod-styled.jp-mod-reject:hover {
|
|
44
|
-
background: var(--md-grey-
|
|
48
|
+
background: var(--md-grey-700);
|
|
45
49
|
}
|
|
46
50
|
|
|
47
51
|
button.jp-mod-styled.jp-mod-reject:active {
|
|
48
|
-
background: var(--md-grey-
|
|
52
|
+
background: var(--md-grey-800);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
button.jp-mod-styled.jp-mod-reject:focus-visible {
|
|
56
|
+
border: 1px solid var(--md-grey-800);
|
|
49
57
|
}
|
|
50
58
|
|
|
51
59
|
button.jp-mod-styled.jp-mod-warn {
|
|
52
|
-
background: var(--
|
|
60
|
+
background: var(--md-red-700);
|
|
53
61
|
border: 0;
|
|
54
62
|
color: white;
|
|
55
63
|
}
|
|
56
64
|
|
|
57
65
|
button.jp-mod-styled.jp-mod-warn:hover {
|
|
58
|
-
background: var(--md-red-
|
|
66
|
+
background: var(--md-red-800);
|
|
59
67
|
}
|
|
60
68
|
|
|
61
69
|
button.jp-mod-styled.jp-mod-warn:active {
|
|
62
|
-
background: var(--md-red-
|
|
70
|
+
background: var(--md-red-900);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
button.jp-mod-styled.jp-mod-warn:focus-visible {
|
|
74
|
+
border: 1px solid var(--md-red-900);
|
|
63
75
|
}
|
|
64
76
|
|
|
65
77
|
.jp-Button-flat {
|
|
66
78
|
text-decoration: none;
|
|
67
79
|
padding: var(--jp-flat-button-padding);
|
|
68
|
-
color: var(--
|
|
80
|
+
color: var(--md-grey-600);
|
|
69
81
|
font-weight: 500;
|
|
70
82
|
background-color: transparent;
|
|
71
83
|
height: var(--jp-private-running-shutdown-button-height);
|
|
@@ -75,11 +87,11 @@ button.jp-mod-styled.jp-mod-warn:active {
|
|
|
75
87
|
}
|
|
76
88
|
|
|
77
89
|
.jp-Button-flat:hover {
|
|
78
|
-
background-color:
|
|
90
|
+
background-color: var(--md-grey-700);
|
|
79
91
|
}
|
|
80
92
|
|
|
81
93
|
.jp-Button-flat:focus {
|
|
82
94
|
border: none;
|
|
83
95
|
box-shadow: none;
|
|
84
|
-
background-color:
|
|
96
|
+
background-color: var(--md-grey-800);
|
|
85
97
|
}
|