@jupyterlab/nbconvert-css 4.1.4 → 4.1.5

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 +10 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlab/nbconvert-css",
3
- "version": "4.1.4",
3
+ "version": "4.1.5",
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.4",
35
- "@jupyterlab/apputils": "^4.2.4",
36
- "@jupyterlab/cells": "^4.1.4",
37
- "@jupyterlab/codemirror": "^4.1.4",
38
- "@jupyterlab/notebook": "^4.1.4",
39
- "@jupyterlab/outputarea": "^4.1.4",
40
- "@jupyterlab/rendermime": "^4.1.4"
34
+ "@jupyterlab/application": "^4.1.5",
35
+ "@jupyterlab/apputils": "^4.2.5",
36
+ "@jupyterlab/cells": "^4.1.5",
37
+ "@jupyterlab/codemirror": "^4.1.5",
38
+ "@jupyterlab/notebook": "^4.1.5",
39
+ "@jupyterlab/outputarea": "^4.1.5",
40
+ "@jupyterlab/rendermime": "^4.1.5"
41
41
  },
42
42
  "devDependencies": {
43
43
  "css-loader": "^6.7.1",
package/style/index.css CHANGED
@@ -2751,7 +2751,7 @@ button.jp-ToolbarButtonComponent .jp-ToolbarButtonComponent-label {
2751
2751
  font-family: var(--jp-ui-font-family);
2752
2752
  }
2753
2753
 
2754
- jp-button.jp-Toolbar-kernelName {
2754
+ .jp-Toolbar .jp-ToolbarButtonComponent {
2755
2755
  color: var(--jp-ui-font-color1);
2756
2756
  }
2757
2757
 
@@ -5450,17 +5450,23 @@ h6:hover .jp-InternalAnchorLink {
5450
5450
  user-select: none;
5451
5451
  }
5452
5452
 
5453
- .jp-DirListing-itemText:focus {
5453
+ .jp-DirListing-item:has(.jp-DirListing-itemText:focus-visible) {
5454
+ /* Targeting `.jp-DirListing-itemText` specifically to avoid an extra outline
5455
+ when it gets replaced with `jp-DirListing-editor` when editing the file name */
5454
5456
  outline-width: 2px;
5455
5457
  outline-color: var(--jp-inverse-layout-color1);
5456
5458
  outline-style: solid;
5457
- outline-offset: 1px;
5459
+ outline-offset: -4px;
5458
5460
  }
5459
5461
 
5460
- .jp-DirListing-item.jp-mod-selected .jp-DirListing-itemText:focus {
5462
+ .jp-DirListing-item.jp-mod-selected:focus-within {
5461
5463
  outline-color: var(--jp-layout-color1);
5462
5464
  }
5463
5465
 
5466
+ .jp-DirListing-item > .jp-DirListing-itemText:focus {
5467
+ outline: 0;
5468
+ }
5469
+
5464
5470
  .jp-DirListing-itemModified {
5465
5471
  flex: 0 0 125px;
5466
5472
  text-align: right;