在可编辑代码编辑器的 ace 编辑器中禁用闪烁

disable blinking in ace editor for codility code editor

https://app.codility.com/demo/take-sample-test/

我需要有关禁用闪烁光标的帮助。我应该使用什么习俗 CSS?我正在查看 Chrome -> Inspect 我看到类似 .ace_animate-blinking 的内容。如果我取消选中它似乎有效,但是如何以 CSS 样式 sheet?

对其进行编码

我正在使用 chrome 扩展 'stylebot' 来插入自定义 CSS

你可以使用

.ace_cursor {
    animation: none!important
}