illixion / vscode-vibrancy-continued

Enable Acrylic/Glass effect for your VS Code.
MIT License
516 stars 27 forks source link

Support for .ipynb #79

Closed okayama-daiki closed 1 year ago

okayama-daiki commented 1 year ago

Overview

Fixed an issue raised in #62 where the background was not transparent in .ipynb files. (left: original, right: fixed)

image image

Fixes

I directly edited the following css in the /themes directory.

The following css has been added to each file.

.notebookOverlay.notebook-editor,
.cell-statusbar-container,
.margin-view-overlays,
.monaco-list-row:hover:not(.selected):not(.focused) {
  background-color: transparent !important;
}

Detail

The correspondence of the selectors of the changed css is as follows.

Environment

illixion commented 1 year ago

Looks good, thanks for the contribution and the well-written PR!