@jupyterlab/settingeditor 3.6.0-alpha.4 → 3.6.0-beta.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 +10 -10
- package/style/base.css +6 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/settingeditor",
|
|
3
|
-
"version": "3.6.0-
|
|
3
|
+
"version": "3.6.0-beta.0",
|
|
4
4
|
"description": "The JupyterLab default setting editor interface",
|
|
5
5
|
"homepage": "https://github.com/jupyterlab/jupyterlab",
|
|
6
6
|
"bugs": {
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
"watch": "tsc -b --watch"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@jupyterlab/application": "^3.6.0-
|
|
40
|
-
"@jupyterlab/apputils": "^3.6.0-
|
|
41
|
-
"@jupyterlab/codeeditor": "^3.6.0-
|
|
42
|
-
"@jupyterlab/inspector": "^3.6.0-
|
|
43
|
-
"@jupyterlab/rendermime": "^3.6.0-
|
|
44
|
-
"@jupyterlab/settingregistry": "^3.6.0-
|
|
45
|
-
"@jupyterlab/statedb": "^3.6.0-
|
|
46
|
-
"@jupyterlab/translation": "^3.6.0-
|
|
47
|
-
"@jupyterlab/ui-components": "^3.6.0-
|
|
39
|
+
"@jupyterlab/application": "^3.6.0-beta.0",
|
|
40
|
+
"@jupyterlab/apputils": "^3.6.0-beta.0",
|
|
41
|
+
"@jupyterlab/codeeditor": "^3.6.0-beta.0",
|
|
42
|
+
"@jupyterlab/inspector": "^3.6.0-beta.0",
|
|
43
|
+
"@jupyterlab/rendermime": "^3.6.0-beta.0",
|
|
44
|
+
"@jupyterlab/settingregistry": "^3.6.0-beta.0",
|
|
45
|
+
"@jupyterlab/statedb": "^3.6.0-beta.0",
|
|
46
|
+
"@jupyterlab/translation": "^3.6.0-beta.0",
|
|
47
|
+
"@jupyterlab/ui-components": "^3.6.0-beta.0",
|
|
48
48
|
"@lumino/algorithm": "^1.9.0",
|
|
49
49
|
"@lumino/commands": "^1.19.0",
|
|
50
50
|
"@lumino/coreutils": "^1.11.0",
|
package/style/base.css
CHANGED
|
@@ -225,8 +225,12 @@ ul.jp-PluginList li.jp-mod-selected span.jp-PluginList-icon.jp-FileIcon {
|
|
|
225
225
|
}
|
|
226
226
|
|
|
227
227
|
/** copy of `input.jp-mod-styled:focus` style */
|
|
228
|
-
.jp-SettingsPanel fieldset input:focus
|
|
229
|
-
|
|
228
|
+
.jp-SettingsPanel fieldset input:focus,
|
|
229
|
+
.jp-SettingsPanel fieldset select:focus,
|
|
230
|
+
.jp-SettingsPanel fieldset textarea:focus {
|
|
231
|
+
-moz-outline-radius: unset;
|
|
232
|
+
outline: var(--jp-border-width) solid var(--md-blue-500);
|
|
233
|
+
outline-offset: -1px;
|
|
230
234
|
box-shadow: inset 0 0 4px var(--md-blue-300);
|
|
231
235
|
}
|
|
232
236
|
|