liron_hazan
liron_hazan

Reputation: 1546

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

Upvotes: 3

Views: 1673

Answers (1)

liron_hazan
liron_hazan

Reputation: 1546

Found it...

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

Upvotes: 4

Related Questions