Change a clickable cursor into a pointer on hint widget (#146449)

Fixes #146305
This commit is contained in:
100paperkite
2022-04-01 02:09:39 +09:00
committed by GitHub
parent c8745c3a9c
commit 93d5dd8b68

View File

@@ -9,6 +9,7 @@
display: flex;
flex-direction: column;
line-height: 1.5em;
cursor: default;
}
.monaco-editor .parameter-hints-widget > .phwrapper {
@@ -56,6 +57,10 @@
white-space: initial;
}
.monaco-editor .parameter-hints-widget .docs .markdown-docs a:hover {
cursor: pointer;
}
.monaco-editor .parameter-hints-widget .docs .markdown-docs code {
font-family: var(--monaco-monospace-font);
}