@jupyterlab/nbconvert-css 4.1.4 → 4.1.6
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 +8 -8
- package/style/index.css +15 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/nbconvert-css",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.6",
|
|
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.
|
|
35
|
-
"@jupyterlab/apputils": "^4.2.
|
|
36
|
-
"@jupyterlab/cells": "^4.1.
|
|
37
|
-
"@jupyterlab/codemirror": "^4.1.
|
|
38
|
-
"@jupyterlab/notebook": "^4.1.
|
|
39
|
-
"@jupyterlab/outputarea": "^4.1.
|
|
40
|
-
"@jupyterlab/rendermime": "^4.1.
|
|
34
|
+
"@jupyterlab/application": "^4.1.6",
|
|
35
|
+
"@jupyterlab/apputils": "^4.2.6",
|
|
36
|
+
"@jupyterlab/cells": "^4.1.6",
|
|
37
|
+
"@jupyterlab/codemirror": "^4.1.6",
|
|
38
|
+
"@jupyterlab/notebook": "^4.1.6",
|
|
39
|
+
"@jupyterlab/outputarea": "^4.1.6",
|
|
40
|
+
"@jupyterlab/rendermime": "^4.1.6"
|
|
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-
|
|
2754
|
+
.jp-Toolbar .jp-ToolbarButtonComponent {
|
|
2755
2755
|
color: var(--jp-ui-font-color1);
|
|
2756
2756
|
}
|
|
2757
2757
|
|
|
@@ -5025,6 +5025,11 @@ h6:hover .jp-InternalAnchorLink {
|
|
|
5025
5025
|
/* Changed to auto to autogrow */
|
|
5026
5026
|
}
|
|
5027
5027
|
|
|
5028
|
+
/* Suppress automatic focus indicator outline */
|
|
5029
|
+
.cm-editor.cm-focused {
|
|
5030
|
+
outline: unset;
|
|
5031
|
+
}
|
|
5032
|
+
|
|
5028
5033
|
.cm-editor pre {
|
|
5029
5034
|
padding: 0 var(--jp-code-padding);
|
|
5030
5035
|
}
|
|
@@ -5450,17 +5455,23 @@ h6:hover .jp-InternalAnchorLink {
|
|
|
5450
5455
|
user-select: none;
|
|
5451
5456
|
}
|
|
5452
5457
|
|
|
5453
|
-
.jp-DirListing-itemText:focus {
|
|
5458
|
+
.jp-DirListing-item:has(.jp-DirListing-itemText:focus-visible) {
|
|
5459
|
+
/* Targeting `.jp-DirListing-itemText` specifically to avoid an extra outline
|
|
5460
|
+
when it gets replaced with `jp-DirListing-editor` when editing the file name */
|
|
5454
5461
|
outline-width: 2px;
|
|
5455
5462
|
outline-color: var(--jp-inverse-layout-color1);
|
|
5456
5463
|
outline-style: solid;
|
|
5457
|
-
outline-offset:
|
|
5464
|
+
outline-offset: -4px;
|
|
5458
5465
|
}
|
|
5459
5466
|
|
|
5460
|
-
.jp-DirListing-item.jp-mod-selected
|
|
5467
|
+
.jp-DirListing-item.jp-mod-selected:focus-within {
|
|
5461
5468
|
outline-color: var(--jp-layout-color1);
|
|
5462
5469
|
}
|
|
5463
5470
|
|
|
5471
|
+
.jp-DirListing-item > .jp-DirListing-itemText:focus {
|
|
5472
|
+
outline: 0;
|
|
5473
|
+
}
|
|
5474
|
+
|
|
5464
5475
|
.jp-DirListing-itemModified {
|
|
5465
5476
|
flex: 0 0 125px;
|
|
5466
5477
|
text-align: right;
|