@jupyterlab/settingeditor 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.
Files changed (2) hide show
  1. package/package.json +10 -10
  2. 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-alpha.5",
3
+ "version": "3.6.0-rc.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-alpha.5",
40
- "@jupyterlab/apputils": "^3.6.0-alpha.5",
41
- "@jupyterlab/codeeditor": "^3.6.0-alpha.5",
42
- "@jupyterlab/inspector": "^3.6.0-alpha.5",
43
- "@jupyterlab/rendermime": "^3.6.0-alpha.5",
44
- "@jupyterlab/settingregistry": "^3.6.0-alpha.5",
45
- "@jupyterlab/statedb": "^3.6.0-alpha.5",
46
- "@jupyterlab/translation": "^3.6.0-alpha.5",
47
- "@jupyterlab/ui-components": "^3.6.0-alpha.5",
39
+ "@jupyterlab/application": "^3.6.0-rc.0",
40
+ "@jupyterlab/apputils": "^3.6.0-rc.0",
41
+ "@jupyterlab/codeeditor": "^3.6.0-rc.0",
42
+ "@jupyterlab/inspector": "^3.6.0-rc.0",
43
+ "@jupyterlab/rendermime": "^3.6.0-rc.0",
44
+ "@jupyterlab/settingregistry": "^3.6.0-rc.0",
45
+ "@jupyterlab/statedb": "^3.6.0-rc.0",
46
+ "@jupyterlab/translation": "^3.6.0-rc.0",
47
+ "@jupyterlab/ui-components": "^3.6.0-rc.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
- border: var(--jp-border-width) solid var(--md-blue-500);
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