Search code examples
monaco-editorvisual-studio-monaco

Override monaco editor hover widget style to hide "peek problem"


I was looking for a configurable way to hide the "Peek Problem" link but couldn't find.

Now I'm trying to override the hover tooltip widget css but so far no good..

I couldn't even trace it in devtools, where was it rendered??

enter image description here

I initially thought that the right place to look at was here


Solution

  • Found it...

      div.hover-row.status-bar {
        display: none !important;
      }