我正在为CodeMirror使用Tern插件,它将intellisense特性添加到编辑器(即弹出内联提示标签)。
我想改变提示标签的样式,怎么做呢?
发布于 2014-04-01 19:33:47
Tern将CSS类名附加到提示框中,您可以利用它们进行样式设计,例如:
.CodeMirror-Tern-tooltip:before {
content: url('http://n5.nabble.com/images/smiley/smiley_thinking.gif');
width: 20px;
height: 20px;
}…这将导致以下情况:

https://stackoverflow.com/questions/22793843
复制相似问题