在Monaco网页编辑器中禁用闪烁的光标。

问题描述 投票:0回答:1

使用 https:/www.hackerearth.compracticealgorithmsgraphsbreadth-first-searchpractice-problemsalgorithmcontainers-of-choclates-1

它使用的是Monaco网页编辑器,我需要帮助设置正确的CSS来禁用闪烁的光标。我在DOM中找不到游标元素。

我正在使用STyleBot chrome扩展来提供自定义CSS。

monaco-editor
1个回答
0
投票

自己想出来的 需要自定义CSS

.monaco-editor .cursors-layer .cursor {
visibility: inherit;
}

这似乎适用于任何摩纳哥的网络编辑器。

© www.soinside.com 2019 - 2024. All rights reserved.