问题描述
如何隐藏所选文件的蓝色底边框,如下图所示,我正在使用Spring Tool Suite 4。
解决方法
没有UI可以更改此设置,您必须编辑Eclipse CSS。
CSS位于Eclipse安装的“ plugins / org.eclipse.ui.themes_xxxx / css”文件夹中(xxxx随Eclipse版本而异)。
对于深色主题,我认为这可能是CTabFolder.active
文件中的e4-dark_tabstyle.css
选择器:
CTabFolder.active {
swt-selected-tab-highlight: #316c9b;
swt-selected-highlight-top: false;
}