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

Viewed 871

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

1 Answers

Found it...

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