jupyterlab_vscode_icons_extension 1.0.52 → 1.0.55

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
@@ -446,17 +446,18 @@ const plugin = {
446
446
  background-position: center;
447
447
  }
448
448
  `;
449
- // Add CSS to make JavaScript icons less bright
449
+ // Add CSS to make JavaScript and .env icons less bright
450
450
  style.textContent += `
451
- /* Reduce brightness of JavaScript icons */
451
+ /* Reduce brightness of JavaScript and .env icons */
452
452
  .jp-DirListing-item[data-file-type*="js"] .jp-DirListing-itemIcon svg,
453
- .jp-DirListing-item[data-file-type="vscode-file-type-js-official"] .jp-DirListing-itemIcon svg {
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
455
  filter: brightness(0.85) saturate(0.85);
455
456
  }
456
457
 
457
- /* Color shell script icons - orange for Linux shells (.sh, .bash, .zsh) with inverted colors */
458
+ /* Color shell script icons - JupyterLab orange for Linux shells (.sh, .bash, .zsh) */
458
459
  .jp-DirListing-item[data-shell-type="linux"] .jp-DirListing-itemIcon svg {
459
- filter: invert(1) hue-rotate(30deg) saturate(1.2) brightness(1.4);
460
+ filter: brightness(0) saturate(100%) invert(58%) sepia(76%) saturate(3113%) hue-rotate(1deg) brightness(101%) contrast(101%);
460
461
  }
461
462
 
462
463
  /* Color shell script icons - pale blue for Windows shells (.bat, .cmd) */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jupyterlab_vscode_icons_extension",
3
- "version": "1.0.52",
3
+ "version": "1.0.55",
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
@@ -494,17 +494,18 @@ const plugin: JupyterFrontEndPlugin<void> = {
494
494
  }
495
495
  `;
496
496
 
497
- // Add CSS to make JavaScript icons less bright
497
+ // Add CSS to make JavaScript and .env icons less bright
498
498
  style.textContent += `
499
- /* Reduce brightness of JavaScript icons */
499
+ /* Reduce brightness of JavaScript and .env icons */
500
500
  .jp-DirListing-item[data-file-type*="js"] .jp-DirListing-itemIcon svg,
501
- .jp-DirListing-item[data-file-type="vscode-file-type-js-official"] .jp-DirListing-itemIcon svg {
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
503
  filter: brightness(0.85) saturate(0.85);
503
504
  }
504
505
 
505
- /* Color shell script icons - orange for Linux shells (.sh, .bash, .zsh) with inverted colors */
506
+ /* Color shell script icons - JupyterLab orange for Linux shells (.sh, .bash, .zsh) */
506
507
  .jp-DirListing-item[data-shell-type="linux"] .jp-DirListing-itemIcon svg {
507
- filter: invert(1) hue-rotate(30deg) saturate(1.2) brightness(1.4);
508
+ filter: brightness(0) saturate(100%) invert(58%) sepia(76%) saturate(3113%) hue-rotate(1deg) brightness(101%) contrast(101%);
508
509
  }
509
510
 
510
511
  /* Color shell script icons - pale blue for Windows shells (.bat, .cmd) */