@jupyterlab/application 4.3.0 → 4.3.1
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/menus.css +39 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/application",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.1",
|
|
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": "^4.4.
|
|
46
|
-
"@jupyterlab/coreutils": "^6.3.
|
|
47
|
-
"@jupyterlab/docregistry": "^4.3.
|
|
48
|
-
"@jupyterlab/rendermime": "^4.3.
|
|
49
|
-
"@jupyterlab/rendermime-interfaces": "^3.11.
|
|
50
|
-
"@jupyterlab/services": "^7.3.
|
|
51
|
-
"@jupyterlab/statedb": "^4.3.
|
|
52
|
-
"@jupyterlab/translation": "^4.3.
|
|
53
|
-
"@jupyterlab/ui-components": "^4.3.
|
|
45
|
+
"@jupyterlab/apputils": "^4.4.1",
|
|
46
|
+
"@jupyterlab/coreutils": "^6.3.1",
|
|
47
|
+
"@jupyterlab/docregistry": "^4.3.1",
|
|
48
|
+
"@jupyterlab/rendermime": "^4.3.1",
|
|
49
|
+
"@jupyterlab/rendermime-interfaces": "^3.11.1",
|
|
50
|
+
"@jupyterlab/services": "^7.3.1",
|
|
51
|
+
"@jupyterlab/statedb": "^4.3.1",
|
|
52
|
+
"@jupyterlab/translation": "^4.3.1",
|
|
53
|
+
"@jupyterlab/ui-components": "^4.3.1",
|
|
54
54
|
"@lumino/algorithm": "^2.0.2",
|
|
55
55
|
"@lumino/application": "^2.4.1",
|
|
56
56
|
"@lumino/commands": "^2.3.1",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"@lumino/widgets": "^2.5.0"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
|
-
"@jupyterlab/testing": "^4.3.
|
|
66
|
+
"@jupyterlab/testing": "^4.3.1",
|
|
67
67
|
"@types/jest": "^29.2.0",
|
|
68
68
|
"jest": "^29.2.0",
|
|
69
69
|
"rimraf": "~5.0.5",
|
package/style/menus.css
CHANGED
|
@@ -29,6 +29,44 @@
|
|
|
29
29
|
|
|
30
30
|
.lm-MenuBar-menu.jp-ThemedContainer {
|
|
31
31
|
top: calc(-2 * var(--jp-border-width));
|
|
32
|
+
scrollbar-width: none;
|
|
33
|
+
-ms-overflow-style: none;
|
|
34
|
+
overflow: auto;
|
|
35
|
+
background:
|
|
36
|
+
linear-gradient(var(--jp-layout-color0) 30%, rgba(0, 0, 0, 0)) center top,
|
|
37
|
+
linear-gradient(rgba(0, 0, 0, 0), var(--jp-layout-color0) 70%) center bottom,
|
|
38
|
+
radial-gradient(
|
|
39
|
+
farthest-side at 50% 0,
|
|
40
|
+
color-mix(
|
|
41
|
+
in hsl,
|
|
42
|
+
var(--jp-layout-color0) 50%,
|
|
43
|
+
var(--jp-inverse-layout-color0) 30%
|
|
44
|
+
),
|
|
45
|
+
rgba(0, 0, 0, 0)
|
|
46
|
+
)
|
|
47
|
+
center top,
|
|
48
|
+
radial-gradient(
|
|
49
|
+
farthest-side at 50% 100%,
|
|
50
|
+
color-mix(
|
|
51
|
+
in hsl,
|
|
52
|
+
var(--jp-layout-color0) 50%,
|
|
53
|
+
var(--jp-inverse-layout-color0) 30%
|
|
54
|
+
),
|
|
55
|
+
rgba(0, 0, 0, 0)
|
|
56
|
+
)
|
|
57
|
+
center bottom;
|
|
58
|
+
background-color: var(--jp-layout-color0);
|
|
59
|
+
background-repeat: no-repeat;
|
|
60
|
+
background-size:
|
|
61
|
+
100% 40px,
|
|
62
|
+
100% 40px,
|
|
63
|
+
100% 14px,
|
|
64
|
+
100% 14px;
|
|
65
|
+
background-attachment: local, local, scroll, scroll;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.lm-MenuBar-menu.jp-ThemedContainer::-webkit-scrollbar {
|
|
69
|
+
display: none;
|
|
32
70
|
}
|
|
33
71
|
|
|
34
72
|
.lm-MenuBar-item {
|
|
@@ -157,6 +195,7 @@
|
|
|
157
195
|
position: relative;
|
|
158
196
|
top: 4px;
|
|
159
197
|
border-top: var(--jp-border-width) solid var(--jp-layout-color2);
|
|
198
|
+
mix-blend-mode: multiply;
|
|
160
199
|
}
|
|
161
200
|
|
|
162
201
|
/* gray out icon/caret for disabled menu items */
|