@jupyterlab/nbconvert-css 4.1.2 → 4.2.0-alpha.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 +8 -8
  2. package/style/index.css +9 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlab/nbconvert-css",
3
- "version": "4.1.2",
3
+ "version": "4.2.0-alpha.0",
4
4
  "description": "CSS bundle for the JupyterLab nbconvert template",
5
5
  "homepage": "https://github.com/jupyterlab/jupyterlab",
6
6
  "bugs": {
@@ -31,13 +31,13 @@
31
31
  "watch": "webpack --watch"
32
32
  },
33
33
  "dependencies": {
34
- "@jupyterlab/application": "^4.1.2",
35
- "@jupyterlab/apputils": "^4.2.2",
36
- "@jupyterlab/cells": "^4.1.2",
37
- "@jupyterlab/codemirror": "^4.1.2",
38
- "@jupyterlab/notebook": "^4.1.2",
39
- "@jupyterlab/outputarea": "^4.1.2",
40
- "@jupyterlab/rendermime": "^4.1.2"
34
+ "@jupyterlab/application": "^4.2.0-alpha.0",
35
+ "@jupyterlab/apputils": "^4.3.0-alpha.0",
36
+ "@jupyterlab/cells": "^4.2.0-alpha.0",
37
+ "@jupyterlab/codemirror": "^4.2.0-alpha.0",
38
+ "@jupyterlab/notebook": "^4.2.0-alpha.0",
39
+ "@jupyterlab/outputarea": "^4.2.0-alpha.0",
40
+ "@jupyterlab/rendermime": "^4.2.0-alpha.0"
41
41
  },
42
42
  "devDependencies": {
43
43
  "css-loader": "^6.7.1",
package/style/index.css CHANGED
@@ -5446,17 +5446,23 @@ h6:hover .jp-InternalAnchorLink {
5446
5446
  user-select: none;
5447
5447
  }
5448
5448
 
5449
- .jp-DirListing-itemText:focus {
5449
+ .jp-DirListing-item:has(.jp-DirListing-itemText:focus-visible) {
5450
+ /* Targeting `.jp-DirListing-itemText` specifically to avoid an extra outline
5451
+ when it gets replaced with `jp-DirListing-editor` when editing the file name */
5450
5452
  outline-width: 2px;
5451
5453
  outline-color: var(--jp-inverse-layout-color1);
5452
5454
  outline-style: solid;
5453
- outline-offset: 1px;
5455
+ outline-offset: -4px;
5454
5456
  }
5455
5457
 
5456
- .jp-DirListing-item.jp-mod-selected .jp-DirListing-itemText:focus {
5458
+ .jp-DirListing-item.jp-mod-selected:focus-within {
5457
5459
  outline-color: var(--jp-layout-color1);
5458
5460
  }
5459
5461
 
5462
+ .jp-DirListing-item > .jp-DirListing-itemText:focus {
5463
+ outline: 0;
5464
+ }
5465
+
5460
5466
  .jp-DirListing-itemModified {
5461
5467
  flex: 0 0 125px;
5462
5468
  text-align: right;