Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed the highlight line (dividing line) of code cell in python file #400

Open
idlesilver opened this issue Mar 30, 2024 · 1 comment
Open

Comments

@idlesilver
Copy link

The problem has be mentioned in #173 (comment) and microsoft/vscode#99425 (comment). The reason is missing two color configuration: interactive.activeCodeBorder and interactive.inactiveCodeBorder. You can fix it by adding the following configuration in the setting file. The selected line highlight can be handled with editor.lineHighlightBorder

    "workbench.colorCustomizations": {
        "[Monokai*]": {
            "editor.lineHighlightBorder": "#c1c0c070",
            "interactive.activeCodeBorder": "#fcfcfad0",
            "interactive.inactiveCodeBorder": "#c1c0c0",
        }
    },

Here is how it looks

image

@Monokai
Copy link
Collaborator

Monokai commented Apr 17, 2024

fixed in 1.3.0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants