我在Mac Sierra上使用Atom 1.15.0。 我想将鼠标光标从细条更改为更可见的内容,例如块。 我打开了我的样式.less文件并添加了
atom-text-editor .cursor {
transition:opacity 0.5s linear;
}
然后重新启动 Atom,但我的鼠标光标像以前一样出现(一条细线(。 如何更改它?
编辑:包括我的样式.less文件
/*
* Your Stylesheet
*
* This stylesheet is loaded when Atom starts up and is reloaded automatically
* when it is changed and saved.
*
* Add your own CSS or Less to fully customize Atom.
* If you are unfamiliar with Less, you can read more about it here:
* http://lesscss.org
*/
/*
* Examples
* (To see them, uncomment and save)
*/
// style the background color of the tree view
.tree-view {
// background-color: whitesmoke;
}
// style the background and foreground colors on the atom-text-editor-element itself
atom-text-editor {
// color: white;
// background-color: hsl(180, 24%, 12%);
}
// style UI elements inside atom-text-editor
atom-text-editor .cursor {
transition:opacity 0.5s linear;
}
.editor .cursor {
position: absolute;
border: 1px solid;
background-color: rgba(244,100,122,0.6);
}
atom-text-editor .editor-contents--private { cursor: default; }
我会引导你到这个包:
https://atom.io/packages/block-cursor
另外:更改原子编辑器的光标样式
更新:
这些属性应应用于鼠标光标,就像应用于文本光标一样。只要他们被正确引导。
尝试将其添加到样式表中:
atom-text-editor .editor-contents--private {
cursor: default;
position: absolute;
border: 1px solid;
background-color: rgba(244,100,122,0.6);
}
将其插入到您的样式中。
atom-text-editor .editor-contents--private { cursor: default; }
atom-text-editor {
cursor: url(/home/thedude/Pictures/ico/octocat_mini.png), auto;
}
带有章鱼鼠标指针的原子
我可以确认此行允许更改鼠标光标,但仅在编辑器或搜索框中等时。键入光标是末尾 } 后面的紫色东西。