英文:
Spring Tool Suite: How to hide blue color bottom border of selected file
问题
如何隐藏选定文件的蓝色底部边框,如下图所示,我正在使用Spring Tool Suite 4。
英文:
How to hide blue color bottom border of selected file, as shown in the below image, I am using Spring Tool Suite 4.
答案1
得分: 1
这个没有用户界面来更改,你将不得不编辑Eclipse CSS。
CSS文件位于你的Eclipse安装目录中的 "plugins/org.eclipse.ui.themes_xxxx/css" 文件夹中(xxxx 根据你的 Eclipse 版本而变化)。
对于深色主题,我认为在 "e4-dark_tabstyle.css" 文件中,可能是 CTabFolder.active
选择器:
CTabFolder.active {
swt-selected-tab-highlight: #316c9b;
swt-selected-highlight-top: false;
}
英文:
There is no UI to change this, you will have to edit the Eclipse CSS.
The CSS is in the "plugins/org.eclipse.ui.themes_xxxx/css" folder in your Eclipse installation (xxxx varies depending on your Eclipse release).
For the dark theme I think this is probably the CTabFolder.active
selector in the e4-dark_tabstyle.css
file:
CTabFolder.active {
swt-selected-tab-highlight: #316c9b;
swt-selected-highlight-top: false;
}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论