@jupyterlab/launcher 3.6.0-alpha.5 → 3.6.0-rc.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 +4 -4
- package/style/base.css +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/launcher",
|
|
3
|
-
"version": "3.6.0-
|
|
3
|
+
"version": "3.6.0-rc.0",
|
|
4
4
|
"description": "JupyterLab - Launcher 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": "^3.6.0-
|
|
40
|
-
"@jupyterlab/translation": "^3.6.0-
|
|
41
|
-
"@jupyterlab/ui-components": "^3.6.0-
|
|
39
|
+
"@jupyterlab/apputils": "^3.6.0-rc.0",
|
|
40
|
+
"@jupyterlab/translation": "^3.6.0-rc.0",
|
|
41
|
+
"@jupyterlab/ui-components": "^3.6.0-rc.0",
|
|
42
42
|
"@lumino/algorithm": "^1.9.0",
|
|
43
43
|
"@lumino/commands": "^1.19.0",
|
|
44
44
|
"@lumino/coreutils": "^1.11.0",
|
package/style/base.css
CHANGED
|
@@ -111,6 +111,8 @@
|
|
|
111
111
|
.jp-LauncherCard:focus:not(:active) {
|
|
112
112
|
border: 1px solid var(--jp-brand-color1);
|
|
113
113
|
box-shadow: var(--jp-elevation-z6);
|
|
114
|
+
outline: unset; /* if outline is not unset, then depending on which browser you use, the
|
|
115
|
+
border change is either hidden behind the outline or visually combined with it */
|
|
114
116
|
}
|
|
115
117
|
|
|
116
118
|
.jp-LauncherCard:hover {
|