skip to Main Content

This is the blue color border I mean

I tried bunch of settings, but I can’t find how to disable it.

2

Answers


  1. Chosen as BEST ANSWER

    I fixed it using the extension "Customize UI" in VSCode; add the following lines in settings.json:

    "customizeUI.stylesheet": {
        ".monaco-list-row.focused": "outline: 0px !important",
    },
    

  2. I don’t think there is any setting to disable that highlight directly. You will have to use workbench.colorCustomizations in your settings.json. You should review the Lists and trees section of theme colors: lists and trees

    {
      "workbench.colorCustomizations": {
        "list.activeSelectionBackground": "#0000",    // note 4 hex characters
        "list.inactiveSelectionBackground": "#0000"
    }
    

    The fourth hex character in the color setting represents the opacity setting. So setting it to 0 means that setting has no effect.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search