@jupyterlab/running 4.0.0-alpha.14 → 4.0.0-alpha.15
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 +4 -4
- package/style/base.css +10 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/running",
|
|
3
|
-
"version": "4.0.0-alpha.
|
|
3
|
+
"version": "4.0.0-alpha.15",
|
|
4
4
|
"description": "JupyterLab - Running Sessions Panel",
|
|
5
5
|
"homepage": "https://github.com/jupyterlab/jupyterlab",
|
|
6
6
|
"bugs": {
|
|
@@ -36,9 +36,9 @@
|
|
|
36
36
|
"watch": "tsc -b --watch"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@jupyterlab/apputils": "^4.0.0-alpha.
|
|
40
|
-
"@jupyterlab/translation": "^4.0.0-alpha.
|
|
41
|
-
"@jupyterlab/ui-components": "^4.0.0-alpha.
|
|
39
|
+
"@jupyterlab/apputils": "^4.0.0-alpha.15",
|
|
40
|
+
"@jupyterlab/translation": "^4.0.0-alpha.15",
|
|
41
|
+
"@jupyterlab/ui-components": "^4.0.0-alpha.30",
|
|
42
42
|
"@lumino/coreutils": "^2.0.0-alpha.6",
|
|
43
43
|
"@lumino/disposable": "^2.0.0-alpha.6",
|
|
44
44
|
"@lumino/signaling": "^2.0.0-alpha.6",
|
package/style/base.css
CHANGED
|
@@ -98,7 +98,8 @@
|
|
|
98
98
|
background: var(--jp-layout-color3);
|
|
99
99
|
}
|
|
100
100
|
|
|
101
|
-
.jp-RunningSessions-shutdownAll.jp-mod-styled
|
|
101
|
+
.jp-RunningSessions-shutdownAll.jp-mod-styled
|
|
102
|
+
> .jp-ToolbarButtonComponent-label {
|
|
102
103
|
color: var(--jp-warn-color1);
|
|
103
104
|
background-color: transparent;
|
|
104
105
|
border-radius: 2px;
|
|
@@ -107,20 +108,24 @@
|
|
|
107
108
|
text-overflow: ellipsis;
|
|
108
109
|
}
|
|
109
110
|
|
|
110
|
-
.jp-RunningSessions-shutdownAll.jp-mod-styled:hover
|
|
111
|
+
.jp-RunningSessions-shutdownAll.jp-mod-styled:hover
|
|
112
|
+
> .jp-ToolbarButtonComponent-label {
|
|
111
113
|
background-color: var(--jp-layout-color2);
|
|
112
114
|
}
|
|
113
115
|
|
|
114
|
-
.jp-RunningSessions-shutdownAll.jp-mod-styled:focus
|
|
116
|
+
.jp-RunningSessions-shutdownAll.jp-mod-styled:focus
|
|
117
|
+
> .jp-ToolbarButtonComponent-label {
|
|
115
118
|
border: none;
|
|
116
119
|
box-shadow: none;
|
|
117
120
|
background-color: var(--jp-layout-color2);
|
|
118
121
|
}
|
|
119
122
|
|
|
120
|
-
.jp-RunningSessions-shutdownAll.jp-mod-styled.jp-mod-disabled
|
|
123
|
+
.jp-RunningSessions-shutdownAll.jp-mod-styled.jp-mod-disabled
|
|
124
|
+
> .jp-ToolbarButtonComponent-label {
|
|
121
125
|
color: var(--jp-ui-font-color2);
|
|
122
126
|
}
|
|
123
127
|
|
|
124
|
-
.jp-RunningSessions-shutdownAll.jp-mod-styled.jp-mod-disabled:hover
|
|
128
|
+
.jp-RunningSessions-shutdownAll.jp-mod-styled.jp-mod-disabled:hover
|
|
129
|
+
> .jp-ToolbarButtonComponent-label {
|
|
125
130
|
background: none;
|
|
126
131
|
}
|