jupyterlab_vscode_icons_extension 1.0.55 → 1.0.58
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/lib/index.js +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
package/lib/index.js
CHANGED
|
@@ -451,7 +451,7 @@ const plugin = {
|
|
|
451
451
|
/* Reduce brightness of JavaScript and .env icons */
|
|
452
452
|
.jp-DirListing-item[data-file-type*="js"] .jp-DirListing-itemIcon svg,
|
|
453
453
|
.jp-DirListing-item[data-file-type="vscode-file-type-js-official"] .jp-DirListing-itemIcon svg,
|
|
454
|
-
.jp-DirListing-item[data-file-type="vscode-file-type-
|
|
454
|
+
.jp-DirListing-item[data-file-type="vscode-file-type-dotenv"] .jp-DirListing-itemIcon svg {
|
|
455
455
|
filter: brightness(0.85) saturate(0.85);
|
|
456
456
|
}
|
|
457
457
|
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -499,7 +499,7 @@ const plugin: JupyterFrontEndPlugin<void> = {
|
|
|
499
499
|
/* Reduce brightness of JavaScript and .env icons */
|
|
500
500
|
.jp-DirListing-item[data-file-type*="js"] .jp-DirListing-itemIcon svg,
|
|
501
501
|
.jp-DirListing-item[data-file-type="vscode-file-type-js-official"] .jp-DirListing-itemIcon svg,
|
|
502
|
-
.jp-DirListing-item[data-file-type="vscode-file-type-
|
|
502
|
+
.jp-DirListing-item[data-file-type="vscode-file-type-dotenv"] .jp-DirListing-itemIcon svg {
|
|
503
503
|
filter: brightness(0.85) saturate(0.85);
|
|
504
504
|
}
|
|
505
505
|
|