@jupyterlab/nbconvert-css 4.1.3 → 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 +13 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlab/nbconvert-css",
3
- "version": "4.1.3",
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.3",
35
- "@jupyterlab/apputils": "^4.2.3",
36
- "@jupyterlab/cells": "^4.1.3",
37
- "@jupyterlab/codemirror": "^4.1.3",
38
- "@jupyterlab/notebook": "^4.1.3",
39
- "@jupyterlab/outputarea": "^4.1.3",
40
- "@jupyterlab/rendermime": "^4.1.3"
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,6 +2751,10 @@ button.jp-ToolbarButtonComponent .jp-ToolbarButtonComponent-label {
2751
2751
  font-family: var(--jp-ui-font-family);
2752
2752
  }
2753
2753
 
2754
+ .jp-Toolbar .jp-ToolbarButtonComponent {
2755
+ color: var(--jp-ui-font-color1);
2756
+ }
2757
+
2754
2758
  .jp-ToolbarButtonComponent::part(content) {
2755
2759
  display: flex;
2756
2760
  align-items: center;
@@ -5446,17 +5450,23 @@ h6:hover .jp-InternalAnchorLink {
5446
5450
  user-select: none;
5447
5451
  }
5448
5452
 
5449
- .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 */
5450
5456
  outline-width: 2px;
5451
5457
  outline-color: var(--jp-inverse-layout-color1);
5452
5458
  outline-style: solid;
5453
- outline-offset: 1px;
5459
+ outline-offset: -4px;
5454
5460
  }
5455
5461
 
5456
- .jp-DirListing-item.jp-mod-selected .jp-DirListing-itemText:focus {
5462
+ .jp-DirListing-item.jp-mod-selected:focus-within {
5457
5463
  outline-color: var(--jp-layout-color1);
5458
5464
  }
5459
5465
 
5466
+ .jp-DirListing-item > .jp-DirListing-itemText:focus {
5467
+ outline: 0;
5468
+ }
5469
+
5460
5470
  .jp-DirListing-itemModified {
5461
5471
  flex: 0 0 125px;
5462
5472
  text-align: right;