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 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-env"] .jp-DirListing-itemIcon svg {
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jupyterlab_vscode_icons_extension",
3
- "version": "1.0.55",
3
+ "version": "1.0.58",
4
4
  "description": "Jupyterlab extension with a shameless rip-off of the vscode-icons into our beloved environment",
5
5
  "keywords": [
6
6
  "jupyter",
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-env"] .jp-DirListing-itemIcon svg {
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