您的位置:首页 > 其它

ubuntu 下 Atom字体大小各种优化

2018-02-13 22:55 711 查看
打开 “Edit”–> “Preferences”

在Settings选项卡下面点击”Open Config Folder”即
.atom
目录

将下面复制到
.atom
文件夹下
style.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)
*/
//顶部tab选项卡字体调节
.tab-bar .tab {
font-size: 12px;
}
//顶部选中时的tab选项卡字体
.tab.active .title {
font-size: 14px;
}

//左边目录列表字体样式
.tree-view {
font-size: 16px;
}

//设置界面字体样式调节
.settings-view .setting-description {
font-size: 12px;
}
atom-pane {
font-size: 14px;
}
//底部字体和窗框的样式
.status-bar  {
font-size: 18px;
height: 30px;
line-height:30px;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: