所以我打开了我的Atom
样式表,其名称为:styles.less
并进行了一些更改,因此我的样式表现在看起来像:
tree-view {
background-color: #101;
}
// style the background and foreground colors on the atom-text-editor-element itself
atom-text-editor {
color: white;
background-color: #101;
}
// To style other content in the text editor's shadow DOM, use the ::shadow expression
atom-text-editor::shadow .cursor {
border-color: red;
}
我试图改变顶部面板的颜色,也许还有其他一些东西。无论如何,我可以找到Atom中元素的class
/ ID
名称,以便我选择风格吗?
答案 0 :(得分:6)
一种方法是打开atom的开发人员工具。
在OSX上 - > View - Developer - Toggle Developer Tools
您可以在哪里检查元素并找到所需内容。
答案 1 :(得分:2)
您可以从菜单中查看StyleGuide>套餐> StyleGuide>显示
或者只需点击,按Ctrl(Command)+ Shift + G, 在那里你会找到所有的类/ ID名称。